Metadata-Version: 1.1
Name: weiborobot
Version: 1.0.1
Summary: A weibo api for sending weibo automatically 
Home-page: https://github.com/haipersist/weibo
Author: Haibo Wang
Author-email: 393993705@qq.com
License: BSD
Description: 
        weiborobot
        -----
        
        the lib make you can send weibo entirly automatically.instead of getting code
        by url in the browser.
        you just input
        
        1.your weibo account:username and password
        2.app:app_key,app_secret
        
        ````````````
        
        Save in a hello.py:
        
        .. code:: python
        
            #-*-coding:utf-8-*-
            from weiborobot import WeiboRobot
        
        
            if __name__ == "__main__":
                 robot = WeiboRobot('****','***','***','***')
        	    text = 'test'
        	    robot.publish_text(text)
        
        And Easy to Setup
        `````````````````
        
        And run it:
        
        .. code:: bash
        
            $ pip install jobspider
            $ python hello.py
        
        
        Links
        `````
        * `development version
          <https://github.com/haipersist/weibo>`_
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
