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

10 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from fastapi import Depends, FastAPI 1abcdefg

2 

3app = FastAPI() 1abcdefg

4 

5 

6async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100): 1abcdefg

7 return {"q": q, "skip": skip, "limit": limit} 1hijklmnopqrstuvwx

8 

9 

10@app.get("/items/") 1abcdefg

11async def read_items(commons: dict = Depends(common_parameters)): 1abcdefg

12 return commons 1hijkmnopqrtuvw

13 

14 

15@app.get("/users/") 1abcdefg

16async def read_users(commons: dict = Depends(common_parameters)): 1abcdefg

17 return commons 1lysx