Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tjtanaa
/
dockertutorial
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b53d245
dockertutorial
/
main.py
tjtanaa
add simple example main
436e85e
almost 2 years ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}