Coverage for docs_src / path_params_numeric_validations / tutorial006_py310.py: 100%
10 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from fastapi import FastAPI, Path, Query 1def
3app = FastAPI() 1def
6@app.get("/items/{item_id}") 1def
7async def read_items( 1def
8 *,
9 item_id: int = Path(title="The ID of the item to get", ge=0, le=1000),
10 q: str,
11 size: float = Query(gt=0, lt=10.5),
12):
13 results = {"item_id": item_id} 1abc
14 if q: 1abc
15 results.update({"q": q}) 1abc
16 if size: 1abc
17 results.update({"size": size}) 1abc
18 return results 1abc