Spaces:
Running
Running
File size: 310 Bytes
6778650 90fa5ae 6778650 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import time
import requests
# Yahan wahi URL dalein jisme ye file rakhi hai
URL = "https://CodeXDevloper-1-78bapi.hf.space"
while True:
try:
requests.get(URL)
print(f"Pinged {URL} successfully!")
except Exception as e:
print(f"Error: {e}")
time.sleep(300) # 5 minute
|