gzip-reader 0.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

gzipreader 0.1

Transparently decompress gzipped file stream on the fly.

Installation
pip install gzip-reader


Usage
from gzip_reader import GzipReader

fd = GzipReader(urlopen('http://example.com/some_file.gz'))
# or
fd = GzipReader(socket_conn.makefile('rb'))

for line in fd:
print line

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.