mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
1023 B
1023 B
contentSidebar | sidebarDepth |
---|---|
true | 0 |
NoneBot.drivers.fastapi 模块
FastAPI 驱动适配
后端使用方法请参考: FastAPI 文档
class Driver
FastAPI 驱动框架
-
上报地址
-
/{adapter name}/
: HTTP POST 上报 -
/{adapter name}/http/
: HTTP POST 上报 -
/{adapter name}/ws
: WebSocket 上报 -
/{adapter name}/ws/
: WebSocket 上报
-
property type
驱动名称: fastapi
property server_app
FastAPI APP
对象
property asgi
FastAPI APP
对象
property logger
fastapi 使用的 logger
on_startup(func)
参考文档: Events
on_shutdown(func)
参考文档: Events
run(host=None, port=None, *, app=None, **kwargs)
使用 uvicorn
启动 FastAPI