Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sonny4Sonnix
/
Sepsis_Prediction_App_Deployment_with_FastAPI
like
0
Sleeping
App
Files
Files
Community
ba89136
Sepsis_Prediction_App_Deployment_with_FastAPI
/
api.py
Sonny A-Otchie
init
e17e0cc
over 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!"
}