Coverage for docs_src / path_params_numeric_validations / tutorial002_py310.py: 100%
8 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from fastapi import FastAPI, Path 1abcdef
3app = FastAPI() 1abcdef
6@app.get("/items/{item_id}") 1abcdef
7async def read_items(q: str, item_id: int = Path(title="The ID of the item to get")): 1abcdef
8 results = {"item_id": item_id} 1kglhminj
9 if q: 1kglhminj
10 results.update({"q": q}) 1ghij
11 return results 1kglhminj