I know how to extract a zip archive using Python, but how exactly do I display the progress of that extraction in a percentage?

link|improve this question

Any graphics framework you're planning on using? – S.Lott Dec 3 '10 at 1:05
Tkinter, if thats what your talking about. All I need is to be able to display the Text percentage. – Zachary Brown Dec 3 '10 at 1:06
1  
A somewhat dirty workaround is to spawn the extraction in a separate process, monitor the files being extracted from the main thread, sum their sizes and divide by ZipInfo.file_size – Novikov Dec 3 '10 at 1:26
feedback

1 Answer

up vote 3 down vote accepted

the extract method doesn't provide a call back for this so one would have to use getinfo to get the e uncompressed size and then open the file read from it in blocks and write it to the place you want the file to go and update the percentage one would also have to restore the mtime if that is wanted an example:

import zipfile
z = zipfile.ZipFile(some_source)
entry_info = z.getinfo(entry_name)
i = z.open(entry_name)
o = open(target_name, 'w')
offset = 0
while True:
    b = i.read(block_size)
    offset += len(b)
    set_percentage(float(offset)/float(entry_info.file_size) * 100.)
    if b == '':
        break
    o.write(b)
i.close()
o.close()
set_attributes_from(entry_info)

this extracts entry_name to target_name


most of this is also done by shutil.copyfileobj but it doesn't have a call back for progress either

the source of the ZipFile.extract method calls _extract_member uses:

source = self.open(member, pwd=pwd)
target = file(targetpath, "wb")
shutil.copyfileobj(source, target)
source.close()
target.close()

where member has be converted from a name to a ZipInfo object by getinfo(member) if it wasn't a ZipInfo object

link|improve this answer
OK, cool. I like this. Only thing is, my archive contains folders, but for some reason it won't extract them. It raises the exception stating that the file doesn't exist. – Zachary Brown Dec 3 '10 at 2:07
folders don't exist in zip files as the file entries names are path names i.e some/path/to/some/file would be the name of a file and there are no entries for the directories – Dan D. Dec 3 '10 at 2:10
I got it. I used the extract method in the zipfile module... along with some use of the OS module. Thanks. – Zachary Brown Dec 3 '10 at 2:17
I'm not quite understanding your example above. Where exactly is the extraction taking place? – Zachary Brown Dec 3 '10 at 2:18
Oh, got it. Thanks! – Zachary Brown Dec 3 '10 at 2:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.