python实现飞书群机器人消息通知(消息卡片)

python实现飞书群机器人消息通知

直接上代码

python 复制代码
"""
飞书群机器人发送通知
"""
import time
import urllib3
import datetime


urllib3.disable_warnings()


class FlybookRobotAlert():
    def __init__(self):
        self.webhook = webhook_url
        self.headers = {Content-Type: application/json; charset=UTF-8}

    def post_to_robot(self, post_data):
        '''
        给飞书机器人发送请求
        :param data:
        :return:
        '''
        try:
            resp = requests.request(method="POST", url=self.webhook, data=post_data, headers=self.headers).json()
            if resp.get("StatusCode") == 0 and resp.get("msg") == "success":
                Logger.info(f"飞书通知发送成功,msg={resp}")
            else:
                Logger.warning(f"飞书通知发送失败,{resp}")
        except Exception as e:
            Logger.warning("飞书通知发送异常")
            Logger.warning(e)
            pass

    def send_message(self, proj_name, total, passed, failed, skipped, adress="https://www.example.com"):

        # 飞书通知标题
        robot_headers = "自动化报告"
        # 自定义飞书通知内容
        robot_content = "ddd!自动化执行情况反馈,请相关测试童鞋注意!并及时跟进!"

        execute_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")

        field_list = [
            {
                "is_short": False,
                "text": {
                    "tag": "lark_md",
                    "content": f"**用例执行完毕时间**:<font color=\"green\">{{}}</font>\n".format(execute_time)
                }
            },
            {
                "is_short": False,
                "text": {
                    "tag": "lark_md",
                    "content": f"**项目名称**:<font color=\"green\">{{}}</font>\n".format(proj_name)
                }
            },
            {
                "is_short": False,
                "text": {
                    "tag": "lark_md",
                    "content": f"**用例总数**:<font color=\"green\">{{}}</font>\n".format(total)
                }
            },
            {
                "is_short": False,
                "text": {
                    "tag": "lark_md",
                    "content": f"**通过用例数**:<font color=\"green\">{{}}</font>\n".format(passed)
                }
            },
            {
                "is_short": False,
                "text": {
                    "tag": "lark_md",
                    "content": f"**失败用例数**:<font color=\"green\">{{}}</font>\n".format(failed)
                }
            },
            {
                "is_short": False,
                "text": {
                    "tag": "lark_md",
                    "content": f"**跳过用例数**:<font color=\"green\">{{}}</font> \n".format(skipped)
                }
            }
        ]

        card = json.dumps({
            "config": {
                "wide_screen_mode": True
            },
            "elements": [
                {
                    "tag": "div",
                    "text": {
                        "content": robot_content,
                        "tag": "lark_md"
                    }
                },
                {
                    "tag": "div",
                    "fields": field_list
                },
                {
                    "actions": [{
                        "tag": "button",
                        "text": {
                            "tag": "plain_text",
                            "content": "allure报告,请点击查看"

                        },
                        "url": adress,
                        "type": "primary"
                    }],
                    "tag": "action"
                }
            ],
            "header": {
                "template": "red",
                "title": {
                    "content": robot_headers,
                    "tag": "plain_text"
                }
            }
        })

        msg_body = json.dumps({"msg_type": "interactive", "card": card})
        self.post_to_robot(data=msg_body)
        # {'StatusCode': 0, 'StatusMessage': 'success', 'code': 0, 'data': {}, 'msg': 'success'}
        return

if __name__ == '__main__':
    a = FlybookRobotAlert()
    a.send_message('你的项目名称GoGoGo', 4, 4, 0, 0)
相关推荐
一位代码1 小时前
python | requests爬虫如何正确获取网页编码?
开发语言·爬虫·python
可触的未来,发芽的智生1 小时前
新奇特:神经网络速比器,小镇债务清零的算法奇缘
javascript·人工智能·python
mortimer1 小时前
还在被 Windows 路径的大小写和正反斜杠坑?是时候让 pathlib 拯救你的代码了!
人工智能·python
std860212 小时前
Rust 与 Python – 这是未来的语言吗?
开发语言·python·rust
鄃鳕2 小时前
Flask【python】
后端·python·flask
weixin_46682 小时前
Python编程之面向对象
开发语言·人工智能·python
Lynnxiaowen3 小时前
今天我们学习python编程常用模块与面向对象
运维·python·学习·云计算
一头生产的驴3 小时前
java整合itext pdf实现固定模版pdf导出
java·python·pdf
魔都吴所谓3 小时前
【python】快速实现pdf批量去除指定位置水印
java·python·pdf
YFCodeDream3 小时前
MLLM技术报告 核心创新一览
python·gpt·aigc