mirror of https://github.com/tiangolo/fastapi.git
20 lines
370 B
Python
20 lines
370 B
Python
from typing import Set
|
|
|
|
from fastapi import FastAPI, status
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str = None
|
|
price: float
|
|
tax: float = None
|
|
tags: Set[str] = []
|
|
|
|
|
|
@app.post("/items/", response_model=Item, status_code=status.HTTP_201_CREATED)
|
|
async def create_item(item: Item):
|
|
return item
|