Metadata-Version: 1.2
Name: wwr-api
Version: 0.0.2
Summary: WorkWechat Robot APIs
Home-page: https://github.com/Thoxvi/WorkWechat-Robot-API
Author: Thoxvi
Author-email: A@Thoxvi.com
License: UNKNOWN
Description: 企业微信机器人 API 接口
        =======================
        
        准备
        ----
        
        1. 企业微信机器人 Hook 地址，形如:
           ``https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=0azd012d-efs9-4add-bcw9-10fb01db70ca``
           (此条已脱敏)
        2. Python3 环境
        
        安装方式
        --------
        
        ``shell script pip3 install wwr_api``
        
        使用方式
        --------
        
        .. code:: python
        
            from wwr_api import WorkWechatRobotAPI
        
            api = WorkWechatRobotAPI("https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=0azd012d-efs9-4add-bcw9-10fb01db70ca")
            api.send_markdown("**`Hello World!`**")
            api.send_pic("https://github.com/Thoxvi/one-click-man/blob/master/demo.png?raw=true")
            api.send_pic("/home/thoxvi/demo.png")
        
        建议/Bug
        --------
        
        请提 Issue。
        
Keywords: api workwechat
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.4
