OpenFeishu
OpenFeishu 是一个飞书开放平台的 Python SDK,提供了飞书开放平台的接口封装,方便开发者使用飞书开放平台的接口。
使用
快速开始
FeishuClient 是一个异步客户端,统一管理应用凭证、令牌的自动获取与缓存,以及带自动重试的 HTTP 传输。推荐通过 async with 使用,以便自动释放底层连接。消息接口以接收者为第一个参数(其 ID 类型会自动推断),消息内容为第二个参数;client.im.send 还会根据内容的形态自动推断消息类型(msg_type)。
import asyncio
from feishu import FeishuClient
async def main():
async with FeishuClient("cli_xxx", "app_secret") as client:
await client.im.send("oc_xxx", "hello, world!")
asyncio.run(main())
应用凭证也可以通过环境变量 FEISHU_APP_ID / FEISHU_APP_SECRET 提供,此时可省略构造参数:async with FeishuClient() as client: ...。
命名空间
各业务能力按资源划分到不同命名空间下,每个命名空间提供「裸动词」式的 CRUD 方法(如 create / get / update / delete / list)。常用入口:
| 命名空间 | 说明 |
|---|---|
client.im |
即时消息:发送、回复、编辑、撤回、转发消息 |
client.contact.users / client.contact.departments |
通讯录:用户与部门 |
client.bitable.tables |
多维表格:数据表、字段与记录 |
client.calendar.events |
日历:日程与参与人 |
client.approval.instances |
审批:审批实例与任务 |
client.drive.files |
云空间:文件的上传、下载、复制与删除 |
此外还有 client.docx(新版文档)、client.sheets(电子表格)、client.wiki(知识库)、client.board.whiteboards(画板)、client.vc(视频会议)、client.task(任务)、client.oauth(用户身份 OAuth)、client.cards(卡片构建器)等命名空间。
async with FeishuClient("cli_xxx", "app_secret") as client:
user = await client.contact.users.get("ou_xxx", user_id_type="open_id")
records = await client.bitable.records.list("app_token", "tbl_xxx")
接收事件
要接收飞书推送的事件(如「接收消息」),先用 EventDispatcher 按事件类型注册异步处理函数,Webhook 接收器与长连接两种接入方式共用同一套处理函数。
from feishu.events import EventDispatcher
dispatcher = EventDispatcher()
@dispatcher.on("im.message.receive_v1")
async def on_message(event):
print(event.event_id)
方式一:长连接(WebSocket)。 本地开发、内网部署或轻量机器人可用 feishu.ws.WsClient 主动与飞书建立一条持久 WebSocket 连接(对标 Slack 的 Socket Mode),事件经该连接推送:
import asyncio
from feishu.ws import WsClient
ws = WsClient("cli_xxx", "app_secret", dispatcher)
asyncio.run(ws.start())
长连接依赖可选的 websockets 包,可通过 pip install open-feishu[ws] 安装。
方式二:HTTP Webhook。 公网 Webhook 场景可用 create_event_app 生成一个可独立运行的 Starlette 应用,默认带签名新鲜度(防重放)与去重保护,以任意 ASGI 服务器(如 uvicorn)运行即可:
from feishu.events import create_event_app
app = create_event_app(dispatcher, encrypt_key="ek_secret")
# uvicorn module:app
Agent
feishu.agent.Agent 是面向机器人产品的开箱即用入口:它把飞书客户端、LLM 后端、工具注册表、会话存储、审批卡片、OAuth 授权恢复、附件处理和事件接入装配在一起。最小可部署模板在仓库的 examples/agent 目录,完整说明见 https://feishu.danling.org/guides/agent/。
pip install "open-feishu[openai,ws,gateway]"
from feishu.agent import Agent, ToolRegistry
registry = ToolRegistry()
@registry.register(
input_schema={"type": "object", "properties": {}, "additionalProperties": False},
description="返回当前服务状态。",
)
def service_status():
return "ok"
config = {
"feishu": {"app_id": "cli_xxx", "app_secret": "app_secret"},
"model": {
"model": "gpt-4o-mini",
"api_key": "sk_xxx",
"base_url": "https://api.openai.com/v1",
},
"storage": {"path": ".agent/agent.db"},
"toolkits": [],
"system": "你是一个简洁的飞书助手。",
}
Agent(config, registry=registry).run(backend="ws")
backend="ws" 通过飞书长连接收事件,适合本地、内网和容器常驻部署;backend="http" 暴露 /feishu/event、/health 和 OAuth 回调路由,适合公网 Webhook、用户授权工具和统一健康检查。Agent(config) 接收已加载的 mapping;YAML、TOML、.env 或密钥服务由应用层读取后组装进配置。
安装
从 PyPI 安装最新的稳定版本:
pip install open-feishu
如果需要使用 feishu-mcp 命令,请安装 MCP 可选依赖:
pip install "open-feishu[mcp]"
从源代码安装最新版本:
pip install git+https://github.com/ZhiyuanChen/open-feishu.git
许可证
SPDX-License-Identifier: AGPL-3.0-or-later
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file open_feishu-0.4.1.tar.gz.
File metadata
- Download URL: open_feishu-0.4.1.tar.gz
- Upload date:
- Size: 6.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6b60a6ba769f04b229ea5fe6135384a2dfb6c329550c169bac749615d2f3e89
|
|
| MD5 |
3509180bf370f9ec5f80cfe1204428b7
|
|
| BLAKE2b-256 |
c35728f6b3f39765f1b2744be50d8a316de7431995698476eb4f28e3d92704bb
|
Provenance
The following attestation bundles were made for open_feishu-0.4.1.tar.gz:
Publisher:
push.yaml on ZhiyuanChen/open-feishu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
open_feishu-0.4.1.tar.gz -
Subject digest:
a6b60a6ba769f04b229ea5fe6135384a2dfb6c329550c169bac749615d2f3e89 - Sigstore transparency entry: 2070523624
- Sigstore integration time:
-
Permalink:
ZhiyuanChen/open-feishu@2560333358bb92a2793033b46db20f9cf20195b2 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/ZhiyuanChen
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
push.yaml@2560333358bb92a2793033b46db20f9cf20195b2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file open_feishu-0.4.1-py3-none-any.whl.
File metadata
- Download URL: open_feishu-0.4.1-py3-none-any.whl
- Upload date:
- Size: 505.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f178a9c087398407ee1b10c6c1c63ca05b943b34f02c9d697d3f1534a2e0bb9
|
|
| MD5 |
9adc4c00088159860824a4afa894fd0a
|
|
| BLAKE2b-256 |
fde1c5d4ca9b1da9152a740153515e348f23d7e5ba9e13039ec865f3ea73cb6b
|
Provenance
The following attestation bundles were made for open_feishu-0.4.1-py3-none-any.whl:
Publisher:
push.yaml on ZhiyuanChen/open-feishu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
open_feishu-0.4.1-py3-none-any.whl -
Subject digest:
4f178a9c087398407ee1b10c6c1c63ca05b943b34f02c9d697d3f1534a2e0bb9 - Sigstore transparency entry: 2070523709
- Sigstore integration time:
-
Permalink:
ZhiyuanChen/open-feishu@2560333358bb92a2793033b46db20f9cf20195b2 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/ZhiyuanChen
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
push.yaml@2560333358bb92a2793033b46db20f9cf20195b2 -
Trigger Event:
push
-
Statement type: