这个是作者自己封装的一个钉钉机器人的包,目前只支持发文本格式、链接格式、markdown格式的消息,我们可以在很多场景用到这个,比如告警通知等
安装
pip install DingDingBot
使用方法
from DingDingBot.DDBOT import DingDing # 初始话DingDingBOt webhook是钉钉机器人所必须的 dd = DingDing(webhook='https://oapi.dingtalk.com/robot/send"# 测试数据\n" + "> testone", Title='测试数据'))
源码
#!/usr/bin/python # -*- coding: UTF-8 -*- ''' @@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@@@@@@@@@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@@@@@@@@ @@ ''' import requests, json class DingDing(): """ # 钉钉官方文档 Refer to official documentation: https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq """ # 初始化 def __init__(self, webhook): self.webhook = webhook self.session = requests.session() self.session.headers = {"Content-Type": "application/json;charset=utf-8"} def Send_Text_Msg(self, Content: str, atMobiles: list = [], isAtAll: bool = False) -> dict: """ :param content: 要发送的内容 :param atMobiles: @指定的人,这里必须是列表,且参数为手机号 :param isAtAll: @全体成员 :return: """ try: data = { "msgtype": "text", "text": { "content": Content }, "at": { "atMobiles": atMobiles, "isAtAll": isAtAll } } response = self.session.post(self.webhook, data=json.dumps(data)) if response.status_code == '200': result = {"status": True, "message": "Message has been sent"} return result else: return response.text except Exception as error: result = {"status": False, "message": f"Failed to send message,Error stack:{error}"} return result def Send_Link_Msg(self, Content: str, Title: str, MsgUrl: str, PicUrl: str = ''): """ :param Content: 链接的内容 :param title: 链接的标题 :param MsgUrl: 待跳转页面的url :param PicUrl: 消息所展示的图片 :return: """ try: data = { "msgtype": "link", "link": { "text": Content, "title": Title, "picUrl": PicUrl, "messageUrl": MsgUrl } } response = self.session.post(self.webhook, data=json.dumps(data)) if response.status_code == '200': result = {"status": True, "message": "Message has been sent"} return result else: return response.text except Exception as error: result = {"status": False, "message": f"Failed to send message,Error stack:{error}"} return result def Send_MardDown_Msg(self, Content: str, Title: str, atMobiles: list = [], isAtAll: bool = False): """ :param Content: Markdown格式的文本,仅支持下面的格式 ''' 标题 # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 引用 > A man who stands for nothing will fall for anything. 文字加粗、斜体 **bold** *italic* 链接 [this is a link](http://name.com) 图片 ![](http://name.com/pic.jpg) 无序列表 - item1 - item2 有序列表 1. item1 2. item2 ''' :param Title: 这个Markdown的标题 :param atMobiles: @指定的人,这里必须是列表,且参数为手机号 :param isAtAll: @全体成员 :return: """ try: data = { "msgtype": "markdown", "markdown": { "title": Title, "text": Content }, "at": { "atMobiles": atMobiles, "isAtAll": isAtAll } } response = self.session.post(self.webhook, data=json.dumps(data)) if response.status_code == '200': result = {"status": True, "message": "Message has been sent"} return result else: return response.text except Exception as error: result = {"status": False, "message": f"Failed to send message,Error stack:{error}"} return result
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
暂无“Python第三方包之DingDingBot钉钉机器人”评论...
更新动态
2024年11月25日
2024年11月25日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]