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