Metadata-Version: 2.0
Name: Pybooru
Version: 4.0.0-a
Summary: Pybooru is a Python package to access to the API of Danbooru/Moebooru based sites.
Home-page: https://github.com/LuqueDaniel/pybooru
Author: Daniel Luque <danielluque14[at]gmail[dot]com>
Author-email: danielluque14@gmail.com
License: MIT License
Keywords: Pybooru moebooru danbooru API client
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: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Requires-Dist: requests

Pybooru - Package for Danbooru/Moebooru API.
============================================
.. image:: https://img.shields.io/pypi/v/Pybooru.svg?style=flat-square
.. image:: https://img.shields.io/pypi/status/Pybooru.svg?style=flat-square
.. image:: https://img.shields.io/pypi/l/Pybooru.svg?style=flat-square
     :target: https://raw.githubusercontent.com/LuqueDaniel/pybooru/master/LICENSE
.. image:: https://img.shields.io/pypi/wheel/Pybooru.svg?style=flat-square
.. image:: https://img.shields.io/pypi/format/Pybooru.svg?style=flat-square


Licensed under: **MIT License**.

Examples of use
---------------
.. code-block:: python
  from pybooru import Danbooru

   client = Danbooru('danbooru')
   artists = client.artist_list('ma')

   for artist in artists:
        print("Name: {0}".format(artist['name']))
..

See more examples of `Danbooru <https://github.com/LuqueDaniel/pybooru/tree/develop/examples/danbooru>`_ and `Moebooru <https://github.com/LuqueDaniel/pybooru/tree/develop/examples/moebooru>`_.

Documentation
-------------
You can consult the documentation on `Read the Docs <http://pybooru.readthedocs.io/en/stable/>`_

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


