Skip to main content

improvements over the standard zipfile package

Project description

package ruamel.std.zipfile is a drop-in improvements over the standard zipfile package

You can just replace:

import zipfile

with:

import ruamel.std.zipfile as zipfile

The package includes InMemoryZipFile, which allows easy creation of ZIP files in memory, and allows for streaming or writing out to disc after full creation:

with InMemoryZipFile() as imz:
    imz.append("test.txt", "Another test").append("test2.txt", "Still another")
    with open('some_file.zip', 'wb') as fp:
        fp.write(imz.data)

which will write a two file ZIP file, the first file of which is named test.txt with content Another test. The .data content can also be dynamically returned to a web browser, etc.

File deletion from ZIP

Taking advantage of the delayed writing of InMemoryZipFile, the function delete_from_zip_file(file_name, pattern, file_names), takes a string or pathlib.Path as file_name.

Any files matching the pattern, if provided, are deleted from the file, as well as are any files matching file_names (a list of string/Path, single non-list instances are allowed).

The following deletes any files ending in .pth and the file tmp/README.rst from a ZIP file test.zip:

delete_from_zip_file('test.zip', pattern='.*.pth', file_names=['README.rst'])

or:

delete_from_zip_file('test.zip', pattern='.*.pth', file_names='README.rst')

or:

delete_from_zip_file('test.zip', pattern=re.compile('.*.pth'), file_names='README.rst')

Please note that this a ``re`` pattern not a ``glob`` pattern. You can, but don’t have to provide a pattern compiled with re.compile()

The ZIP file is recreated and recompressed, take this into account when deleting files (restrict the size of files you handle, combine patterns instead of doing multiple calls).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ruamel.std.zipfile-0.1.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

ruamel.std.zipfile-0.1.0-py2.py3-none-any.whl (6.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file ruamel.std.zipfile-0.1.0.tar.gz.

File metadata

File hashes

Hashes for ruamel.std.zipfile-0.1.0.tar.gz
Algorithm Hash digest
SHA256 d7cc5ffdb24897670305d616ff2d864dbfc00c55b9b37dec2d08d046c76d1a30
MD5 cf7153801cfd1211e3fb68c73f684b94
BLAKE2b-256 bdadf954e535b2ae686277be56a3164c4eb55743c469ad81750b0769a5718bb1

See more details on using hashes here.

File details

Details for the file ruamel.std.zipfile-0.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for ruamel.std.zipfile-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 797e000fef6da0f25005d9c666ca8564ec70b8bf8521ddf51ff4cca8c8b35b36
MD5 2e11b9a44d9ae4783bc8837b76686e6d
BLAKE2b-256 27167ed3633177023d6d186b9731128fa320d739f29defe47371db00ee1c75f9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page