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.

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 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()):
    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.

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.25.tar.gz (4.5 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.25-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: stream-unzip-0.0.25.tar.gz
  • Upload date:
  • Size: 4.5 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.20.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.3

File hashes

Hashes for stream-unzip-0.0.25.tar.gz
Algorithm Hash digest
SHA256 a953632fd62cd366b34a9e533303b2dbc6b6f8c41a017a1d5a2040e8e5ad2f23
MD5 f861d174946a0ece5533aad17779bb37
BLAKE2b-256 3ffed2c2315c0533a7839d6681593ea0da2dc518d980610bd645f0aad1abb875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: stream_unzip-0.0.25-py3-none-any.whl
  • Upload date:
  • Size: 4.8 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.20.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.3

File hashes

Hashes for stream_unzip-0.0.25-py3-none-any.whl
Algorithm Hash digest
SHA256 88189263dc7000ef6a144743cb1ef0e526867725c137b64f8766879981fd99c6
MD5 3d0de20bb7314ed40398fe8ad7e104b3
BLAKE2b-256 6da11fd9fb7a0f4889b87b7f5bf11567d1ab521deced91b42bb590da1ea1c2db

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