mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-25 15:18:36 -05:00
* 📝 Add docs recommending Union over Optional * 📝 Update docs recommending Union over Optional * 📝 Update source examples for docs, recommend Union over Optional * 📝 Update highlighted lines with updated source examples * 📝 Update highlighted lines in Markdown with recent code changes * 📝 Update docs, use Union instead of Optional * ♻️ Update source examples to recommend Union over Optional * 🎨 Update highlighted code in Markdown after moving from Optional to Union
30 lines
580 B
Python
30 lines
580 B
Python
from typing import Set, Union
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: Union[str, None] = None
|
|
price: float
|
|
tax: Union[float, None] = None
|
|
tags: Set[str] = set()
|
|
|
|
|
|
@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"}]
|