An open API service indexing awesome lists of open source software.

https://github.com/valueof/pycssmin

CSS minification tool written in Python
https://github.com/valueof/pycssmin

Last synced: about 1 year ago
JSON representation

CSS minification tool written in Python

Awesome Lists containing this project

README

          

# PyCssMin

This is a CSS minification tool. It is a Python port of cssmin.js,
which is a JavaScript port of the Java CSS minifier distributed with
YUICompressor, which is itself a port of the PHP cssmin utility.

### Usage

```
from cssmin import cssmin

cssmin("""
body {
color: #FFFFFF;
}
""")
> 'body{color:#fff}'