Metadata-Version: 1.1
Name: Pybooru
Version: 3.0
Summary: Pybooru is a Python library to access API of Danbooru/Moebooru based sites.
Home-page: https://github.com/LuqueDaniel/pybooru
Author: Daniel Luque <danielluque14@gmail.com>
Author-email: danielluque14@gmail.com
License: MIT License
Description: Pybooru - Library for Danbooru/Moebooru API.
        ============================================
        .. image:: https://travis-ci.org/LuqueDaniel/pybooru.svg?branch=master
            :target: https://travis-ci.org/LuqueDaniel/pybooru
        
        Pybooru is a library for Python for access to API Danbooru/Moebooru based sites.
        
        Licensed under: **MIT License**.
        
        Examples of use
        ---------------
        .. code-block:: python
        
           from pybooru import Pybooru
        
           client = Pybooru('Konachan')
        
           artists = client.artists('ma')
        
           for artist in artists:
                print("Name: {0}".format(artist['name']))
           ..
        
        See more examples: https://github.com/LuqueDaniel/pybooru/tree/develop/examples
        
        Changelog
        ---------
        - https://github.com/LuqueDaniel/pybooru/blob/master/changelog.md
        
        Github repository
        -----------------
        - https://github.com/LuqueDaniel/pybooru
        
        More information
        ----------------
        - https://github.com/LuqueDaniel/pybooru/blob/master/README.markdown
        
Keywords: Pybooru moebooru danbooru API
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
