Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
li-nguyen
/
dash-kpi-cards
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
24f95f9
dash-kpi-cards
/
app.py
li-nguyen
Create app.py
24f95f9
verified
8 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}