mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
17 lines
363 B
Python
17 lines
363 B
Python
from fastapi import Body, FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
tax: float = None
|
|
|
|
|
|
@app.put("/items/{item_id}")
|
|
async def update_item(*, item_id: int, item: Item = Body(..., embed=True)):
|
|
results = {"item_id": item_id, "item": item}
|
|
return results
|