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