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...
e25a1f9
Backend
/
app.py
bachephysicdun
change app:app to main:app
e25a1f9
6 months ago
raw
Copy download link
history
blame
223 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}
if
__name__ ==
"__main__"
:
import
uvicorn
uvicorn.run(
"main:app"
, host=
"localhost"
, reload=
True
, port=
8000
)