FastAPI - OpenAPI 入門指南

全局配置

系統(tǒng)路由配置

  • OpenAPI Url:默認(rèn)值 /openapi.json
  • Swagger UI:默認(rèn)值 /docs
  • ReDoc UI:默認(rèn)值 /redoc

Swagger UI 和 ReDoc UI 都是基于 OpenAPI Url 返回的數(shù)據(jù)來渲染頁面的定页,F(xiàn)astAPI 默認(rèn)會開啟這兩種 UI,配置修改方式如下:

from fastapi import FastAPI

app = FastAPI(openapi_url="/api/v2/openapi.json", docs_url="/documentation", redoc_url=None)

Tips:屬性值設(shè)置為 None 時诉儒,表示不開啟

基本信息配置

  • 簡單配置方式:
from fastapi import FastAPI

description = """
## Features
- Auto generate openapi json
- Swagger UI & ReDoc UI
"""

app = FastAPI(
    title="自定義服務(wù)名",
    description=description,
    version="2.2.1",
    terms_of_service="http://example.com/terms/",
    contact={
        "name": "Anoyi",
        "url": "https://anoyi.com",
        "email": "anoyi@qq.com",
    },
    license_info={
        "name": "Apache 2.0",
        "url": "https://www.apache.org/licenses/LICENSE-2.0.html",
    },
)

if __name__ == '__main__':
    uvicorn.run(app, host='0.0.0.0', port=8080, access_log=False, debug=True)
  • 高級配置方式:
from fastapi import FastAPI

app = FastAPI()

description = """
## Features
- Auto generate openapi json
- Swagger UI & ReDoc UI
"""

app.openapi()["info"] = {
    "title": "Custom Title",
    "version": "2.2.0",
    "description": description,
    "contact": {
        "name": "Anoyi",
        "url": "https://anoyi.com",
        "email": "anoyi@qq.com",
    },
    "license": {
        "name": "Apache 2.0",
        "url": "https://www.apache.org/licenses/LICENSE-2.0.html",
    },
    "x-logo": {
        "url": "https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png"
    }
}

if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=8080, access_log=False, debug=True)

Tips:description 支持 Markdown 格式

API 配置

基本配置

from typing import Generic, TypeVar, Optional

from fastapi import FastAPI, Cookie, Header
from pydantic import BaseModel
from pydantic.generics import GenericModel

T = TypeVar('T')


class WebResponse(GenericModel, Generic[T]):
    code: int
    message: Optional[str]
    data: Optional[T]


class Item(BaseModel):
    item_id: str
    item_name: str
    item_size: Optional[int]


@app.get("/item/{item_id}", name='Get Item By Id', description='Description Of Get A Item', response_model=WebResponse[str])
async def read_item(item_id: str, q: str, user_agent: Optional[str] = Header(None), session: Optional[str] = Cookie(None)):
    print(f'item_id: {item_id}')
    print(f'query -> q: {q}')
    print(f'header -> User-Agent: {user_agent}')
    print(f'cookie -> session: {session}')
    return WebResponse(code=0, data=item_id).dict()


@app.post("/item", name='Add Item', description='Description Of Add A Item', response_model=WebResponse[Item], response_description="The created item")
async def create_item(body: Item):
    print(f'body: {body.dict()}')
    return WebResponse[Item](code=0, data=body).dict()


@app.put("/item", summary="Update Item", response_model=WebResponse[bool], tags=["Items"])
async def create_item(body: Item):
    """
    Update A Item

    - **item_id**: each item must have a id
    - **item_name**: each item must have a name
    - **item_size**: set the item's size
    """
    print(f"body: {body.dict()}")
    return WebResponse[Item](code=0, data=True).dict()

Tips:使用 descriptiondocstring 這兩種方式描述 API 是等價的

狀態(tài)碼及響應(yīng)體配置 - Status Code & Response Example

from starlette.responses import FileResponse

responses = {
    200: {"content": {"image/png": {}}},
    403: {
        "description": "Not enough privileges",
        "content": {
            "application/json": {
                "example": {"id": "100001", "reason": "Not enough privileges"}
            }
        },
    },
    404: {"description": "Image not found"},
}


@app.get("/image/{image_id}", name="Read Image", response_class=FileResponse, responses=responses)
async def read_item(image_id: str):
    return FileResponse(f"{image_id}.png", media_type="image/png")

分組配置 - Tags & Group

tags_metadata = [
    {
        "name": "Items",
        "description": "Manage items. So _fancy_ they have their own docs.",
        "externalDocs": {
            "description": "Items external docs",
            "url": "https://fastapi.tiangolo.com/",
        },
    },
    {
        "name": "Media",
        "description": "Operations with Media. The **video** logic is also here.",
    },
]

app = FastAPI(openapi_tags=tags_metadata)


@app.post("/item", tags=["Items"])
async def create_item(item: Item):
    ...


@app.get("/item", tags=["Items"])
async def read_items():
    ...


@app.get("/media", tags=["Media"])
async def read_media():
    ...

棄用標(biāo)識 - Deprecated

@app.delete("/users", deprecated=True)
async def delete_users():
    ...

其他配置

相關(guān)資料

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市钢拧,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌培己,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件胚泌,死亡現(xiàn)場離奇詭異省咨,居然都是意外死亡,警方通過查閱死者的電腦和手機玷室,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門零蓉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來笤受,“玉大人,你說我怎么就攤上這事敌蜂÷崾蓿” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵章喉,是天一觀的道長汗贫。 經(jīng)常有香客問我,道長秸脱,這世上最難降的妖魔是什么落包? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮摊唇,結(jié)果婚禮上咐蝇,老公的妹妹穿的比我還像新娘。我一直安慰自己巷查,他們只是感情好有序,可當(dāng)我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著岛请,像睡著了一般笔呀。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上髓需,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天许师,我揣著相機與錄音,去河邊找鬼僚匆。 笑死微渠,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的咧擂。 我是一名探鬼主播逞盆,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼松申!你這毒婦竟也來了云芦?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤贸桶,失蹤者是張志新(化名)和其女友劉穎舅逸,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體皇筛,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡琉历,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片旗笔。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡彪置,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蝇恶,到底是詐尸還是另有隱情拳魁,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布撮弧,位于F島的核電站潘懊,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏想虎。R本人自食惡果不足惜卦尊,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望舌厨。 院中可真熱鬧岂却,春花似錦、人聲如沸裙椭。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽揉燃。三九已至扫尺,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間炊汤,已是汗流浹背正驻。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留抢腐,地道東北人姑曙。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像迈倍,于是被迫代替她去往敵國和親伤靠。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容