Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Ahmed007
/
demo_xray_2
like
0
Sleeping
App
Files
Files
Community
0a9a7a1
demo_xray_2
/
app.py
Ahmed007
Add application file
0a9a7a1
5 months ago
raw
Copy download link
history
blame
Safe
110 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}