Skip to main content

Zopfli module for python

Project description

Travis Build Status Appveyor Build Status

PYZOPFLI

cPython bindings for zopfli.

USAGE

pyzopfli is a straight forward wrapper around zopfli’s ZlibCompress method.

from zopfli.zlib import compress
from zlib import decompress
s = 'Hello World'
print decompress(compress(s))

pyzopfli also wrapps GzipCompress, but the API point does not try to mimic the gzip module.

from zopfli.gzip import compress
from StringIO import StringIO
from gzip import GzipFile
print GzipFile(fileobj=StringIO(compress("Hello World!"))).read()

Both zopfli.zlib.compress and zopfli.gzip.compress support the following keyword arguements. All values should be integers; boolean parmaters are treated as expected, 0 and >0 as false and true.

  • verbose dumps zopfli debugging data to stderr

  • numiterations Maximum amount of times to rerun forward and backward pass to optimize LZ77 compression cost. Good values: 10, 15 for small files, 5 for files over several MB in size or it will be too slow.

  • blocksplitting If true, splits the data in multiple deflate blocks with optimal choice for the block boundaries. Block splitting gives better compression. Default: true (1).

  • blocksplittinglast If true, chooses the optimal block split points only after doing the iterative LZ77 compression. If false, chooses the block split points first, then does iterative LZ77 on each individual block. Depending on the file, either first or last gives the best compression. Default: false (0).

  • blocksplittingmax Maximum amount of blocks to split into (0 for unlimited, but this can give extreme results that hurt compression on some files). Default value: 15.

TODO

  • Stop reading the entire file into memory and support streaming

  • Monkey patch zlib and gzip so code with an overly tight binding can be easily modified to use zopfli.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zopfli-0.1.3.zip (75.8 kB view hashes)

Uploaded Source

Built Distributions

zopfli-0.1.3-cp36-cp36m-win_amd64.whl (41.1 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

zopfli-0.1.3-cp36-cp36m-win32.whl (35.1 kB view hashes)

Uploaded CPython 3.6m Windows x86

zopfli-0.1.3-cp36-cp36m-manylinux1_x86_64.whl (112.6 kB view hashes)

Uploaded CPython 3.6m

zopfli-0.1.3-cp36-cp36m-manylinux1_i686.whl (99.9 kB view hashes)

Uploaded CPython 3.6m

zopfli-0.1.3-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (66.9 kB view hashes)

Uploaded CPython 3.6m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

zopfli-0.1.3-cp35-cp35m-win_amd64.whl (41.1 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

zopfli-0.1.3-cp35-cp35m-win32.whl (35.1 kB view hashes)

Uploaded CPython 3.5m Windows x86

zopfli-0.1.3-cp35-cp35m-manylinux1_x86_64.whl (112.5 kB view hashes)

Uploaded CPython 3.5m

zopfli-0.1.3-cp35-cp35m-manylinux1_i686.whl (99.7 kB view hashes)

Uploaded CPython 3.5m

zopfli-0.1.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (66.9 kB view hashes)

Uploaded CPython 3.5m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

zopfli-0.1.3-cp27-cp27mu-manylinux1_x86_64.whl (110.1 kB view hashes)

Uploaded CPython 2.7mu

zopfli-0.1.3-cp27-cp27mu-manylinux1_i686.whl (98.2 kB view hashes)

Uploaded CPython 2.7mu

zopfli-0.1.3-cp27-cp27m-win_amd64.whl (35.9 kB view hashes)

Uploaded CPython 2.7m Windows x86-64

zopfli-0.1.3-cp27-cp27m-win32.whl (30.8 kB view hashes)

Uploaded CPython 2.7m Windows x86

zopfli-0.1.3-cp27-cp27m-manylinux1_x86_64.whl (110.1 kB view hashes)

Uploaded CPython 2.7m

zopfli-0.1.3-cp27-cp27m-manylinux1_i686.whl (98.2 kB view hashes)

Uploaded CPython 2.7m

zopfli-0.1.3-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (66.8 kB view hashes)

Uploaded CPython 2.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page