Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Created July 30, 2024 12:26
Show Gist options
  • Save tbvinh/6e73fce27ca804f3f2e868eeecac12d6 to your computer and use it in GitHub Desktop.
Save tbvinh/6e73fce27ca804f3f2e868eeecac12d6 to your computer and use it in GitHub Desktop.
AI - get ngrOK URL
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