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