Metadata-Version: 2.1
Name: wwr-api
Version: 0.0.3
Summary: WorkWechat Robot APIs
Home-page: https://github.com/Thoxvi/WorkWechat-Robot-API
Author: Thoxvi
Author-email: A@Thoxvi.com
License: UNKNOWN
Keywords: api workwechat
Platform: UNKNOWN
Requires-Python: >=3.4
Requires-Dist: requests

企业微信机器人 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。


