Coverage for docs_src/dependencies/tutorial004_py310.py: 100%

16 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-05-05 00:03 +0000

1from fastapi import Depends, FastAPI 1efgh

2 

3app = FastAPI() 1efgh

4 

5 

6fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Baz"}] 1efgh

7 

8 

9class CommonQueryParams: 1efgh

10 def __init__(self, q: str | None = None, skip: int = 0, limit: int = 100): 1efgh

11 self.q = q 1abcd

12 self.skip = skip 1abcd

13 self.limit = limit 1abcd

14 

15 

16@app.get("/items/") 1efgh

17async def read_items(commons: CommonQueryParams = Depends()): 1efgh

18 response = {} 1abcd

19 if commons.q: 1abcd

20 response.update({"q": commons.q}) 1abcd

21 items = fake_items_db[commons.skip : commons.skip + commons.limit] 1abcd

22 response.update({"items": items}) 1abcd

23 return response 1abcd