Fork of Python zipfile module, adding generation of sozip optimization
Project description
sozipfile
sozipfile is a fork of Python zipfile module, from its implementation in CPython 3.11, which implements the SOZip optimization, when writing deflate compressed files whose size exceeds the chunk size (defaults to 32768 bytes). It also implements efficient seeking within a SOZip file.
Example to generate a SOZip-optimized file:
import sozipfile.sozipfile as zipfile
with zipfile.ZipFile('my.zip', 'w',
compression=zipfile.ZIP_DEFLATED,
chunk_size=zipfile.SOZIP_DEFAULT_CHUNK_SIZE) as myzip:
myzip.write('my.file')
Example to check if a file within a ZIP is SOZip-optimized:
import sozipfile.sozipfile as zipfile
with zipfile.ZipFile('my.zip', 'r') as myzip:
if myzip.getinfo('my.gpkg').is_sozip_optimized(myzip):
print('SOZip optimized!')
Available on pypi:
pip install sozipfile
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
sozipfile-0.3.2.tar.gz
(32.3 kB
view details)
Built Distribution
sozipfile-0.3.2-py3-none-any.whl
(31.1 kB
view details)
File details
Details for the file sozipfile-0.3.2.tar.gz
.
File metadata
- Download URL: sozipfile-0.3.2.tar.gz
- Upload date:
- Size: 32.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.8.1 requests/2.25.1 setuptools/69.0.2 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a06a981ac3ca5389a6e88fdd3633285f012918fc083f50b680d539ce460fa2ad |
|
MD5 | 2129875d2593e0c39f2196fd5fb2d0ec |
|
BLAKE2b-256 | 00ce3ba93f6d3e34b66e5b51eb3101cfb748ab5a5ea88a7de4db265998dc7ab1 |
File details
Details for the file sozipfile-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: sozipfile-0.3.2-py3-none-any.whl
- Upload date:
- Size: 31.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.8.1 requests/2.25.1 setuptools/69.0.2 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee7f7e7ddd0ff49543084883958961620d313fb91aac3e021d756c576d5c3825 |
|
MD5 | e5bb9d463c68ee992de5dd1dfa90fc62 |
|
BLAKE2b-256 | ab8d2ce407e9bc51969bb122e9cfa5f8199cb055951135608275d30deea3b02b |