decision-helper-bot / test_connection.py
DeMaking's picture
Create test_connection.py
f13638c verified
raw
history blame
176 Bytes
import requests
try:
response = requests.get("https://api.telegram.org")
print(f"Status Code: {response.status_code}")
except Exception as e:
print(f"Error: {e}")