Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jonathanjordan21
/
test_api
like
0
Running
App
Files
Files
Community
00bd490
test_api
/
app.py
jonathanjordan21
Create app.py
ad647f4
verified
3 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!"
}