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

6 statements  

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

1from fastapi import FastAPI 1abc

2 

3app = FastAPI() 1abc

4 

5 

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

7async def read_user_item( 1abc

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

11 return item 1abc