Metadata-Version: 2.0
Name: mal-scraper
Version: 0.1.0
Summary: MyAnimeList web scraper
Home-page: https://github.com/QasimK/mal-scraper
Author: Qasim K
Author-email: QasimK@users.noreply.github.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Utilities
Provides-Extra: develop
Requires-Dist: tox; extra == 'develop'

========
Overview
========



 MyAnimeList web scraper is a Python library for gathering data for analysis.


Usage
=====

Use the [online documentation](https://mal-scraper.readthedocs.io/), and just::

    pip install mal-scraper


Development
===========

After cloning, and creating a virtualenv, install the development dependencies::

    pip install -e .[develop]

You should install Python interpreters 3.3, 3.4, 3.5, and pypy because tox will
test on all of them.
(Hints: `Linux <https://askubuntu.com/questions/125342/how-can-i-install-python-2-6-on-12-04>`_.)

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========

0.1.0 (2016-05-15)
-----------------------------------------

* First release on PyPI.


