Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huanhe4096
/
hello
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d73fe11
hello
/
app.py
huanhe4096
Create app.py
8cc0933
verified
25 days ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}