Created
July 30, 2024 12:26
-
-
Save tbvinh/6e73fce27ca804f3f2e868eeecac12d6 to your computer and use it in GitHub Desktop.
AI - get ngrOK URL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
def get_ngrok_url(): | |
try: | |
response = requests.get('http://localhost:4040/api/tunnels') | |
tunnels = response.json()['tunnels'] | |
if tunnels: | |
return tunnels[0]['public_url'] | |
else: | |
return None | |
except Exception as e: | |
print(f"Error: {e}") | |
return None | |
print(f"Ngrok URL: {get_ngrok_url()}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment