Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
kzropx
/
icmr-data
like
0
Running
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/2
icmr-data
/
pinger.py
kzropx
Create pinger.py
9bb56c6
verified
24 days ago
Raw
Download with hf CLI
Copy download link
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
)