Metadata-Version: 1.1
Name: qyweixin
Version: 0.2.2
Summary: Interface for Tencent enterprise weixin.
Home-page: https://github.com/MoeLove/qyweixin
Author: TaoBeier
Author-email: zhangjintao9020@gmail.com
License: MIT
Description: qyweixin
        =========
        
        .. image:: https://img.shields.io/pypi/v/qyweixin.svg
            :target: https://pypi.python.org/pypi/qyweixin
        
        .. image:: https://travis-ci.org/MoeLove/qyweixin.svg?branch=master
            :target: https://travis-ci.org/MoeLove/qyweixin
        
        .. image:: https://coveralls.io/repos/MoeLove/qyweixin/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/MoeLove/qyweixin?branch=master
        
        .. image:: https://img.shields.io/pypi/dm/qyweixin.svg
            :target: https://pypi.python.org/pypi/qyweixin
        
        .. image:: https://img.shields.io/pypi/wheel/qyweixin.svg
            :target: https://pypi.python.org/pypi/qyweixin
        
        .. image:: https://img.shields.io/pypi/status/qyweixin.svg
            :target: https://pypi.python.org/pypi/qyweixin
        
        `Enterprise weixin <https://qy.weixin.qq.com>`_, interface.
        
        Usage
        --------
        
        - get token
        
        .. code-block:: python
        
            >>> import qyweixin
            >>> token = qyweixin.get_token('corpid', 'corpsecret')
            >>> token
            ...
        
        
        - push message
        
        .. code-block:: python
        
            >>> import qyweixin
            >>> push_msg = qyweixin.WeixinPush()
            >>> push_msg.push_text_msg(token=token, agentid=0, content='test msg', touser='test', toparty='test_group', totag='', safe=0)
            True
        
        
        - upload files
        
        .. code-block:: python
        
            >>> import qyweixin
            >>> media_id = qyweixin.upload(token, filename, filepath, filetype)
            ...
        
        
        Features
        ---------
        
        - push messages
        - uploads media
        - manage media
        - more qyweixin api
        
        
        Installation
        -------------
        
        To install qyweixin, simply:
        
        .. code-block:: bash
        
            $ pip install qyweixin
        
        
        License
        =========
        
        Copyright (C) 2015-2016 TaoBeier
        
        
        HISTORY
        ========
        
        * 2015.09.27 Start
        * 2015.10.08 Add file upload
        * 2015.11.19 Simple API
        * 2016.11.22 Upgrade to 0.2.2 improve push_message API
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
