Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MHULO
/
fastAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
fastAPI
/
app.py
MHULO
Update app.py
b153e95
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
113 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/home"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}