Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
eleeleai
/
fastapi
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
fastapi
/
app
/
main.py
eleeleai
Create app/main.py
4d16670
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"message"
:
"Hello, World!"
}