Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
albertvillanova
/
tmp-mpc
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4b430f2
tmp-mpc
/
app.py
albertvillanova
HF Staff
Create app.py
638ef6e
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
Wrap lines
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}