Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bbqdennisEX
/
python_flask
like
0
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
34a120d
python_flask
/
app.py
bbqdennisEX
Add application file
34a120d
10 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!"
}