Coverage for docs_src / path_operation_configuration / tutorial005_py310.py: 100%

12 statements  

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

1from fastapi import FastAPI 1aefbcd

2from pydantic import BaseModel 1aefbcd

3 

4app = FastAPI() 1aefbcd

5 

6 

7class Item(BaseModel): 1aefbcd

8 name: str 1abcd

9 description: str | None = None 1aefbcd

10 price: float 1abcd

11 tax: float | None = None 1aefbcd

12 tags: set[str] = set() 1aefbcd

13 

14 

15@app.post( 1aefbcd

16 "/items/", 

17 summary="Create an item", 

18 response_description="The created item", 

19) 

20async def create_item(item: Item) -> Item: 1aefbcd

21 """ 

22 Create an item with all the information: 

23 

24 - **name**: each item must have a name 

25 - **description**: a long description 

26 - **price**: required 

27 - **tax**: if the item doesn't have tax, you can omit this 

28 - **tags**: a set of unique tag strings for this item 

29 """ 

30 return item 1ghij