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

13 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from typing import Annotated 1abfgcde

2 

3from fastapi import Body, FastAPI 1abfgcde

4from pydantic import BaseModel 1abfgcde

5 

6app = FastAPI() 1abfgcde

7 

8 

9class Item(BaseModel): 1abfgcde

10 name: str 1abcde

11 description: str | None = None 1abfgcde

12 price: float 1abcde

13 tax: float | None = None 1abfgcde

14 

15 

16@app.put("/items/{item_id}") 1abfgcde

17async def update_item( 1abfgcde

18 *, 

19 item_id: int, 

20 item: Annotated[ 

21 Item, 

22 Body( 

23 examples=[ 

24 { 

25 "name": "Foo", 

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

27 "price": 35.4, 

28 "tax": 3.2, 

29 }, 

30 { 

31 "name": "Bar", 

32 "price": "35.4", 

33 }, 

34 { 

35 "name": "Baz", 

36 "price": "thirty five point four", 

37 }, 

38 ], 

39 ), 

40 ], 

41): 

42 results = {"item_id": item_id, "item": item} 1hijk

43 return results 1hijk