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