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

Reading And Compressing A Picture With Rle

Currently I am learning python and I'd like to get a little bit more into Data Compression. So … Read more Reading And Compressing A Picture With Rle

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

Python Zipfile Module Doesn't Seem To Be Compressing My Files

I made a little helper function: import zipfile def main(archive_list=[],zfilename='default.zi… Read more Python Zipfile Module Doesn't Seem To Be Compressing My Files

Speed Up Reading In A Compressed Bz2 File ('rb' Mode)

I have a BZ2 file of more than 10GB. I'd like to read it without decompressing it into a tempor… Read more Speed Up Reading In A Compressed Bz2 File ('rb' Mode)

Uncompressing Tar.Z File With Python?

I need to write a python script that retrieves tar.Z files from an FTP server, and uncompress them … Read more Uncompressing Tar.Z File With Python?