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:
shyameati
/
transcripts-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cb33b57
transcripts-api
/
run_once.py
shyameati
Auto-update from script
cb33b57
3 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
177 Bytes
import
shutil, os
CACHE_PATH =
"/data/hf_dataset"
if
os.path.exists(CACHE_PATH):
shutil.rmtree(CACHE_PATH)
print
(
"Cache cleared."
)
else
:
print
(
"No cache found."
)