My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Links

Python binding for LZJB compression algorithm (http://en.wikipedia.org/wiki/LZJB).

Getting Started

Install

The 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).

Example

import 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        
Powered by Google Project Hosting