pycompressor 0.0.2

Creator: railscoderz

Last updated:

Add to Cart

Description:

pycompressor 0.0.2

pycompressor
Package provides python implementation of string compressor





Install
Run the following command to install pycompressor using pip
$ pip install pycompressor


Usage:
from pycompressor.huffman import HuffmanCompressor
huffman = HuffmanCompressor()
original = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.'
print('before compression: ' + original)
print('length: ' + str(len(original)))
compressed = huffman.compress_to_string(original)
print('after compression: ' + compressed)
print('length: ' + str(len(compressed)))
decompressed = huffman.decompress_from_string(compressed)
print('after decompression: ' + decompressed)
print('length: ' + str(len(decompressed)))

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.