Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tosanoob
/
test_deployment
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
14174fc
test_deployment
/
app.py
tosanoob
Update app.py
99692e4
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}