Compression library

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • roche.alexis@gmail.com

    #1

    Compression library

    Hi all,
    I'm looking for a library in python containing severall compression
    algorithms like RLE, Deflate, LZ77-78-W, Huffman,......
    do someone know if such of this type of lib exists??

    Thanks

  • John Machin

    #2
    Re: Compression library

    On Feb 16, 8:02 pm, roche.ale...@gm ail.com wrote:
    Hi all,
    I'm looking for a library in python containing severall compression
    algorithms like RLE, Deflate, LZ77-78-W, Huffman,......
    do someone know if such of this type of lib exists??
    Short answer: Yes

    Longer answer: You too could know if you were to get off your
    fundament and get onto your googler ... e.g. 2nd hit from search for
    "python compression" is

    """
    Compression algorithms in python - by David MacKay
    This page offers a library of compression algorithms in python. ...
    """


    Comment

    Working...