Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
manny1313
/
my-ml-api
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
my-ml-api
/
app.py
manny1313
App file
970bc4e
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}