Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
streetyogi
/
ml
like
0
Sleeping
App
Files
Files
Community
d56ad06
ml
/
main.py
streetyogi
Create main.py
c369404
almost 2 years ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}