Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
danerlt
/
test_model
like
0
Chinese
Model card
Files
Files and versions
Community
main
test_model
/
app.py
danerlt
Create app.py
aea8082
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}