Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Aboge
/
demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6a9a4df
demo
/
app.py
Aboge
Add application file
91978c4
8 months 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!"
}