Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Projetweb
/
Ai-prject
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Ai-prject
/
app.py
ikraamkb
Create app.py
4795656
verified
19 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
130 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
home
():
return
{
"message"
:
"Hello, FastAPI on Hugging Face!"
}