Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dasomaru
/
docker-api
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4d94e75
docker-api
/
utils
/
filename.py
dasomaru
Upload folder using huggingface_hub
06696b5
verified
10 days ago
raw
Copy download link
history
blame
Safe
124 Bytes
# app/utils/filename.py
import
re
def
normalize_filename
(
name
):
return
re.sub(
r'[\\/*?:"<>|]'
,
'_'
, name).strip()