Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
daniel-de-leon
/
test-docker
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
test-docker
/
main.py
daniel-de-leon
add reqs and app file
5f2848a
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
'/'
)
def
read_root
():
return
{
"Hello"
:
"World!"
}