Coverage for docs_src/body_fields/tutorial001_an_py39.py: 100%
13 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from typing import Annotated, Union 1abcd
3from fastapi import Body, FastAPI 1abcd
4from pydantic import BaseModel, Field 1abcd
6app = FastAPI() 1abcd
9class Item(BaseModel): 1abcd
10 name: str 1abcd
11 description: Union[str, None] = Field( 1abcd
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") 1abcd
15 tax: Union[float, None] = None 1abcd
18@app.put("/items/{item_id}") 1abcd
19async def update_item(item_id: int, item: Annotated[Item, Body(embed=True)]): 1abcd
20 results = {"item_id": item_id, "item": item} 1abcd
21 return results 1abcd