这个是作者自己封装的一个钉钉机器人的包,目前只支持发文本格式、链接格式、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
白云城资源网 Copyright www.dyhadc.com
暂无“Python第三方包之DingDingBot钉钉机器人”评论...
更新日志
2024年11月08日
2024年11月08日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]