Skip to main content

compress or decompress with huffman

Project description

Install from source:

  • $ python setup.py build
  • $ python setup.py install

Usage:

  • compress & decompress:
    python example:
#-*- coding:utf-8 -*-
import PycHuffman as huffman


def run_test():
    file_in = 'original_file.jpg'
    file_out = 'compressed_file.hum.bin'
    file_out_out = 'decompressed_file.hum.jpg'
    rtn = huffman.compress(file_in, file_out)
    print('compress return:', rtn)
    rtn = huffman.decompress(file_out, file_out_out)
    print('decompress return:', rtn)



if __name__ == '__main__':
    run_test()

Upload PyPI

  • $ python -m pip install --user --upgrade setuptools wheel twine
  • $ python setup.py sdist bdist_wheel
  • $ python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

Upload TestPyPI

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

PycHuffman-1.1.0.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

PycHuffman-1.1.0-cp37-cp37m-win32.whl (8.9 kB view hashes)

Uploaded CPython 3.7m Windows x86

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