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

7 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_item(item_id: str, q: str | None = None): 1abcdefgh

8 if q: 1ijklmnop

9 return {"item_id": item_id, "q": q} 1ikmo

10 return {"item_id": item_id} 1jlnp