Metadata-Version: 2.0
Name: MalCat
Version: 0.0.5
Summary: MAL list-to-text processing utility.
Home-page: https://github.com/Doomcat55/MalCat
Author: Doomcat55
Author-email: Doomcat55@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: cssselect
Requires-Dist: lxml
Requires-Dist: requests
Requires-Dist: six
Requires-Dist: enum34; python_version < "3.4"

MalCat
======

MalCat is a Python utility used as the backend for MalCat_, a CSS generator used for styling anime lists on MyAnimeList_.
It provides a quick and easy way to:

- fetch the contents of a user's anime/manga list
- format the list to a CSS template
- profit


Installation
------------

.. code:: bash

    $ pip install malcat


Usage
--------

.. code:: python

    from malcat.generator import MalCat

    generator = MalCat()
    css = generator.media('Doomcat55', 'anime', '#more$id { background-image: url($series_image); }')
    print(css)

Check MalCat's `MAL thread`__ for info on templates and parameters.

.. _MyAnimeList: https://myanimelist.net
.. _MalCat: https://myanimelist.net/forum/?topicid=1533260
__ MalCat_


