icmr-data0 / pinger.py
Sahil72665's picture
Update pinger.py
90f6c0e verified
Raw
History Blame Contribute Delete
254 Bytes
import time
import requests
URL = "https://Sahil72665-icmr-data0.hf.space/key=sahil"
while True:
try:
requests.get(URL)
print(f"Pinged {URL} successfully!")
except Exception as e:
print(f"Error: {e}")
time.sleep(300)