Spaces:
Running
Running
| import time | |
| import requests | |
| # Aapka Hugging Face Space ka direct URL | |
| URL = "https://ankan-dey-my-num-api.hf.space" | |
| while True: | |
| try: | |
| requests.get(URL) | |
| print(f"Pinged {URL} successfully!") | |
| except Exception as e: | |
| print(f"Error: {e}") | |
| time.sleep(300) # 5 minute | |