Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
OrbitalLab
/
SportsAI
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
4dc06f7
SportsAI
/
app.py
nicolasbuitragob
first commit
698a89d
4 months ago
raw
Copy download link
history
blame
Safe
114 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"message"
:
"Hello World"
}