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

13 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-08 03:53 +0000

1from fastapi import 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 model_config = { 1abc

14 "json_schema_extra": { 

15 "examples": [ 

16 { 

17 "name": "Foo", 

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

19 "price": 35.4, 

20 "tax": 3.2, 

21 } 

22 ] 

23 } 

24 } 

25 

26 

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

28async def update_item(item_id: int, item: Item): 1abc

29 results = {"item_id": item_id, "item": item} 1abc

30 return results 1abc