mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-18 02:49:51 -05:00
* ✨ Re-export main features used from Starlette to simplify developer's code * ♻️ Refactor Starlette exports * ♻️ Refactor tutorial examples to use re-exported utils from Starlette * 📝 Add examples for all middlewares * 📝 Add new docs for middlewares * 📝 Add examples for custom responses * 📝 Extend docs for custom responses * 📝 Update docs and add notes explaining re-exports from Starlette everywhere * 🍱 Update screenshot for HTTP status * 🔧 Update MkDocs config with new content * ♻️ Refactor tests to use re-exported utils from Starlette * ✨ Re-export WebSocketDisconnect from Starlette for tests * ✅ Add extra tests for extra re-exported middleware * ✅ Add tests for re-exported responses from Starlette * ✨ Add docs about mounting WSGI apps * ➕ Add Flask as a dependency to test WSGIMiddleware * ✅ Test WSGIMiddleware example
24 lines
520 B
Python
24 lines
520 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import JSONResponse
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Item(BaseModel):
|
|
id: str
|
|
value: str
|
|
|
|
|
|
class Message(BaseModel):
|
|
message: str
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/{item_id}", response_model=Item, responses={404: {"model": Message}})
|
|
async def read_item(item_id: str):
|
|
if item_id == "foo":
|
|
return {"id": "foo", "value": "there goes my hero"}
|
|
else:
|
|
return JSONResponse(status_code=404, content={"message": "Item not found"})
|