Re: Unzipping Files

2005-04-01 Thread Larry Bates
Use something like:

import zipfile
zfile=zipfile.ZipFile(zipfilename,'r')
contents=zfile.read(filenametoread)

Stripped out of a working program, but not tested.

-Larry Bates


Greg Lindstrom wrote:
> Hello-
> I am trying to read a file from a zip archive.  I have read the
> documentation on zipfile and can read the names of the files in the
> archive and the length of each file, but do not see how to get to the
> actual data from any given file.  This is probably so simple that it
> hurts, so take it easy on me if you please...I just don't see it and
> have a deadline rushing towards me.  How do I read the data from a file
> in a zip archive?
> 
> Thanks!
> --greg
> 
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Unzipping Files

2005-04-01 Thread Swaroop C H
On Apr 1, 2005 8:14 PM, Greg Lindstrom <[EMAIL PROTECTED]> wrote:
> How do I read the data from a file in a zip archive?

http://www.devshed.com/c/a/Python/Python-UnZipped

Regards,
-- 
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
-- 
http://mail.python.org/mailman/listinfo/python-list


Unzipping Files

2005-04-01 Thread Greg Lindstrom
Hello-
I am trying to read a file from a zip archive.  I have read the 
documentation on zipfile and can read the names of the files in the 
archive and the length of each file, but do not see how to get to the 
actual data from any given file.  This is probably so simple that it 
hurts, so take it easy on me if you please...I just don't see it and 
have a deadline rushing towards me.  How do I read the data from a file 
in a zip archive?

Thanks!
--greg
--
Greg Lindstrom   501 975.4859 (office)
Senior Programmer501 219-4455 (fax)
NovaSys Health   [EMAIL PROTECTED]
Little Rock, Arkansas
"We are the music makers, and we are the dreamers of dreams."  W.W.
--
http://mail.python.org/mailman/listinfo/python-list