Metadata-Version: 1.1
Name: shanbay
Version: 0.2.0
Summary: Python wrapper for shanbay.com
Home-page: https://github.com/mozillazg/python-shanbay
Author: mozillazg
Author-email: mozillazg101@gmail.com
License: MIT
Description: python-shanbay
        ==============
        
        提供一系列操纵扇贝网 (www.shanbay.com) 的 api
        
        |Build| |Pypi version| |Pypi downloads|
        
        
        
        * Documentation: http://python-shanbay.rtfd.org
        * GitHub: https://github.com/mozillazg/python-shanbay
        * Free software: MIT license
        * PyPI: https://pypi.python.org/pypi/shanbay
        * Python version: 2.6, 2.7, pypy, 3.3, 3.4
        
        
        Features
        --------
        
        * send/reply message
        * manage team
        
        
        Installation
        ------------
        
        To install python-shanbay, simply:
        
        .. code-block:: bash
        
            $ pip install shanbay
        
        
        Basic Usage
        -----------
        
        .. code-block:: python
        
            >>> from shanbay import Shanbay, Message
            >>> shanbay = Shanbay('username', 'password')
            >>> shanbay.login()
            >>> message = Message(shanbay)
            >>> message.send_message(['mozillazg'], 'hello', 'hello')
            True
        
        
        .. |Build| image:: https://api.travis-ci.org/mozillazg/python-shanbay.png?branch=master
           :target: https://travis-ci.org/mozillazg/python-shanbay
        .. .. |Coverage| image:: https://coveralls.io/repos/mozillazg/python-shanbay/badge.png?branch=master
        ..    :target: https://coveralls.io/r/mozillazg/python-shanbay
        .. |Pypi version| image:: https://pypip.in/v/shanbay/badge.png
           :target: https://crate.io/packages/shanbay
        .. |Pypi downloads| image:: https://pypip.in/d/shanbay/badge.png
           :target: https://crate.io/packages/shanbay
        
        
        Changelog
        =========
        
        
        0.2.0 (2014-06-09)
        -------------------
        
        - [delete] ``shanbay.API``, 因为扇贝网不再支持 API v0.8, 并且新的 API 尚未释出
        - [change] 各 api 接口移除 @property 装饰器
        
        
        0.1.1 (2014-05-15)
        ------------------
        
        - [add] 站内消息 api
        - [add] 小组管理 api
        - [change] api 接口
        
        具体用法可以参考 tests/ 以及 python-shanbay-team-assistant_
        
        .. _python-shanbay-team-assistant:  https://github.com/mozillazg/python-shanbay-team-assistant/blob/develop/assistant.py
        
        
        0.1.0 (2014-03-31)
        ------------------
        
        - 封装 `扇贝网 API v0.8 <http://www.shanbay.com/help/developer/api>`__.
        
Keywords: shanbay,扇贝网
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Utilities
