mirror of https://github.com/tiangolo/fastapi.git
19 lines
350 B
Python
19 lines
350 B
Python
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
tax: float = None
|
|
tags: list = []
|
|
|
|
|
|
@app.put("/items/{item_id}")
|
|
async def update_item(item_id: int, item: Item):
|
|
results = {"item_id": item_id, "item": item}
|
|
return results
|