Coverage for docs_src / path_operation_configuration / tutorial001_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, status 1abecd

2from pydantic import BaseModel 1abecd

3 

4app = FastAPI() 1abecd

5 

6 

7class Item(BaseModel): 1abecd

8 name: str 1abcd

9 description: str | None = None 1abecd

10 price: float 1abcd

11 tax: float | None = None 1abecd

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

13 

14 

15@app.post("/items/", status_code=status.HTTP_201_CREATED) 1abecd

16async def create_item(item: Item) -> Item: 1abecd

17 return item 1fghi