docker_examples/python/main.py
2021-09-23 21:27:09 +02:00

15 lines
278 B
Python

from typing import Optional
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root() -> dict:
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: Optional[str] = None) -> dict:
return {"item_id": item_id, "q": q}