Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
dmusingu
/
CXR-IMAGE-Classification
like
0
Sleeping
App
Files
Files
Community
2736466
CXR-IMAGE-Classification
/
app.py
dmusingu
Create app.py
2736466
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}