Metadata-Version: 2.0
Name: django-html-dumper
Version: 0.1.11
Summary: Dumps html pages and their corresponding assets into a tar file
Home-page: https://github.com/adrienbrunet/django-html-dumper
Author: Adrien Brunet
Author-email: adrien@emencia.com
License: MIT
Keywords: django-html-dumper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

=============================
HTML dumper
=============================

.. image:: https://badge.fury.io/py/django-html-dumper.svg
    :target: https://badge.fury.io/py/django-html-dumper

.. image:: https://travis-ci.org/adrienbrunet/django-html-dumper.svg?branch=master
    :target: https://travis-ci.org/adrienbrunet/django-html-dumper

.. image:: https://codecov.io/gh/adrienbrunet/django-html-dumper/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/adrienbrunet/django-html-dumper

Dumps html pages and their corresponding assets into a tar file

Documentation
-------------

The full documentation is at https://django-html-dumper.readthedocs.io.

Quickstart
----------

Install HTML dumper::

    pip install django-html-dumper

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'html_dumper.apps.HtmlDumperConfig',
        ...
    )

Add HTML dumper's URL patterns:

.. code-block:: python

    from html_dumper import urls as html_dumper_urls


    urlpatterns = [
        ...
        url(r'^', include(html_dumper_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2017-08-14)
++++++++++++++++++

* First release on PyPI.


