Skip to main content

Uncompress DEFLATE streams in pure Python (albeit compiled with Cython)

Project description

stream-inflate PyPI package Test suite Code coverage

Uncompress Deflate and Deflate64 streams in pure Python (albeit compiled with Cython).

Installation

pip install stream-inflate

Usage

To uncompress Deflate, use the stream_inflate function.

from stream_inflate import stream_inflate
import httpx

def compressed_chunks():
    # Iterable that yields the bytes of a DEFLATE-compressed stream
    with httpx.stream('GET', 'https://www.example.com/my.txt') as r:
        yield from r.iter_raw(chunk_size=65536)

for uncompressed_chunk in stream_inflate()[0](compressed_chunks()):
    print(uncompressed_chunk)

To uncompress Deflate64, use the stream_inflate64 function.

for uncompressed_chunk in stream_inflate64()[0](compressed_chunks()):
    print(uncompressed_chunk)

For Deflate streams of unknown length where there may be other data after the compressed part, the following pattern can be used to find how many bytes are not part of the compressed stream.

uncompressed_chunks, is_done, num_bytes_unconsumed = stream_inflate()
it = iter(compressed_chunks())

while not is_done():
    chunk = next(it)
    for uncompressed in uncompressed_chunks((chunk,))
        print(uncompressed)

print(num_bytes_unconsumed())

This can be useful in certain ZIP files.

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

stream_inflate-0.0.43.tar.gz (170.5 kB view details)

Uploaded Source

Built Distributions

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

stream_inflate-0.0.43-cp314-cp314-win_amd64.whl (91.4 kB view details)

Uploaded CPython 3.14Windows x86-64

stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_x86_64.whl (696.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_armv7l.whl (674.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_aarch64.whl (676.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (692.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (694.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp314-cp314-macosx_10_15_universal2.whl (214.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp313-cp313-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.13Windows x86-64

stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_x86_64.whl (708.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_armv7l.whl (690.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_aarch64.whl (675.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_x86_64.whl (692.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_aarch64.whl (683.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (695.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (707.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp313-cp313-macosx_10_13_universal2.whl (194.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (105.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (96.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphoneos.whl (93.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

stream_inflate-0.0.43-cp312-cp312-win_amd64.whl (90.3 kB view details)

Uploaded CPython 3.12Windows x86-64

stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_x86_64.whl (708.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_armv7l.whl (691.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_aarch64.whl (678.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_x86_64.whl (699.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_aarch64.whl (692.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (701.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (712.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp312-cp312-macosx_10_13_universal2.whl (214.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp311-cp311-win_amd64.whl (89.1 kB view details)

Uploaded CPython 3.11Windows x86-64

stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_x86_64.whl (687.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_armv7l.whl (672.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_aarch64.whl (676.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_x86_64.whl (679.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_aarch64.whl (681.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (691.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (695.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp311-cp311-macosx_10_9_universal2.whl (212.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp310-cp310-win_amd64.whl (88.9 kB view details)

Uploaded CPython 3.10Windows x86-64

stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_x86_64.whl (660.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_armv7l.whl (642.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_aarch64.whl (648.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_x86_64.whl (660.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_aarch64.whl (656.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (659.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp310-cp310-macosx_10_9_universal2.whl (194.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp39-cp39-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.9Windows x86-64

stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_x86_64.whl (663.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_armv7l.whl (644.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_aarch64.whl (651.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_x86_64.whl (662.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_aarch64.whl (660.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp39-cp39-macosx_10_9_universal2.whl (195.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp38-cp38-win_amd64.whl (90.8 kB view details)

Uploaded CPython 3.8Windows x86-64

stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_x86_64.whl (711.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_armv7l.whl (686.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_aarch64.whl (697.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_x86_64.whl (739.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_aarch64.whl (733.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (702.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (707.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

stream_inflate-0.0.43-cp38-cp38-macosx_11_0_universal2.whl (222.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ universal2 (ARM64, x86-64)

stream_inflate-0.0.43-cp37-cp37m-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_x86_64.whl (587.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_armv7l.whl (563.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_aarch64.whl (571.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_x86_64.whl (561.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_aarch64.whl (558.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

stream_inflate-0.0.43-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

stream_inflate-0.0.43-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

File details

Details for the file stream_inflate-0.0.43.tar.gz.

File metadata

  • Download URL: stream_inflate-0.0.43.tar.gz
  • Upload date:
  • Size: 170.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stream_inflate-0.0.43.tar.gz
Algorithm Hash digest
SHA256 840913d318369653aef8f6bf87f893d4d8399bfe24b5d5c255b4e0835bfa544a
MD5 c5810111c4b1e35348bf76d29c8184bf
BLAKE2b-256 3b7e3bbc35054aad937dc267d6d0b96a9f39f60b41e39aa62d884bd72551404b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43.tar.gz:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9bebbd7f7174de4e7a65f288970c64696706cb4a29b495f5c7f5732c0b2b653e
MD5 1b250a31dcb94619fb5bddea16c5b2d6
BLAKE2b-256 5d413aa048f215d06a0b900d369d52995210575d7f5b6bb765bd4535fe2b291d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53b46e5b91b6a0da7ec156348904d4224c0aeccb012f175fb7cf6572bf1fbc3a
MD5 d8ab2457b777a400e468a857e841e41d
BLAKE2b-256 6f812b0f1402555e986f2299778ad3324a3b58a55e6106caed018118340bbc12

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41156181b0051f8b757d64df879f60ff1ae83141faf7292ac1a76abbe4e8283e
MD5 b0a2513b01aa8941a7d2753cd92d67eb
BLAKE2b-256 c0dce9568843cf5627c1a4ff1fea2899425ba4cd513897f93c8133262e6b8f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51b878c4791dc4bfd4f2e88ad7b36072db41d9a56c513b30268c0b0d4ab3f5c3
MD5 5d652a7d222f7c66f91ce75ae93c3c2e
BLAKE2b-256 05c4adf3ac90e3146683e6abc910bccf1299b0dc3e266cc6d561badaab93ddbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7a7b363f6eb508d7ae6c4390cf105ca908119a4042abb1f82ba4254148f6a144
MD5 7e029cb224dea5514a6cdc99e6738b94
BLAKE2b-256 f64bc49c921823f0377288578676dc964aa91b6096361ba65e975ae3925a5927

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f9253bb33c799412a1ff6a6cec8314a75f2900e0c7448f9b09675a80571ef422
MD5 9170834d4b1cc9d6d691f27b883b7f05
BLAKE2b-256 ff7babf31be8c350dd6c728f79261eb6756b3762f8c75996e926a2e55da3418f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 db574ba3df27e770737ab215cb59421b7e836a0ec6e90bdc30ee721f27628f8d
MD5 1d07a245ed7f80d64007cc4ba6b5de83
BLAKE2b-256 5154c61ed66bc7f6545f0d8cf0e20dd97d672f85aac629bc94ee8bf229eeada3

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4361b8843845919182792695be02dc836eeec1d74d3e32c71bbaa8ce4d44979
MD5 0ccfd690c29ee38f51def696f5d7afa2
BLAKE2b-256 d0609927c20740dd9fbff8a21dafa9a8ee5d73e9f2109fbda3fe4d432e9ccff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0079312d23d9a3bfb7b509ba8826e6f6f70e6c0228df666117e093e6661e8f5
MD5 56ac9ad1e83a216fe8af9edd484ca011
BLAKE2b-256 807ea01d6274c4eaf646ef56a88fa541606cb07ca48118af7b01b314bdc198c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 74a579a2e561b21198ea5756025a8f60425d816d7b8f21a825057d15625c918a
MD5 7664622a24ba2d9e9ede7a7d08eaeed9
BLAKE2b-256 4332bba908fbcaafb17aa1b5533897ceb469c614a2831449395ba0905afde9d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c49c94d5e3017573f2a8c359557a95d93a55af3f0d1feb3f33303c71ce95537c
MD5 8744e9efad7af84f2622e2e5dac00850
BLAKE2b-256 15bc40529e62c43feefdea64541285d1c97fa83cfe635eefdb01f4b3f1043e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9917d9cdad93343b8ca618629292f1a3b7559e9552e5d86b55deaa6e78db5406
MD5 49c6bf1a166652e716218494ca45202c
BLAKE2b-256 68705c50ac903c57274425b3e9742725742fd04db73794218142493c5575bc28

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e7d8ed328b652501b9d0d1d3e3efb0d86e74ef72acbdaa44067149a28febb863
MD5 9390817f9126dbc22f46221837d58917
BLAKE2b-256 8949da074edca8f8aabdf228a14f3a048af225ea1c5fc319953ee69a9035d24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ed5f569fa21ab343c2e2f4c88f9bf60f4424dc921815d0a94d32a87c665bf8b
MD5 d2c4e1bfa1164195e4d976f9b27a0a37
BLAKE2b-256 0cb6d04f436f320987ec73a7dfdf5ec87fa3e6bd378503454e65e5e3ad059d56

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 375111ade63156ad59634bf747fc6a27d5610da41de14b0366d136787856b7dd
MD5 7c690336319ad8d122a11341e973fe3e
BLAKE2b-256 18dcbb0dea372951aad8a06ef1660658ae79f0c3fc3ea5d01bb25c4724114560

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a86cb3893180a73083efa592df81b57f73cc61acee1d33ac14a19f37b0e62fd7
MD5 aadc96abde829e2aed8723fcacc1def0
BLAKE2b-256 d29cb8ac6461f0a8d7820b77c1c0a55fdfbb04e319175bbb039aba1cf62477ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 35d3a953f8115653e0719e58e8beddec1655574b5ec8f7e73ce88467f7611ffb
MD5 a0f3eaf22118d319ef057b5ea474fca2
BLAKE2b-256 943c2c565a99a4edade081bb586962a377c6ea3df92e34c8ad6f8a6fe7345ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 bca603ba3e5e47237a273e956d9b9274a414d459092b903f126802f67b4bb6c6
MD5 fbb98b9828f05bff70d807ab063b9e0b
BLAKE2b-256 a21c1e78297ddb8d2e6ea06255a887de1c021f0d9a410a485aef03405e119721

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 45f135b57872005da281e8da4b9eb5056b9e48d8fc91ab45fd87f4ff9de48b9a
MD5 8fbfe7a5e6ce4e5c2cd0b55bf2d034b3
BLAKE2b-256 5db47ff18a8a0615ca50dca52e6fc48862a153fa662e84f84db6f52552582a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a53914e6df258764c1e6dbb45e8c1d0c67bfb2d393b5cae060da6fd367829435
MD5 7793cf1f6f6542a87259536f242ed629
BLAKE2b-256 97539b043ac4938b618ffb05732701be2588f285eb829402b563ebb244ae1cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b300ca8b27fe98bf8c1568221f341f7d9a1307c2f75388a51fe48e3ab22f365b
MD5 62f831f84f5b876928fbcf987212c5cc
BLAKE2b-256 23f7b0106a55bb7636b94981e1a863a6afac59fb1e9947a43e8470637e7fe42a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88baae307947fbd4c327a20e02df3a89f5fedd615179e93e73f13e2e11aaf7ed
MD5 5136c7e20494a80431452d92ce37c661
BLAKE2b-256 8f628eadc7533fc39b9a9617a35deba9ccbe9b27a236ea4da860c4c600fadc0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82cc6a45fdf730a29ef862a3599fe50c17525ca006ef6d3e77e325ce48ede620
MD5 a63a21db221e5d5dd3fd2c9e02471242
BLAKE2b-256 b7a8be9af98f9df2f991179210e3ee206c634b2d309b65d1138a35e66cf47375

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 705e3974338ec917bbd1b881553408a80e9448497081ea60d1b4dbeca5ad18fc
MD5 af995478c766f37b9c46af2ec6d970f2
BLAKE2b-256 dc4b1765b8f326a9cf40388aa7b4775a8c6d8b98400f558f196d709ced15119a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de97f6d7d898f4711ad52f17cb4fc9845d5aad37724f48d4d6be3d053ec32cc3
MD5 47f120fe88a281abdae08b91451a2c98
BLAKE2b-256 855766e5f538f71c2e48c38fc6b41c98862687effe08fa8a56104439a9c65e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29bc0c6be5f277bb1434c1b9b194862d3fa452ae1572edce3b8b003fd6feeed3
MD5 98cfaba9af01e86ce13d67b833ac8018
BLAKE2b-256 2dafc17acbc48f1d5f876f76c1731bfdddbfade3cdf8c45ebdbe528a17269e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2da930d26124c2980dd04a11aa89434ae225d00f76d2514ecf4996ebc17f4363
MD5 e7c7af6daecf14eef14f94cc77be40c4
BLAKE2b-256 00e6f96479b748a823934e3212860138014dad9a47c30656772a12f44a419ec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2fd8578b52929ea62bc0bb5fd97013aca485656602f357cdf267c0f65c4b594e
MD5 19f93558b986a2311bbfd0558e1b3022
BLAKE2b-256 4d83f259744abe7d625a38cf06ba4df505926ce1b79f53cdaa17da47a9537b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6256b25a82843bc8c7b0888df2d6155c8dd3afd2583870db01bf7cfaf80e39b2
MD5 081687a8c0844dd67f000d179441b18f
BLAKE2b-256 ecb532e4c96d45e20325ecd5869aa7eb274d36264d3be482b3b749989d1deb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ccef53b4998fe62fb1ab0c33ce8a476c9e5e676c798aad9a419187c6c383afb
MD5 0313601d3305c3085e6389f1d1127dc2
BLAKE2b-256 10986e5b04091c6672426625eb25330428c551bdff19a2f61f544cbb16e3b9b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 678209f72fd0630fc7263075b4c00c78afac979c3cc851407b680bcc9edbe1a0
MD5 7aa9e891c3a57f21383bf18fe61b2c83
BLAKE2b-256 6a84389aab3d5877017d607be7d4995b5337be83512f2c4ce80ddb7e36a43045

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 843852dba3f25ac44ec1880f721ec512fbd6fc519a2744e364f6840a5301970e
MD5 fd411600730d224216366c201aacda82
BLAKE2b-256 9de2dc07db29c0dd522c7e4335b433bfbc45c031f5c084df0a773e2fb00b3a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 099fbbf01ea7d0ff53a0263e8855fa7517f0b3979f7e69219cb1879d4e6f0986
MD5 7ee61a369cca7339ecab23d86fc88ea4
BLAKE2b-256 4e813fd3daedf8bc1e04f2c49daa8a324bdeb97f90faa4675b70c37f5787eddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 162fc39ea830e05588428e88c40e83d86007ce2072357ddcba6b374b76b69049
MD5 d3efd940e8c601c792b6ed997b473697
BLAKE2b-256 ee85993034e7fcc07a102e7b0743d1a88f0a3fb29eca92dff4ecc848dc618814

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c2c82956615ae45cf2759447c8db8af90b70ecab25755fe91b3e34eadaa908
MD5 f9580b7e5b348991f574e1b08654a1fb
BLAKE2b-256 dd5d3b6d855c0d3fb05633d707bd12386a94c1804e96c81c8768964fe2268c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c27cd7fa2001a51938fdc6ef6ee2df25d7f79f07b53c654e0f8e7eb1678e56ca
MD5 d4f331a247385fe5ce531568ca7288d8
BLAKE2b-256 591e0a47ccde0188966800e21458be78d162aad78f60c29e7cd05db51d448204

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 39d7de6d02628bbd10c276db102dda3c9d9d58d03ce9654f58bbce4f82392e26
MD5 557c31e6c4c5f87a17b950fe8fb3719b
BLAKE2b-256 fd0030c001256e8eacb136458bff72301bf17bb222b1ff564718a68c12d1be1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bdde3bac6b3f859ad87e98adf6a346d1de9b37b740a1f4dad7090af3bda65f22
MD5 8bee9c99d4c01830acd8adec5b1e0f6b
BLAKE2b-256 37ad6a8d651e91a8b4946c85ab2b489bca770ee3cb87a5505a068ec643790eac

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea1cb946a10a23846b1ddea267629204f70b8851d1bc416bcb81744cfe04e4e7
MD5 eaf6865366dc44c4edf43eee44611acc
BLAKE2b-256 5773210a34de31860808b98dab6dc28d6e72b904794ce30d38edd26b649cb008

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2c030d3e4ebf90dfe9d22d5231c311dfe7a1948883391c705773fdc26c91124
MD5 ff06e8870d691ac33cebe1656e2093da
BLAKE2b-256 864187fd71e8695b3d72842b4d634e4eebee54137988c956a1b46341530db454

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f9460f968278974e8132a034fcd65b787b5034529e7de6e99ed66fb7243b45a
MD5 9406bb1b86f8fc0df4c308c5f15ec6d9
BLAKE2b-256 2045e642e7ae08116f189805174a26a6a30dfc4f496c18ddaee7e42b44ea4156

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f4cadb33deaa4745325bbfe50fe13c39f39bf9c546c30dd37110168f17bda2d
MD5 76ac2945797ae0c5706964cbdaf86787
BLAKE2b-256 81b42d9b6fefa6f8c805dde17d810eef341afd2da5fb78946f596596c57de874

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ba39853c2941437d690edebfbb5d282199bfcf221319328d113beb0684671e0
MD5 13b52a78ee913036bb3b4b54123b246d
BLAKE2b-256 ae3b79cc76ae2e5ad0dfb02de1074ad9bbff4de89ae7c03b93e9247a83cb4b4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b5abd049d9d734145278ea70a4f0e1ad125097433df1177e68cbbdee5d79221
MD5 58cec37bd22c0d5011f787eabc06aa0d
BLAKE2b-256 5920116e4351eff047a28b689dcb76238a7fad3eaec576cc4e2f779bac74c34e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0680b61cc0d3472096ad2e8945926a4d24542d4622d070f3bfc1503814dbe64
MD5 41668cea78c7ad2c330a12bfc11b3135
BLAKE2b-256 312fd36f5dd1b010d263d910f2f754543217a3ca5246889ca2ac31f05f0eb9fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 44e00e87312127f84c01498f376a473fc54344ff7c5f7fb1f3409a35c3600d22
MD5 6e8480a743b918c8a7a54946e4e51c70
BLAKE2b-256 36f049f7eff0f39dee65e454ccea4d082b8b438a8214e44a1da222a0e2a1615f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f7c09167cd95fac6e6d238a93b4c831c79a99c0ec59a1a8238e8cb0dd98979f8
MD5 61b81841a8380dfdd577602ea61a3eff
BLAKE2b-256 99ccfc137d5b42a85279148da2ae75219668a280a166f1b6c49ba11be2bf6c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72f792846394c2f786820ba6439541f2babd01fe46f5e34e97e1feabfd13fe6b
MD5 80848655918c2debb268b01dd5bda4a3
BLAKE2b-256 0f381f196a74802e2de61f2b3c323650c978b4a10e01f8628200d3b4082ba558

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e35bdea9795644902dab0f7b0ba2f643c431c2eb76e0b6e30ec14006987c0e2f
MD5 d56551f7a7e96dd09f1110ac329c2aa0
BLAKE2b-256 422a371c2515770e2977e1d76ff612f25c8f63df515d41180526eef288b6eeb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a0bc3a4117685f1bdd07b8a79134b20f6db43759ff81a1de653eb2f499b4ef2
MD5 9c6166637d7db70601d7133be433ea1b
BLAKE2b-256 68d2da669a7f339f4d28a254cb899983fdff1be50205031749798958f8f4248d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8c95ceab1764f7ace199af466fd028d79db3a1c3b721c5187398458fe9fd442
MD5 2f1f2db5abfbc0c03f4ac5a87e80da22
BLAKE2b-256 2441fd2011092d5c4a022a95b9aeec4ca231f0c14dce7e216e896cfea066900e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad002ac613ea9266494ddaade5c2bfe164f8606ed23f23b83350953fbc43dd44
MD5 e6606bbea3e7f139fbe5f5b506a90947
BLAKE2b-256 9dd6ed0c076f94912e32f1c90b57bfced000df954c7d31520efb4d5afd8f1c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d44b88a99ebff0868d5ff5aa5b2bfed706399e1f7978f6fc65773888c16a00ad
MD5 c0ead246d113e0ef9c7514e9fba40b31
BLAKE2b-256 b0e8204066f8c8b0456835a0b9701d3e51f86c110d9f50444faa4319926dfaa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61ffabcaa52fedd6e45493390f222f9a4e37efa545fe45c39eaf5633c09e0cf1
MD5 43fce7911722fd9c3f18e5adf326f68c
BLAKE2b-256 4e8cf883d69fff9460d1c16ce92f8c0ff22d0accd07ea60b0e3e7041ddca3152

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5e755d4e91a4f6266a8cb567486609985ebd6ab4e15afd3cfe22da7255e9be81
MD5 798f78137357fe4d00283e4fb69572e7
BLAKE2b-256 dd95653dcd24b723236a8fbe0c38dc752accf879aac71f690d4decf2ff9fcbf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 417a5d3fb58688973b3e90e87d6d2e8867302db03217bcaa19e66f154759789f
MD5 cf6726c2e33d270b30ba5567fe0bda68
BLAKE2b-256 9181d0d67f9665e7312e419d5729123b898b4d50802d782448d245464a9548b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72385a4a8426fe3e9db2fa69fef615f66a094261da4c629ebe79b3478680ad01
MD5 0654e1b5b9b830954d6944aeb8cccbe8
BLAKE2b-256 9ef52523fb318f75ca83a61aff00608ebfce8c1621227878e4893799ff177ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0542cf48f288edcbfbcf8796e1a3c6aee1c455bd0e96a257c1992306fbc82b2b
MD5 6096f7ebbec6adf8cee0b1e1c0b5a2a9
BLAKE2b-256 f47f4304f2a25501a5c24acd7a5f3894ff38ed3ff82a81273f9e0018bbcf8cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e60ffa137ecba5d53fcf42fc08c34773d992372b6945f8a22f483f340e6c4a48
MD5 13ea46bca0bb3035076af5d634795d34
BLAKE2b-256 54082f323162cd9101f736e6a17678dfcc9139860ba802e1886b031c8feb6b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1233809d415d0ddb101cf48629a168f8a9f026fcc78f5b2172bd8e3c2fd4ee63
MD5 e7b30eb65d03864dd5106bd86aebb62d
BLAKE2b-256 1b0c560e040312a30f225c2f7164e18e127256a9a0d78f10265b5635521a9a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a539bae0caf0e889e4341f644ceae02b1019202c412ae72471eff7ef0003d75a
MD5 f4fdd2eb681c51322b044f56f1475430
BLAKE2b-256 f8f6e41312c9f4b731adc3246a3c185c78fd992fdca7f7c0016f658ee671a24a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2564832a38afc5174e2b65f757e35774ec27c9da021b396ed9e0306af897ad4
MD5 a5c8ec9d95d37619c7b14688b36b1c00
BLAKE2b-256 209289cdd4d125e62da87fe83883c8b675380b86bc7da540b196de2e33067201

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 760ee96e4cfdbedc8fb012aba84bb135ca527b1da0cd068fec28ea80818f3d45
MD5 59ce1f03316f0d7f03118bdb2bf478dd
BLAKE2b-256 a43b8e69b12a2ffaf1d6fd0d477f9161710fc5f650f0e89454592f55f23bda23

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 8b355ab0e8b8b8a111dc5dfdf96f51d3c052358b84a824b4d7119e6a93d72f4e
MD5 6fa25249e7d16b9303f4b3bac68f92c4
BLAKE2b-256 05a11ddca79cea6b4ac6cd01be5e6e59f12064a574b81f5126f6f756e3584192

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp38-cp38-macosx_11_0_universal2.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 18237025e3d5051401490bc332baf33afd4f1a6c8be73b07d62125f8d4a7a0a5
MD5 29cc2197233db0285c08917c875b3583
BLAKE2b-256 3bc5e2122019ce8dcac0cf43cacd380527a00fef78d6a5b5194c20f54eb87e7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-win_amd64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76d2bd7f2db37af7ea8464988e2bda3e21458e6bd7fc42cd91d4d7b0939dd19c
MD5 6fbcf15115c11b7ebd74a5a3a2e64ecc
BLAKE2b-256 a97f9f303646b94cae9770dca0bff61408227d0dd65607dcbb770e71d8f4214a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ed70587737ec3b6737cb57b6b58a0a514b0ce1b54c8af59d21d632eeea63c55
MD5 d0f8aa9213dc3366f5f9f882808c0eb2
BLAKE2b-256 8a58e312170f06f85aa299290df8284ab18199a9347c1c02ed6e86c150dd394b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_armv7l.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d12d9b7a1452c1797cde7a689098b14998a4c34419c0b6c8d103577527045e97
MD5 c2e6ed82f559be7159a4c7d6429aa99a
BLAKE2b-256 2daeb7075fb2f8f79e9556c88e62020d257b21fa37cceb89f24a5e3e3ab9e5e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ad351d25d9d5242c10d50a0ce9a667e92a5e8175dd2d6c3d550ccd0c081c4e5
MD5 1a7e7351c3aa2b7e1ca757d27ac0adbd
BLAKE2b-256 ed2553c8102317547238364d725ee5f618c32d206668b6ab153a28814dd65c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 349a2c2ee0619897233550150bd211ec43fcd2791d7b8a8a93cbeacd515f41d1
MD5 173160828837f3fb8ff8215ae9049286
BLAKE2b-256 bbd6db56624110a38fddd091f7bf9df65b4e00320152eee35904a936c5f3693f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-musllinux_1_1_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 797e7bafa0e1c6938163fe5544e908a2d48fda38646c59f16dec279443ef80e8
MD5 7af4f2cd1c02989ec6e3eeb09d8f4df9
BLAKE2b-256 6796569b86d00618b2a06055a0d4eb31eca5216ee021a39500ebef7ad94ec6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stream_inflate-0.0.43-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stream_inflate-0.0.43-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8bacfc4570d522806492844380232d4139559e53fa2d517f5dd084f6302adb7
MD5 1cf7cc5ebef18d4d9187c9638f1f3198
BLAKE2b-256 dad6a1c4932ce90ec819e0ab6186d68fc8f1649cc4e7877ee20c8c203687c2b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stream_inflate-0.0.43-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy-package-to-pypi.yml on michalc/stream-inflate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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