pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
472 B
19 lines
472 B
from fastapi import FastAPI, Query
|
|
from pydantic import BaseModel, Field
|
|
from typing_extensions import Literal
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class FilterParams(BaseModel):
|
|
model_config = {"extra": "forbid"}
|
|
|
|
limit: int = Field(100, gt=0, le=100)
|
|
offset: int = Field(0, ge=0)
|
|
order_by: Literal["created_at", "updated_at"] = "created_at"
|
|
tags: list[str] = []
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(filter_query: FilterParams = Query()):
|
|
return filter_query
|
|
|