Python第三方包之DingDingBot钉钉机器人
作者:Jruing 时间:2022-09-06 14:50:38
这个是作者自己封装的一个钉钉机器人的包,目前只支持发文本格式、链接格式、markdown格式的消息,我们可以在很多场景用到这个,比如告警通知等
安装
pip install DingDingBot
使用方法
from DingDingBot.DDBOT import DingDing
# 初始话DingDingBOt webhook是钉钉机器人所必须的
dd = DingDing(webhook='https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxx')
# 发送文本消息
print(dd.Send_Text_Msg(Content='test:测试数据'))
# 发送链接消息
print(dd.Send_Link_Msg(Content='test',Title='测试数据',MsgUrl='https://www.baidu.com',PicUrl='https://cn.bing.com/images/search?q=outgoing%e6%9c%ba%e5%99%a8%e4%ba%ba&id=FEE700371845D9386738AAAA51DCC43DC54911AA&FORM=IQFRBA'))
# 发送Markdown格式的消息
print(dd.Send_MardDown_Msg(Content="# 测试数据\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
来源:https://www.cnblogs.com/jruing/p/12656726.html
标签:Python,DingDingBot
0
投稿
猜你喜欢
Python实现获取乱序列表排序后的新下标的示例
2021-04-25 10:36:42
为什么Python中没有"a++"这种写法
2023-12-04 09:40:57
教你一步步实现一个简易promise
2024-04-26 17:11:37
Python中几种属性访问的区别与用法详解
2022-12-24 23:36:20
用python写一个定时提醒程序的实现代码
2021-04-12 12:25:45
有时应该告诉我,但有时不应该告诉我
2009-03-19 13:40:00
Python实现网络聊天室的示例代码(支持多人聊天与私聊)
2022-11-21 15:17:23
asp如何制作一个股票滚屏显示面板?
2010-07-07 12:27:00
Python中高阶函数的小实践分享
2022-05-24 11:59:04
Python中Collections模块的Counter容器类使用教程
2021-10-23 07:28:44
详解JS深拷贝与浅拷贝
2024-05-22 10:40:40
Python的时间模块datetime详解
2023-10-17 01:36:48
Python实现压缩文件夹与解压缩zip文件的方法
2023-07-31 20:43:09
通过python扫描二维码/条形码并打印数据
2022-03-12 11:32:32
mysql8.0.11客户端无法登陆的解决方法
2024-01-17 18:57:52
Tensorflow 多线程设置方式
2021-09-29 21:53:50
python实现图片横向和纵向拼接
2021-12-20 20:53:30
Python pip替换为阿里源的方法步骤
2023-07-19 15:39:23
十个Golang开发中应该避免的错误总结
2024-04-25 15:05:14
Python的Django框架使用入门指引
2021-12-15 13:22:17