Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tanbushi
/
api-mapper
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f7313fc
api-mapper
/
app.py
tanbushi
Add application file
6d1fe81
10 months ago
raw
Copy download link
history
blame
Safe
163 Bytes
# uvicorn app:app --host 0.0.0.0 --port 7860 --reload
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}