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.
25 lines
647 B
25 lines
647 B
from typing import Annotated
|
|
|
|
from fastapi import Depends, FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Baz"}]
|
|
|
|
|
|
class CommonQueryParams:
|
|
def __init__(self, q: str | None = None, skip: int = 0, limit: int = 100):
|
|
self.q = q
|
|
self.skip = skip
|
|
self.limit = limit
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(commons: Annotated[CommonQueryParams, Depends()]):
|
|
response = {}
|
|
if commons.q:
|
|
response.update({"q": commons.q})
|
|
items = fake_items_db[commons.skip : commons.skip + commons.limit]
|
|
response.update({"items": items})
|
|
return response
|
|
|