# 飞书消息推送实例 **Repository Path**: ccbunny/feishu_send_message ## Basic Information - **Project Name**: 飞书消息推送实例 - **Description**: Python初学者,按照飞书官方的文档做了个消息推送实例,不足之处望指点 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-03-20 - **Last Updated**: 2021-03-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 飞书消息推送 #### 介绍 Python初学者,按照飞书官方的文档做了个消息推送实例,不足之处望指点 邮箱:`laohuiovo@gmail.com` #### 使用说明 ~~~python from feishu import FeiShu webhook = 'webhook地址' secret = '你的签名' app = FeiShu(webhook,secret) # 如果没有启用签名,第二个参数可以不用传 message = { "msg_type": "text", "content": { "text": "新更新提醒" } } app.sendMessage(message,True) ~~~ 由于时间问题,仅对一些常见异常做了处理,有其他需求自行添加~~