Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jonathanjordan21
/
test_api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2ca1bc6
test_api
/
app.py
jonathanjordan21
Create app.py
ad647f4
verified
12 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!"
}