Coverage for docs_src/query_params/tutorial006.py: 100%

7 statements  

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

1from typing import Union 1abcde

2 

3from fastapi import FastAPI 1abcde

4 

5app = FastAPI() 1abcde

6 

7 

8@app.get("/items/{item_id}") 1abcde

9async def read_user_item( 1abcde

10 item_id: str, needy: str, skip: int = 0, limit: Union[int, None] = None 

11): 

12 item = {"item_id": item_id, "needy": needy, "skip": skip, "limit": limit} 1abcde

13 return item 1abcde