mirror of https://github.com/tiangolo/fastapi.git
33 lines
519 B
Python
33 lines
519 B
Python
from typing import List, Set
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel, HttpUrl
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Image(BaseModel):
|
|
url: HttpUrl
|
|
name: str
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
tax: float = None
|
|
tags: Set[str] = []
|
|
images: List[Image] = None
|
|
|
|
|
|
class Offer(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
items: List[Item]
|
|
|
|
|
|
@app.post("/offers/")
|
|
async def create_offer(offer: Offer):
|
|
return offer
|