Skip to content Skip to sidebar Skip to footer
Showing posts with the label Compression

Uncompressing A .z File With Python

I'm trying to uncompress a *.Z file using Python. I downloaded it via FTP (binary mode). The fi… Read more Uncompressing A .z File With Python

Zip File With Ppmd Compression, Programmatically Unzip

I have a Linux Python script that needs to unzip some zip files. I was using the zipfile module. … Read more Zip File With Ppmd Compression, Programmatically Unzip

Lempel-ziv Compression Algorithm Implemention

I wrote the following code for implementing lempel-ziv compression algorithm for the following samp… Read more Lempel-ziv Compression Algorithm Implemention

How To Decompress Bytes In Python Using Lzo-1.0.8 ( Python 2.7.9)?

I have a compressed byte array received from network and it is LZO Compressed. I need to decompress… Read more How To Decompress Bytes In Python Using Lzo-1.0.8 ( Python 2.7.9)?

Uncompressing A .Z File With Python

I'm trying to uncompress a *.Z file using Python. I downloaded it via FTP (binary mode). The fi… Read more Uncompressing A .Z File With Python

Stream A Large File From URL Straight Into A Gzip File

I want to stream a large file into a gzip file directly, instead of downloading it all into memory … Read more Stream A Large File From URL Straight Into A Gzip File

How To Unpack Xz File With Python Which Contains Only Data But No Filename?

I have a file, which I can decompress under linux using the following command: unxz file.txt How … Read more How To Unpack Xz File With Python Which Contains Only Data But No Filename?