File size: 196 Bytes
6436614
 
b916cdf
 
 
 
6436614
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from typing import Optional

from fastapi import FastAPI

app = FastAPI()


@app.get("/items/")
async def read_item(item_id: int, q: Optional[str] = None):
    return {"item_id": item_id, "q": q}