Coverage for docs_src/body_fields/tutorial001.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-12-04 08:29 +0000

1from typing import Union 1abcdefg

2 

3from fastapi import Body, FastAPI 1abcdefg

4from pydantic import BaseModel, Field 1abcdefg

5 

6app = FastAPI() 1abcdefg

7 

8 

9class Item(BaseModel): 1abcdefg

10 name: str 1abcdefg

11 description: Union[str, None] = Field( 1abcdefg

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") 1abcdefg

15 tax: Union[float, None] = None 1abcdefg

16 

17 

18@app.put("/items/{item_id}") 1abcdefg

19async def update_item(item_id: int, item: Item = Body(embed=True)): 1abcdefg

20 results = {"item_id": item_id, "item": item} 1hijklmnopqrstu

21 return results 1hijklmnopqrstu