Monkey patch the standard zipfile module to enable XZ support
Project description
zipfile-xz
Monkey patch the standard zipfile module to enable XZ support.
Based on zipfile-deflate64 and zipfile-zstandard, which provides similar functionality but for the deflate64 algorithm. Unlike zipfile-deflate64, this package supports both compression and decompression.
Note: if you need Python2, use zipfile39 instead (it is also compatible with Python3).
Note: XZ is based on LZMA2, so the compression ratio will be similar to ZIP_LZMA.
Installation
pip install zipfile-xz
Usage
Anywhere in a Python codebase:
import zipfile_xz # This has the side effect of patching the zipfile module to support XZ
Alternatively, zipfile_ppmd re-exports the zipfile API, as a convenience:
import zipfile_xz as zipfile
zipfile.ZipFile(...)
Compression example:
import zipfile_xz as zipfile
zf = zipfile.ZipFile('/tmp/test.zip', 'w', zipfile.ZIP_XZ, compresslevel=6)
zf.write('large_file.img')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file zipfile-xz-0.0.3.1.tar.gz.
File metadata
- Download URL: zipfile-xz-0.0.3.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/2.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1023a16ab88d91c633cbe8dbb8ba11870d9def7ebeb652fa07016bfd7e8f8135
|
|
| MD5 |
83edcc3c6577335fd7c65c8e199f868e
|
|
| BLAKE2b-256 |
8c44cd163cc080a5109b8ca55f6bd8c9c6168cf0b7423a3ada4b48046f9fbb2c
|