Coverage for docs_src/body_multiple_params/tutorial001.py: 100%
17 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
1from typing import Union 1abcdefg
3from fastapi import FastAPI, Path 1abcdefg
4from pydantic import BaseModel 1abcdefg
6app = FastAPI() 1abcdefg
9class Item(BaseModel): 1abcdefg
10 name: str 1abcdefg
11 description: Union[str, None] = None 1abcdefg
12 price: float 1abcdefg
13 tax: Union[float, None] = None 1abcdefg
16@app.put("/items/{item_id}") 1abcdefg
17async def update_item( 1abcdefg
18 *,
19 item_id: int = Path(title="The ID of the item to get", ge=0, le=1000),
20 q: Union[str, None] = None,
21 item: Union[Item, None] = None,
22):
23 results = {"item_id": item_id} 1hvoiwpjxqkyrlzsmAtnBu
24 if q: 1hvoiwpjxqkyrlzsmAtnBu
25 results.update({"q": q}) 1hoipjqkrlsmtnu
26 if item: 1hvoiwpjxqkyrlzsmAtnBu
27 results.update({"item": item}) 1hijklmn
28 return results 1hvoiwpjxqkyrlzsmAtnBu