mirror of https://github.com/tiangolo/fastapi.git
19 lines
410 B
Python
19 lines
410 B
Python
from typing import Union
|
|
|
|
from fastapi import FastAPI, Query
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(
|
|
q: Annotated[
|
|
Union[str, None], Query(min_length=3, max_length=50, pattern="^fixedquery$")
|
|
] = None,
|
|
):
|
|
results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
|
|
if q:
|
|
results.update({"q": q})
|
|
return results
|