icmr-data2 / pinger.py
kzropx's picture
Update pinger.py
4882119 verified
Raw
History Blame Contribute Delete
265 Bytes
import time
import requests
URL = "https://kzropx-icmr-data2.hf.space/search?mobile=9860319038"
while True:
try:
requests.get(URL)
print(f"Pinged {URL} successfully!")
except Exception as e:
print(f"Error: {e}")
time.sleep(300)