Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
deepak6593
/
mlAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b04ba1a
mlAPI
/
app.py
deepak6593
adding files
ae79c64
about 2 years ago
raw
Copy download link
history
blame
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/hello"
)
def
hello
():
return
{
"hello"
:
"success"
}