Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bachephysicdun
/
Backend
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e4d76a0
Backend
/
app.py
bachephysicdun
fix minor bug
121a86c
6 months ago
raw
Copy download link
history
blame
222 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}
if
__name__ ==
"__main__"
:
import
uvicorn
uvicorn.run(
"app:app"
, host=
"localhost"
, reload=
True
, port=
8000
)