mirror of https://github.com/tiangolo/fastapi.git
30 lines
574 B
Python
30 lines
574 B
Python
from typing import Optional, Set
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: Optional[str] = None
|
|
price: float
|
|
tax: Optional[float] = None
|
|
tags: Set[str] = []
|
|
|
|
|
|
@app.post("/items/", response_model=Item, tags=["items"])
|
|
async def create_item(item: Item):
|
|
return item
|
|
|
|
|
|
@app.get("/items/", tags=["items"])
|
|
async def read_items():
|
|
return [{"name": "Foo", "price": 42}]
|
|
|
|
|
|
@app.get("/users/", tags=["users"])
|
|
async def read_users():
|
|
return [{"username": "johndoe"}]
|