Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Arafath10/fastapi-demo
Arafath10
/
fastapi-demo-v1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
feca41c
fastapi-demo-v1
/
main.py
dotku
Create main.py
feca41c
over 1 year ago
raw
Copy download link
history
blame
Safe
126 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/api/python"
)
def
hello_world
():
return
{
"message"
:
"Hello World"
}