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 小时前
[Pytest] [Part 2]增加 log功能
开发语言·python·pytest
漫谈网络1 小时前
WebSocket 在前后端的完整使用流程
javascript·python·websocket
青牛科技-Allen2 小时前
GC3910S:一款高性能双通道直流电机驱动芯片
stm32·单片机·嵌入式硬件·机器人·医疗器械·水泵、
try2find3 小时前
安装llama-cpp-python踩坑记
开发语言·python·llama
博观而约取4 小时前
Django ORM 1. 创建模型(Model)
数据库·python·django
物联网软硬件开发-轨物科技4 小时前
【轨物洞见】光伏机器人与组件、支架智能化协同白皮书
机器人
精灵vector5 小时前
构建专家级SQL Agent交互
python·aigc·ai编程
Zonda要好好学习6 小时前
Python入门Day2
开发语言·python
Vertira6 小时前
pdf 合并 python实现(已解决)
前端·python·pdf
太凉6 小时前
Python之 sorted() 函数的基本语法
python