Skip to main content

Python bindings for libhuffman

Project description

libhuffman - The Huffman coding library

The Huffman library is a simple, pure C library for encoding and decoding data using a frequency-sorted binary tree. The implementation of this library is pretty straightforward, additional information regarding Huffman coding could be gained from the Wikipedia.

Installation

The build mechanism of the library is based on the CMake tool, so you could easily install it on your distribution in the following way:

$ sudo cmake install

By default the command above install the library into /usr/local/lib and all required headers into /usr/local/include. The installation process is organized using CMake. Just create a new directory build and generate required makefiles:

$ mkdir -p build
$ cmake ..

After that run the install target:

$ make install

Usage

At this moment only two methods for encoding and decoding are available. To encode the data from the file descriptor at the first step the configuration should be defined:

huf_read_writer_t *file_in;
huf_fdopen(&file_in, 0) // Read from standard input.

void *buf = NULL;
huf_read_writer_t *mem_out;
huf_memopen(&mem_out, &buf, HUF_1MIB_BUFFER);

huf_config_t config = {
   .reader = file_in,
   .writer = mem_out,
   .length = length,
   .blocksize = HUF_64KIB_BUFFER,
   .reader_buffer_size = HUF_128KIB_BUFFER,
   .writer_buffer_size = HUF_128KIB_BUFFER,
};
  • fdin - input file descriptor.
  • fdout - output file descriptor.
  • length - length of the data in bytes to encode.
  • blocksize - the length of each chunk in bytes (instead of reading the file twice libhuffman is reading and encoding the data by blocks).
  • reader_buffer_size - this is opaque reader buffer size in bytes, if the buffer size is set to zero, all reads will be unbuffered.
  • writer_buffer_size - this is opaque writer buffer size ib bytes, if the buffer size is set to zero, all writes will be unbuffered.

After the configuration is created, it could be passed right to the required function (to encode or to decode):

huf_error_t err = huf_encode(&config);
printf("%s\n", huf_error_string(err));

Python Bindings

Python bindings for libhuffman library are distributed as PyPI package, to install that package, execute the following command:

pip install huffmanfile

You can use the libhuffman for performant compression and decompression of Huffman encoding. The interface of the Python library is similar to the interface of the bz2 and lzma packages from Python's standard library.

Examples of usage

Reading in a compressed file:

import huffmanfile
with huffmanfile.open("file.hm") as f:
    file_content = f.read()

Creating a compressed file:

import huffmanfile
data = b"Insert Data Here"
with huffmanfile.open("file.hm", "w") as f:
    f.write(data)

Compressing data in memory:

import huffmanfile
data_in = b"Insert Data Here"
data_out = huffmanfile.compress(data_in)

Incremental compression:

import huffmanfile
hfc = huffmanfile.HuffmanCompressor()
out1 = hfc.compress(b"Some data\n")
out2 = hfc.compress(b"Another piece of data\n")
out3 = hfc.compress(b"Even more data\n")
out4 = hfc.flush()
# Concatenate all the partial results:
result = b"".join([out1, out2, out3, out4])

Note, random data tends to compress poorly, while ordered, repetitive data usually yields a high compression ratio.

License

The Huffman library is distributed under MIT license, therefore you are free to do with code whatever you want. See the LICENSE file for full license text.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

huffmanfile-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95.2 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

huffmanfile-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (28.0 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

huffmanfile-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95.2 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

huffmanfile-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (28.0 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

huffmanfile-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95.3 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

huffmanfile-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (28.0 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

huffmanfile-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95.1 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

huffmanfile-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (28.0 kB view hashes)

Uploaded CPython 3.7m 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