Spaces:
Running
Running
File size: 322 Bytes
08c6dc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import time
import requests
# Yeh URL woh hai jise aapko ping karna hai
URL = "https://tfqdeadlo-inddataapi.hf.space"
while True:
try:
requests.get(URL)
print(f"Successfully pinged {URL}")
except Exception as e:
print(f"Ping failed: {e}")
time.sleep(300) # 5 minute = 300 seconds
|