from apscheduler.schedulers.blocking import BlockingScheduler import requests url = "https://geek7-flk.hf.space/" # Your Hugging Face Space URL scheduler = BlockingScheduler() def ping(): try: response = requests.get(url) print(f"Pinged {url}: {response.status_code}") except Exception as e: print(f"Error pinging {url}: {e}") # Schedule the ping function to run every 5 minutes scheduler.add_job(ping, 'interval', minutes=5) try: scheduler.start() except (KeyboardInterrupt, SystemExit): pass