Metadata-Version: 2.1
Name: dingtalk-webhook
Version: 1.1.6
Summary: send dingtalk message to dingding webhook robot
Home-page: https://github.com/x-hezhang/dingtalk-webhook
Author: zhanghe
Author-email: x_hezhang@126.com
License: GNU GPLv3
Description: # 功能
        
        * 支持所有钉钉消息类型。
        * 支持加签的安全设置。
        
        # Python版本
        
        `Python 3.6+`
        
        # 安装
        
        ```bash
        1. 安装requests
        pip install requests
        
        2. 安装该模块
        pip install dingtalk-webhook
        ```
        
        # 使用
        
        ```python
        import dingtalk
        
        access_token = 'xxxxxxx...xxx'  # 创建webhook机器人时产生的access_token
        secret = 'SECxxxxxxx'  # 如果安全设置没有勾选加签，可不用设置该参数
        dt = dingtalk.DingTalk(access_token=access_token, secret=secret)
        dt.send_text(text='测试消息', at_all=True)
        ```
        
Keywords: dingtalk,dingding,dingtalk-webhook,ding,alert
Platform: UNKNOWN
Description-Content-Type: text/markdown
