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

6 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-12-04 08:29 +0000

1from fastapi import FastAPI 1abcde

2 

3app = FastAPI() 1abcde

4 

5 

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

7async def read_user_item( 1abcde

8 item_id: str, needy: str, skip: int = 0, limit: int | None = None 

9): 

10 item = {"item_id": item_id, "needy": needy, "skip": skip, "limit": limit} 1fghij

11 return item 1fghij