Spaces:
Running
Running
| 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) |