Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DesiredName
/
test
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7e8d4b2
test
/
app.py
DesiredName
Create app.py
39cc8a5
verified
9 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!"
}