Skip to main content

Python function to stream unzip all the files in a ZIP archive, without loading the entire ZIP file into memory or any of its uncompressed files

Project description

stream-unzip CircleCI Test Coverage

Python function to stream unzip all the files in a ZIP archive, without loading the entire ZIP file into memory or any of its uncompressed files. Both AES and legacy (ZipCrypto/Zip 2.0) encrypted/password-protected ZIPs are supported.

While the ZIP format does have its main directory at the end, each compressed file in the archive is prefixed with a header that contains its name. Also, the Deflate algorithm that most ZIP files use indicates when it has reached the end of the stream of a member file. These facts make the streaming decompression of ZIP archives possible.

Installation

pip install stream-unzip

Usage

A single function is exposed, stream_unzip, that takes a single argument: an iterable that should yield the bytes of a ZIP file [with no zero-length chunks]. It returns an iterable, where each yielded item is a tuple of the file name, file size [None if this is not known], and another iterable itself yielding the unzipped bytes of that file.

from stream_unzip import stream_unzip
import httpx

def zipped_chunks():
    # Iterable that yields the bytes of a zip file
    with httpx.stream('GET', 'https://www.example.com/my.zip') as r:
        yield from r.iter_bytes(chunk_size=65536)

for file_name, file_size, unzipped_chunks in stream_unzip(zipped_chunks(), password=b'my-password'):
    # unzipped_chunks must be iterated to completion or UnfinishedIterationError will be raised
    for chunk in unzipped_chunks:
        print(chunk)

The file name and file size are extracted as reported from the file. If you don't trust the creator of the ZIP file, these should be treated as untrusted input.

Exceptions

Exceptions raised by the source iterable are passed through stream_unzip unchanged. Other exceptions are in the stream_unzip module, and derive from its UnzipError.

Exception hierarchy

  • UnzipError

    Base class for all explicitly-thrown exceptions

    • InvalidOperationError

      • UnfinishedIterationError

        The unzipped chunks iterator of a member file has not been iterated to completion.

    • UnzipValueError (also inherits from the ValueError built-in)

      Base class for errors relating to invalid arguments

      • PasswordError

        • MissingPasswordError

          A file requires a password, but it was not supplied.

          • MissingZipCryptoPasswordError

            A file is legacy (ZipCrypto/Zip 2.0) encrypted, but a password was not supplied.

          • MissingAESPasswordError

            A file is AES encrypted, but a password was not supplied.

          • IncorrectPasswordError

            An incorrect password was supplied. Note that due to nature of the ZIP file format, some incorrect passwords would not raise this exception, and instead raise a DataError, or even in pathalogical cases, not raise any exception.

            • IncorrectZipCryptoPasswordError

              An incorrect password was supplied for a legacy (ZipCrypto/Zip 2.0) encrypted file.

            • IncorrectAESPasswordError

              An incorrect password was supplied for an AES encrypted file.

      • DataError

        An issue with the ZIP bytes themselves was encountered.

        • UnsupportedFeatureError

          A file in the ZIP uses features that are unsupported.

          • UnsupportedFlagsError

          • UnsupportedCompressionTypeError

        • UncompressError

          • DeflateError

            An error in the deflate-compressed data meant it could not be decompressed.

        • IntegrityError

          • HMACIntegrityError

            The HMAC integrity check on AES encrypted bytes failed

          • CRC32IntegrityError

            The CRC32 integrity check on decrypted and decompressed bytes failed.

        • TruncatedDataError

          The stream of bytes ended unexpectedly.

        • UnexpectedSignatureError

          Each section of a ZIP file starts with a signature, and an unexpected one was encountered.

        • MissingExtraError

          Metadata known as extra that some ZIP files require is missing.

          • MissingZip64ExtraError

          • MissingAESExtraError

        • TruncatedExtraError

          Metadata known as extra that some ZIP files require is present, but too short.

          • TruncatedZip64ExtraError

          • TruncatedAESExtraError

        • InvalidExtraError

          Metadata known as extra that some ZIP files require is present, long enough, but holds an invalid value.

          • InvalidAESKeyLengthError

            AES key length specified in the ZIP is not any of 1, 2, or 3 (which correspond to 128, 192, and 256 bits respectively).

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

stream-unzip-0.0.65.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

stream_unzip-0.0.65-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file stream-unzip-0.0.65.tar.gz.

File metadata

  • Download URL: stream-unzip-0.0.65.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6

File hashes

Hashes for stream-unzip-0.0.65.tar.gz
Algorithm Hash digest
SHA256 efdd447b66072a1502982a8503e34bdcc22796beb8b3f4786664db52de91ef2b
MD5 80372aed23cc191805da633f8d8e1652
BLAKE2b-256 42bc1151b085a6dae945b9d1bd0fc6552adf8e817f1936378ba460c51332d2f0

See more details on using hashes here.

File details

Details for the file stream_unzip-0.0.65-py3-none-any.whl.

File metadata

  • Download URL: stream_unzip-0.0.65-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6

File hashes

Hashes for stream_unzip-0.0.65-py3-none-any.whl
Algorithm Hash digest
SHA256 3776b12c0cf6efd8c82c9cfc20d2f9a91c5670165040a7fa0ff1c04b369b7222
MD5 dc27ff1f19f014a3d712a4339b624b7f
BLAKE2b-256 3675d6c14197fa2109ceb55c39a31b8caa57e62dd8d667b8140901ebb09ad5d2

See more details on using hashes here.

Supported by

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