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.
22 lines
554 B
22 lines
554 B
from fastapi import Depends, FastAPI
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class FixedContentQueryChecker:
|
|
def __init__(self, fixed_content: str):
|
|
self.fixed_content = fixed_content
|
|
|
|
def __call__(self, q: str = ""):
|
|
if q:
|
|
return self.fixed_content in q
|
|
return False
|
|
|
|
|
|
checker = FixedContentQueryChecker("bar")
|
|
|
|
|
|
@app.get("/query-checker/")
|
|
async def read_query_check(fixed_content_included: Annotated[bool, Depends(checker)]):
|
|
return {"fixed_content_in_query": fixed_content_included}
|
|
|