Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Wauplin
/
huggingface_hub
like
15
Sleeping
App
Files
Files
Community
12
Fetching metadata from the HF Docker repository...
a7fe398
huggingface_hub
/
app.py
Wauplin
HF Staff
Create app.py
a7fe398
over 1 year ago
raw
Copy download link
history
blame
Safe
205 Bytes
import
gradio
as
gr
from
pathlib
import
Path
README_PATH = Path(__file__).parent /
"README.md"
with
gr.Blocks()
as
demo:
gr.Markdown(README_PATH.read_text().split(
"---"
)[-
1
].strip())
demo.launch()