A python port of YUI CSS Compressor
.. image:: https://travis-ci.org/sprymix/csscompressor.svg?branch=master :target: https://travis-ci.org/sprymix/csscompressor
Almost exact port of YUI CSS Compressor. Passes all original unittests.
.. code:: pycon
>>> from csscompressor import compress
>>> compress('''
... your css {
... content: "!";
... }
... ''')
'your css{content:"!"}'
Or, if you want to use it from command line:
.. code::
$ python3 -m csscompressor --help
Tested under Python 2.7 and 3.3+
Use pip
or easy_install
:
.. code::
$ pip install csscompressor
Use py.test to run unittests
Published under the original Yahoo License for YUI Compressor -- BSD.