python-diminuendo

A generic HTML minifier for python


Keywords
minify, html
License
BSD-3-Clause
Install
pip install python-diminuendo==0.1.1

Documentation

python-diminuendo - HTML minifier

This is a generic HTML minifier NOT using regular expressions. This minifier is fully HTML5 compatible.

The name is coming from the Harry Potter books and is an incantation that forces objects to shrink

This project was started because of the lack of a maintained HTML minifier not using complex regexp. This project uses beautifulsoup to navigate the HTML flow.

Testing Status Documentation Status license BSD 3-Clause

Install

$ pip install python-diminuendo

Usage

TODO

HTML minification

>>> from diminuendo import htmlmin
>>> html = """<html>
    <head>
        <title>Hello World!</title>
    </head>
    <body>
        <p>Good morning</p>
    </body>
</html>"""
>>> minified = htmlmin(html)
>>> print minified
'<html><head><title>Hello World!</title></head><body><p>Good morning</p></body></html>'

Development

Add a minification test

To add a minification test, simply add the html code as test_name.html and its minified version as test_name-minified.html in test/html.

Test

Test the package:

$ python -m unittest discover

Automatic testing in various environments:

$ tox

Release

Use bumpr to release the package:

$ bumpr -b -m
[...]
$ python setup.py sdist bdist_wheel upload

Project

Other projects

License

python-diminuendo is published under a BSD 3-clause license, see the LICENSE file distributed with the project.