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

10 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-08 03:53 +0000

1from fastapi import Depends, FastAPI 1abc

2 

3app = FastAPI() 1abc

4 

5 

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

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

8 

9 

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

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

12 return commons 1abc

13 

14 

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

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

17 return commons 1abc