mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-26 15:51:02 -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
31 lines
628 B
Python
31 lines
628 B
Python
from typing import Union
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.responses import FileResponse
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Item(BaseModel):
|
|
id: str
|
|
value: str
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get(
|
|
"/items/{item_id}",
|
|
response_model=Item,
|
|
responses={
|
|
200: {
|
|
"content": {"image/png": {}},
|
|
"description": "Return the JSON item or an image.",
|
|
}
|
|
},
|
|
)
|
|
async def read_item(item_id: str, img: Union[bool, None] = None):
|
|
if img:
|
|
return FileResponse("image.png", media_type="image/png")
|
|
else:
|
|
return {"id": "foo", "value": "there goes my hero"}
|