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)