Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Queensly
/
FastAPI_in_Docker
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
888a3df
FastAPI_in_Docker
/
main.py
Queensly
Added files
3671cba
over 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}