Coverage for docs_src/dependencies/tutorial004_py310.py: 100%
16 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from fastapi import Depends, FastAPI 1abc
3app = FastAPI() 1abc
6fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Baz"}] 1abc
9class CommonQueryParams: 1abc
10 def __init__(self, q: str | None = None, skip: int = 0, limit: int = 100): 1abc
11 self.q = q 1abc
12 self.skip = skip 1abc
13 self.limit = limit 1abc
16@app.get("/items/") 1abc
17async def read_items(commons: CommonQueryParams = Depends()): 1abc
18 response = {} 1abc
19 if commons.q: 1abc
20 response.update({"q": commons.q}) 1abc
21 items = fake_items_db[commons.skip : commons.skip + commons.limit] 1abc
22 response.update({"items": items}) 1abc
23 return response 1abc