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

8 statements  

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

1from fastapi import FastAPI, Query 1abc

2 

3app = FastAPI() 1abc

4 

5 

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

7async def read_items(q: str = Query(default="fixedquery", min_length=3)): 1abc

8 results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} 1defghi

9 if q: 1defghi

10 results.update({"q": q}) 1defghi

11 return results 1defghi