Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tracinginsights
/
F1_API
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9c52e01
F1_API
/
main.py
tracinginsights
Create main.py
9ae94f1
over 2 years ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}