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

6 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-12 18:15 +0000

1from fastapi import FastAPI 1abcd

2 

3app = FastAPI() 1abcd

4 

5 

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

7async def read_user_item(item_id: str, needy: str): 1abcd

8 item = {"item_id": item_id, "needy": needy} 1efg

9 return item 1efg