|
Project Information
Members
Links
|
Python binding for LZJB compression algorithm (http://en.wikipedia.org/wiki/LZJB). Getting StartedInstallThe simplest way is to download compiled binaries and copy .pyd (for windows) or .so (for linux) to your python site-packages. You can compile by yourself using our project files (Visual Studio for Windows, Eclipse project or makefile for Linux). Exampleimport string import PyLZJB s = string.letters * 50000 c = PyLZJB.compress(s) print 'len(s): %ld, len(c): %ld' % (len(s), len(c)) d = PyLZJB.decompress(c) print d == s |