mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-05 20:49:36 -05:00
28 lines
507 B
Python
28 lines
507 B
Python
from typing import List, Set
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
from pydantic.types import UrlStr
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Image(BaseModel):
|
|
url: UrlStr
|
|
name: str
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
tax: float = None
|
|
tags: Set[str] = []
|
|
image: List[Image] = None
|
|
|
|
|
|
@app.put("/items/{item_id}")
|
|
async def update_item(*, item_id: int, item: Item):
|
|
results = {"item_id": item_id, "item": item}
|
|
return results
|