Metadata-Version: 1.1
Name: hatena-haiker
Version: 0.4.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.
        
        
        Examples
        --------
        
        .. code-block:: python
        
            import haiker
            api = haiker.Haiker()
            for status in api.public_timeline(count=3, body_formats=['haiku']):
                created_at = status.created_at.strftime('%Y-%m-%d %H:%M:%S')
                print(created_at, status.user.id, status.keyword)
                print(status.haiku_text)
                print()
        
        .. code-block:: python
        
            import haiker
            auth = haiker.OAuth('MyConsumerKey', 'MyConsumerSecret',
                                'MyAccessToken', 'MyAccessTokenSecret')
            api = haiker.Haiker(auth)
            status = api.update_status('BOT', 'Hello, world!', source='API')
            api.add_star(status.id)
        
        
        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
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: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries
