Skip to main content

feishu chatbot api

Project description

简介

基于飞书官方文档,封装的飞书消息机器人接口。支持简单的消息格式校验,获取发送消息所需 file_key, image_key 等。

使用示例

安装

pip install -U feishu-chatbot

发送文本

client = ChatBotClient(app_id="xxx", app_secret='xxx')
user = client.get_user_id_by_email("user_email")
data = {
    "msg_type": "text",
    "content": json.dumps({"text": "测试文本"}),
    "receive_id": user["open_id"],  # or user["user_id"]
}
TextChatBot.set_client(client).set_data(data).build().send()  # receive_id 默认使用 open_id
TextChatBot.set_client(client).set_receive_id_type("user_id").set_data(data).build().send()  # receive_id 默认使用 user_id

发送视频

client = ChatBotClient(app_id="xxx", app_secret='xxx')
user = client.get_user_id_by_email("user_email")

# 上传图片和文件获取对应的 key 信息
image_key = client.get_image_key("...")
file_key = client.get_file_key("...")

data = {
    "msg_type": "media",
    "content": json.dumps({"file_key": file_key, "image_key": image_key}),
    "receive_id": user["open_id"],
}
MediaChatBot.set_client(client).set_data(data).build().send()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

feishu_chatbot-0.0.3.tar.gz (15.3 kB view hashes)

Uploaded Source

Built Distribution

feishu_chatbot-0.0.3-py3-none-any.whl (22.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page