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

18 statements  

« 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

3 

4app = FastAPI() 1abc

5 

6 

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

13 

14 

15@app.post("/items/", tags=["items"]) 1abc

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

17 return item 1def

18 

19 

20@app.get("/items/", tags=["items"]) 1abc

21async def read_items(): 1abc

22 return [{"name": "Foo", "price": 42}] 1ghi

23 

24 

25@app.get("/users/", tags=["users"]) 1abc

26async def read_users(): 1abc

27 return [{"username": "johndoe"}] 1jkl