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

6 statements  

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

1from fastapi import FastAPI 1abcdefgh

2 

3app = FastAPI() 1abcdefgh

4 

5 

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

7async def read_user_item( 1abcdefgh

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} 1ijkl

11 return item 1ijkl