icmr-data / pinger.py
kzropx's picture
Create pinger.py
9bb56c6 verified
Raw
History Blame
239 Bytes
import time
import requests
URL = "https://kzropx-icmr-data.hf.space"
while True:
try:
requests.get(URL)
print(f"Pinged {URL} successfully!")
except Exception as e:
print(f"Error: {e}")
time.sleep(300)