Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bunpheng
/
foodieproject
like
0
Runtime error
App
Files
Files
Community
4504486
foodieproject
/
app.py
Bunpheng
Add application file
217a1d1
3 months ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}