3 changed files with 51 additions and 6 deletions
@ -0,0 +1,30 @@ |
|||||
|
from fastapi import FastAPI |
||||
|
from fastapi.responses import FileResponse |
||||
|
from pydantic import BaseModel |
||||
|
|
||||
|
|
||||
|
class Item(BaseModel): |
||||
|
id: str |
||||
|
value: str |
||||
|
|
||||
|
|
||||
|
responses = { |
||||
|
404: {"description": "Item not found"}, |
||||
|
302: {"description": "The item was moved"}, |
||||
|
403: {"description": "Not enough privileges"}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get( |
||||
|
"/items/{item_id}", |
||||
|
response_model=Item, |
||||
|
responses={**responses, 200: {"content": {"image/png": {}}}}, |
||||
|
) |
||||
|
async def read_item(item_id: str, img: bool | None = None): |
||||
|
if img: |
||||
|
return FileResponse("image.png", media_type="image/png") |
||||
|
else: |
||||
|
return {"id": "foo", "value": "there goes my hero"} |
||||
Loading…
Reference in new issue