Coverage for docs_src / path_operation_configuration / tutorial003_py310.py: 100%
12 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from fastapi import FastAPI 1abc
2from pydantic import BaseModel 1abc
4app = FastAPI() 1abc
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 tags: set[str] = set() 1abc
15@app.post( 1abc
16 "/items/",
17 summary="Create an item",
18 description="Create an item with all the information, name, description, price, tax and a set of unique tags",
19)
20async def create_item(item: Item) -> Item: 1abc
21 return item 1def