2023-05-07 17:27:54 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
def ngrok_connect():
|
|
|
|
from pyngrok import ngrok, conf
|
2023-05-17 11:39:00 +08:00
|
|
|
|
2023-05-07 17:27:54 +08:00
|
|
|
conf.set_default(conf.PyngrokConfig(ngrok_path="./ngrok"))
|
|
|
|
ngrok.set_auth_token(os.environ["ngrok_token"])
|
|
|
|
http_tunnel = ngrok.connect(8000)
|
|
|
|
print(http_tunnel.public_url)
|