Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
triple-t
/
live-discussion-gallery
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
c2f31df
live-discussion-gallery
/
app.py
cbensimon
HF staff
Create app.py
c2f31df
about 2 years ago
raw
Copy download link
history
blame
117 Bytes
"""
"""
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World"
}