Generate Huffman codebooks
Project description
Generate Huffman codebooks! Huffman codes are the optimal way to compress individual symbols into a binary sequence that can be unambiguously decoded without inter-symbol separators (it is “prefix-free”).
Provided an iterable of 2-tuples in (symbol, weight) format, generate a Huffman codebook, returned as a dictionary in {symbol: code, ...} format.
>>> huffman.codebook([('A', 2), ('B', 4), ('C', 1), ('D', 1)) {'A': '10', 'B': '0', 'C': '110', 'D': '111'}
If you have an iterable of symbols, the collections.Counter is a handy way to tally them up.
>>> huffman.codebook(collections.Counter('man the stand banana man').items()) {' ': '111', 'a': '10', 'b': '0100', 'd': '0110', 'e': '11010', 'h': '0101', 'm': '1100', 'n': '00', 's': '11011', 't': '0111'}
Project details
Release history Release notifications | RSS feed
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 Distribution
File details
Details for the file huffman-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: huffman-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35234336f75b8ade2dbdd646c04d089ce79a0cc41724e02279103be864891a19 |
|
MD5 | 06c4f1387b129a780a4304b6ff353673 |
|
BLAKE2b-256 | c57299cf86630e26a02f2ee6ab649465fce7af7723635902cd79af91f6cc60e5 |