Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
datacomp
/
teaching_arithmetic
like
0
Paused
App
Files
Files
Community
f60da9f
teaching_arithmetic
/
app.py
meg-huggingface
Add application file
8aa5379
about 1 month ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}