stream-zip 0.0.83-3 source package in Ubuntu

Changelog

stream-zip (0.0.83-3) unstable; urgency=medium

  * debian/patches:
    - New 0004-Do-not-use-pyzipper.patch.
  * debian/control:
    - Temporarily drop dependency on pyzipper (only used in one test).
      It is not available for Python 3.13.

 -- Antonio Valentino <email address hidden>  Sun, 15 Dec 2024 08:03:46 +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 Pocket Published Component Section
Plucky release universe misc

Builds

Plucky: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
stream-zip_0.0.83-3.dsc 3.5 KiB 5bb75df005859dd9becc986392d7e14f4aa0ba21807d34867643371f4ef8f300
stream-zip_0.0.83.orig.tar.gz 123.4 KiB fa97c7517a1467d10849f3cb8771576f95e7e1cd517542c704e4daf08666bf59
stream-zip_0.0.83-3.debian.tar.xz 4.6 KiB 6374d45714e2f02fb19e729a9a3bb60a8b3f4dc3b00f12bd9a719eca9759512b

Available diffs

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)