stream-zip 0.0.82-2 source package in Ubuntu
Changelog
stream-zip (0.0.82-2) unstable; urgency=medium * debian/control: - Add dependency on architecture-is-64-bit. -- Antonio Valentino <email address hidden> Sun, 11 Aug 2024 06:49:36 +0000
Upload details
- Uploaded by:
- Debian GIS Project
- Uploaded to:
- Sid
- Original maintainer:
- Debian GIS Project
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Oracular | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
stream-zip_0.0.82-2.dsc | 3.6 KiB | f240f77658cf5fc4956f87b20afd2c2dd0d5283d67514113d368cbe322688cd3 |
stream-zip_0.0.82.orig.tar.gz | 125.2 KiB | a5afb228b747f85dd9a373aa8ee851f090f0918b8b61a62537b3086a9527fe1d |
stream-zip_0.0.82-2.debian.tar.xz | 4.2 KiB | 1fa4690d15e3314fed362a11a6c3ce4a42783816dcd13ddd444e90dd44bef90b |
Available diffs
- diff from 0.0.81-1 to 0.0.82-2 (4.4 KiB)
No changes file available.
Binary packages built by this source
- python3-stream-zip: Python function to construct a ZIP archive on the fly
Python function to construct a ZIP archive on the fly - without having
to store the entire ZIP in memory or disk.
This is useful in memory-constrained environments, or when you would
like to start returning compressed data before you've even retrieved
all the uncompressed data.
Generating ZIPs on-demand in a web server is a typical use case for
stream-zip.
.
In addition to being memory efficient (with some limitations) stream-zip:
.
- Constructs ZIP files that can be stream unzipped,
for example by stream-unzip
- Can construct Zip64 ZIP files. Zip64 ZIP files allow sizes far
beyond the approximate 4GiB limit of the original ZIP format
- Can construct ZIP files that contain symbolic links
- Can construct ZIP files that contain directories, including empty
directories
- Can construct password protected / AES-256 encrypted ZIP files
adhering to the WinZip AE-2 specification
- Allows the specification of permissions on the member files and
directories (although not all clients respect them)
- By default stores modification time as an extended timestamp.
An extended timestamp is a more accurate timestamp than the original
ZIP format allows
- Provides an async interface (that uses threads under the hood)