Metadata-Version: 1.1
Name: hatena-haiker
Version: 0.3.0
Summary: Hatena Haiku for Python 3
Home-page: https://github.com/saltcandy123/hatena-haiker/
Author: @saltcandy123
Author-email: saltcandy123+haiker@gmail.com
License: MIT License
Description: hatena-haiker: Hatena Haiku for Python 3
        ========================================
        
        .. image:: https://img.shields.io/pypi/v/hatena-haiker.svg
            :target: https://pypi.python.org/pypi/hatena-haiker
        
        
        hatena-haiker is an unofficial library
        for the `Hatena Haiku <http://h.hatena.ne.jp/>`_ API.
        
        
        Example
        -------
        
        .. code-block:: python
        
            import haiker
            auth = haiker.OAuth(
                'MyConsumerKey', 'MyConsumerSecret',
                'MyAccessToken', 'MyAccessTokenSecret'
            )
            api = haiker.Haiker(auth)
            for status in api.public_timeline(count=3):
                created_at = status.created_at.strftime('%Y-%m-%d %H:%M:%S')
                print(created_at, status.user.id, status.keyword)
        
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip3 install --upgrade hatena-haiker
        
        
        Documentation
        -------------
        
        After completing the installation, execute the following:
        
        .. code-block:: bash
        
            python3 -m pydoc haiker
        
        
Keywords: hatena haiku api
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
