stable-diffusion-webui/modules/ngrok.py

18 lines
666 B
Python
Raw Normal View History

2022-10-11 03:40:27 -06:00
from pyngrok import ngrok, conf, exception
2022-10-15 18:24:01 -06:00
def connect(token, port, region):
2022-10-11 03:40:27 -06:00
if token == None:
token = 'None'
2022-10-15 18:24:01 -06:00
config = conf.PyngrokConfig(
auth_token=token, region=region
)
2022-10-11 03:40:27 -06:00
try:
2022-10-15 18:24:01 -06:00
public_url = ngrok.connect(port, pyngrok_config=config).public_url
2022-10-11 03:40:27 -06:00
except exception.PyngrokNgrokError:
print(f'Invalid ngrok authtoken, ngrok connection aborted.\n'
f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken')
else:
print(f'ngrok connected to localhost:{port}! URL: {public_url}\n'
2022-10-11 03:48:27 -06:00
'You can use this link after the launch is complete.')