Coverage for docs_src / schema_extra_example / tutorial003_py310.py: 100%

12 statements  

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

1from fastapi import Body, FastAPI 1abc

2from pydantic import BaseModel 1abc

3 

4app = FastAPI() 1abc

5 

6 

7class Item(BaseModel): 1abc

8 name: str 1abc

9 description: str | None = None 1abc

10 price: float 1abc

11 tax: float | None = None 1abc

12 

13 

14@app.put("/items/{item_id}") 1abc

15async def update_item( 1abc

16 item_id: int, 

17 item: Item = Body( 

18 examples=[ 

19 { 

20 "name": "Foo", 

21 "description": "A very nice Item", 

22 "price": 35.4, 

23 "tax": 3.2, 

24 } 

25 ], 

26 ), 

27): 

28 results = {"item_id": item_id, "item": item} 1def

29 return results 1def