Issue 6004: ZipFile.writestr "compression_type" argument (original) (raw)
Issue6004
Created on 2009-05-12 09:36 by ronaldoussoren, last changed 2022-04-11 14:56 by admin. This issue is now closed.
Messages (2) | ||
---|---|---|
msg87611 - (view) | Author: Ronald Oussoren (ronaldoussoren) * ![]() |
Date: 2009-05-12 09:36 |
Class zipfile.ZipFile has two methods for adding data to a zipfile: 'write' and 'writestr'. The former has a "compression_type" argument that can be used to specify the compression to be used. That latter doesn't have that argument. Could a "compression_type" argument be added to "writestr" as well? I regularly create zipfiles from scratch using the writestr method to add content and currently have to modify the 'compression' attribute of the zipfile object to control compression and that leads to ugly code. The other alternative is to use a ZipInfo object as the archive-name of the newly added file, but that leads to even uglier code. | ||
msg87612 - (view) | Author: Ronald Oussoren (ronaldoussoren) * ![]() |
Date: 2009-05-12 09:43 |
Too impatient while submitting the report... |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:56:48 | admin | set | github: 50254 |
2009-05-12 09:43:40 | ronaldoussoren | set | status: open -> closedresolution: duplicatemessages: + |
2009-05-12 09:36:49 | ronaldoussoren | create |