Re: read large zip file

2008-04-07 Thread Gabriel Genellina
En Tue, 08 Apr 2008 00:10:01 -0300, John Nagle <[EMAIL PROTECTED]> escribió: > Gabriel Genellina wrote: >> En Sun, 06 Apr 2008 19:20:31 -0300, Brian Blais <[EMAIL PROTECTED]> >> escribió: >> >>> I need to read a series of large zipfiles (which only contain one >>> large text file), and I noticed

Re: read large zip file

2008-04-07 Thread John Nagle
Gabriel Genellina wrote: > En Sun, 06 Apr 2008 19:20:31 -0300, Brian Blais <[EMAIL PROTECTED]> > escribió: > >> I need to read a series of large zipfiles (which only contain one >> large text file), and I noticed that the zipfile module: >> >> 1) has a read method which isn't an iterator, and ret

Re: read large zip file

2008-04-06 Thread Gabriel Genellina
En Sun, 06 Apr 2008 19:20:31 -0300, Brian Blais <[EMAIL PROTECTED]> escribió: > I need to read a series of large zipfiles (which only contain one > large text file), and I noticed that the zipfile module: > > 1) has a read method which isn't an iterator, and returns the entire > file selected al

read large zip file

2008-04-06 Thread Brian Blais
Hello, I need to read a series of large zipfiles (which only contain one large text file), and I noticed that the zipfile module: 1) has a read method which isn't an iterator, and returns the entire file selected all at once 2) has no readlines method, and no obvious way to implement one