Coverage for docs_src / body_fields / tutorial001_an_py310.py: 100%
13 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from typing import Annotated 1abfgcde
3from fastapi import Body, FastAPI 1abfgcde
4from pydantic import BaseModel, Field 1abfgcde
6app = FastAPI() 1abfgcde
9class Item(BaseModel): 1abfgcde
10 name: str 1abcde
11 description: str | None = Field( 1abfgcde
12 default=None, title="The description of the item", max_length=300
13 )
14 price: float = Field(gt=0, description="The price must be greater than zero") 1abfgcde
15 tax: float | None = None 1abfgcde
18@app.put("/items/{item_id}") 1abfgcde
19async def update_item(item_id: int, item: Annotated[Item, Body(embed=True)]): 1abfgcde
20 results = {"item_id": item_id, "item": item} 1hijklmn
21 return results 1hijklmn