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

11 statements  

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

1from typing import Annotated, Union 1abcd

2 

3from fastapi import Depends, FastAPI 1abcd

4 

5app = FastAPI() 1abcd

6 

7 

8async def common_parameters( 1abcd

9 q: Union[str, None] = None, skip: int = 0, limit: int = 100 

10): 

11 return {"q": q, "skip": skip, "limit": limit} 1abcd

12 

13 

14@app.get("/items/") 1abcd

15async def read_items(commons: Annotated[dict, Depends(common_parameters)]): 1abcd

16 return commons 1abcd

17 

18 

19@app.get("/users/") 1abcd

20async def read_users(commons: Annotated[dict, Depends(common_parameters)]): 1abcd

21 return commons 1abcd