mirror of https://github.com/tiangolo/fastapi.git
38 lines
839 B
Python
38 lines
839 B
Python
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
from starlette.responses import JSONResponse
|
|
|
|
|
|
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, "description": "The item was not found"},
|
|
200: {
|
|
"description": "Item requested by ID",
|
|
"content": {
|
|
"application/json": {
|
|
"example": {"id": "bar", "value": "The bar tenders"}
|
|
}
|
|
},
|
|
},
|
|
},
|
|
)
|
|
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"})
|