Karl D'Adamo <karld-pyt...@ofb.net> added the comment: This patch is awesome. It makes it possible to do this with http response objects that return gzipped streams:
>>> conn = httplib.HTTPConnection('blah') >>> req = conn.request('GET', 'a.gz') >>> resp = conn.getresponse() >>> unzipper = gzip.GzipFile(fileobj=resp) # read just the first 100 lines >>> for i in range(100): print unzipper.readline() ---------- nosy: +karld _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue1675951> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com