mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-01 02:29:46 -05:00
* Fix for - [FEATURE] Remove *, where it's not needed #1234 * 🔥 Remove unnecessary arg *, * 🎨 Update docs format highlight lines Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
18 lines
497 B
Python
18 lines
497 B
Python
from fastapi import Body, FastAPI
|
|
from pydantic import BaseModel, Field
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = Field(None, title="The description of the item", max_length=300)
|
|
price: float = Field(..., gt=0, description="The price must be greater than zero")
|
|
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
|