Skip to content

valueof/pycssmin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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}'

About

CSS minification tool written in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages