Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
mobixconsulting
/
fastapi
like
0
Sleeping
App
Files
Files
Community
46a60d5
fastapi
/
app.py
mobixconsulting
Create app.py
ba8d6b9
verified
9 months ago
raw
Copy download link
history
blame
Safe
106 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/hello"
)
def
hello
():
return
{
"hello"
:
"wordl"
}