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.
17 lines
352 B
17 lines
352 B
from fastapi import FastAPI, Header
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class CommonHeaders(BaseModel):
|
|
host: str
|
|
save_data: bool
|
|
if_modified_since: str | None = None
|
|
traceparent: str | None = None
|
|
x_tag: list[str] = []
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(headers: CommonHeaders = Header()):
|
|
return headers
|
|
|