Skip to content

projeto-de-algoritmos-2019-2/project-3-pyhuff

Repository files navigation

PyHuff

PyPI format

Description

This package allows its users to shrink any ASCII based file using Huffman Code algorithm.


Installing

PyHuff is available in PyPi:

$ pip install pyhuff

Usage

To shrink a file named example.txt:

$ pyhuff example.txt

Two files will be created:

  • example.huff: the encoded file
  • example.tree.huff: the huffman tree used to encode the file

To restore the original file:

$ pyhuff example.huff example.tree.huff decoded_example.txt

In the example above, the decoded file will be created as decoded_example.txt. You can pass any filename as argument. Notice that, if the given file already exists, it will be overwritten.

To get help, simply call:

$ pyhuff

created by Durval Carvalho and Victor Moura

About

Shrink any ASCII based file using Huffman Code algorithm.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published