Coverage for docs_src/path_operation_configuration/tutorial005_py310.py: 100%
12 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
1from fastapi import FastAPI 1abcde
2from pydantic import BaseModel 1abcde
4app = FastAPI() 1abcde
7class Item(BaseModel): 1abcde
8 name: str 1abcde
9 description: str | None = None 1abcde
10 price: float 1abcde
11 tax: float | None = None 1abcde
12 tags: set[str] = set() 1abcde
15@app.post( 1abcde
16 "/items/",
17 response_model=Item,
18 summary="Create an item",
19 response_description="The created item",
20)
21async def create_item(item: Item): 1abcde
22 """
23 Create an item with all the information:
25 - **name**: each item must have a name
26 - **description**: a long description
27 - **price**: required
28 - **tax**: if the item doesn't have tax, you can omit this
29 - **tags**: a set of unique tag strings for this item
30 """
31 return item 1fghij