Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
taha454
/
tmp4
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1dc9545
tmp4
/
app.py
LapStore
Add application file
1dc9545
7 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!"
}