Coverage for docs_src / path_operation_advanced_configuration / tutorial004_py310.py: 100%
12 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from fastapi import FastAPI 1abfcde
2from pydantic import BaseModel 1abfcde
4app = FastAPI() 1abfcde
7class Item(BaseModel): 1abfcde
8 name: str 1abcde
9 description: str | None = None 1abfcde
10 price: float 1abcde
11 tax: float | None = None 1abfcde
12 tags: set[str] = set() 1abfcde
15@app.post("/items/", summary="Create an item") 1abfcde
16async def create_item(item: Item) -> Item: 1abfcde
17 """
18 Create an item with all the information:
20 - **name**: each item must have a name
21 - **description**: a long description
22 - **price**: required
23 - **tax**: if the item doesn't have tax, you can omit this
24 - **tags**: a set of unique tag strings for this item
25 \f
26 :param item: User input.
27 """
28 return item 1ghij