Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cruvss
/
Fast_api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8ad2ab3
Fast_api
/
app.py
mulasagg
Add application file
c2659b2
4 months ago
raw
Copy download link
history
blame
Safe
117 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/hello"
)
def
hello
():
return
{
"message"
:
"Hello, World!"
}