Coverage for docs_src/dependencies/tutorial004_an.py: 100%
18 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-01-13 13:38 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-01-13 13:38 +0000
1from typing import Union 1abcde
3from fastapi import Depends, FastAPI 1abcde
4from typing_extensions import Annotated 1abcde
6app = FastAPI() 1abcde
9fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Baz"}] 1abcde
12class CommonQueryParams: 1abcde
13 def __init__(self, q: Union[str, None] = None, skip: int = 0, limit: int = 100): 1abcde
14 self.q = q 1fghij
15 self.skip = skip 1fghij
16 self.limit = limit 1fghij
19@app.get("/items/") 1abcde
20async def read_items(commons: Annotated[CommonQueryParams, Depends()]): 1abcde
21 response = {} 1fghij
22 if commons.q: 1fghij
23 response.update({"q": commons.q}) 1fghij
24 items = fake_items_db[commons.skip : commons.skip + commons.limit] 1fghij
25 response.update({"items": items}) 1fghij
26 return response 1fghij