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