Uncompress DEFLATE streams in pure Python (albeit compiled with Cython)
Project description
stream-inflate
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
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
Built Distributions
File details
Details for the file stream_inflate-0.0.41.tar.gz
.
File metadata
- Download URL: stream_inflate-0.0.41.tar.gz
- Upload date:
- Size: 162.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95b52e9eb662e7e42e52f375bd8786366a35797c66dfeee7ffb9a723fe105791 |
|
MD5 | f74f4a383dcb7b6ec66cbae47f354340 |
|
BLAKE2b-256 | 1470f6513e2f43930a1ee3214270f9ea110b519d6d3677294f7e8856b5c7cfd2 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41.tar.gz
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41.tar.gz
- Subject digest:
95b52e9eb662e7e42e52f375bd8786366a35797c66dfeee7ffb9a723fe105791
- Sigstore transparency entry: 148613483
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 96.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 963ed8ef562990b38a2d401bebf77667988bbe623219280e7670fd048f953d3d |
|
MD5 | cf66d7cd31c5f159501ffc8dc81dbcf9 |
|
BLAKE2b-256 | 96c63217cc4950792b21cef0b5fb1966c88d41145ace60d5d8588c0c0d66b73f |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp313-cp313-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-win_amd64.whl
- Subject digest:
963ed8ef562990b38a2d401bebf77667988bbe623219280e7670fd048f953d3d
- Sigstore transparency entry: 148613505
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 670.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db37a7b83cc570d38ba18b72fe2650e610b53ad4e31d64f0a145cc4c1860e835 |
|
MD5 | 543b901d6b862975c1cfced7760a7c8b |
|
BLAKE2b-256 | fdf995052b5e89ffd493dc3e8422f363fa236904ca08e3f40d793c0338ca6a0f |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp313-cp313-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-musllinux_1_2_armv7l.whl
- Subject digest:
db37a7b83cc570d38ba18b72fe2650e610b53ad4e31d64f0a145cc4c1860e835
- Sigstore transparency entry: 148613540
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 696.4 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e01a96e8915d7b4325680a49ea9f25e7c40ac35aadd3507a07d0625cb442a4f |
|
MD5 | 1d732e7065130e70a0cdd707aff4033a |
|
BLAKE2b-256 | c85793a098fb647c7dae5876a5b210428e8e2ca7427d4f6adee75726aee185e8 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_x86_64.whl
- Subject digest:
7e01a96e8915d7b4325680a49ea9f25e7c40ac35aadd3507a07d0625cb442a4f
- Sigstore transparency entry: 148613508
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 683.6 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1179fc10b00bd134f9dffe29713b9d5497a84fdc9029112e98662a490e07a29c |
|
MD5 | 4df19cf301e2d79e58ad0b4ac30fcc4c |
|
BLAKE2b-256 | 5ff85bc2abddbc1c44bcd4fc70dd86594ccc9332ab636b65607877bc6a8f8ef9 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-musllinux_1_1_aarch64.whl
- Subject digest:
1179fc10b00bd134f9dffe29713b9d5497a84fdc9029112e98662a490e07a29c
- Sigstore transparency entry: 148613549
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 689.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 102d9bbb43eb752410f1e86a4f33dc17a8cacb70c919edf406a389f577a29e5f |
|
MD5 | 2f97eac1cb337c45153ecd3cb3b20a38 |
|
BLAKE2b-256 | 7910b8ddc3d7505b5f1bb1170f7fa7a29b8667e2c96a04bea3040c04418d1044 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
102d9bbb43eb752410f1e86a4f33dc17a8cacb70c919edf406a389f577a29e5f
- Sigstore transparency entry: 148613496
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 704.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7b51e19d4896719a55ac1a30e51624237b58253f49ab915a2e6e6998f30c516 |
|
MD5 | 378f0c362cc808e0621815021a3f8ad2 |
|
BLAKE2b-256 | c855e5ba4b5ca5b03bb228fd4d56f6e02ba8eac0e990cdda1e5c9c67a6bc5eb7 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
f7b51e19d4896719a55ac1a30e51624237b58253f49ab915a2e6e6998f30c516
- Sigstore transparency entry: 148613544
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp313-cp313-macosx_10_13_universal2.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 218.4 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01ea2c7231dfacff2404dd90a2cc56879bac4803e4c62df37657a6ed44a6ae29 |
|
MD5 | 6fabe541a452f16e3018c59f02ce3f51 |
|
BLAKE2b-256 | 6dcfd38505ab41db7580bc4971ef2f1b1a2270ffad88e1d14f5215e6ebee5c56 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp313-cp313-macosx_10_13_universal2.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp313-cp313-macosx_10_13_universal2.whl
- Subject digest:
01ea2c7231dfacff2404dd90a2cc56879bac4803e4c62df37657a6ed44a6ae29
- Sigstore transparency entry: 148613485
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 97.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf7f97d5922f70071f43a0ba7f996b29b3ffe816b49ffb17d137c0bbf394d4b7 |
|
MD5 | 2512e5a8979bab467ff9da4a5e606853 |
|
BLAKE2b-256 | 7473eb1663bcc1d14e27d0d28ceb2deedc7e3f92becd758d1c4329b5b43e6581 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp312-cp312-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-win_amd64.whl
- Subject digest:
bf7f97d5922f70071f43a0ba7f996b29b3ffe816b49ffb17d137c0bbf394d4b7
- Sigstore transparency entry: 148613510
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 674.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fcce03f1f15b185c7eb3ccc325edb9aab5b40b72e26810183aae5bb4a8a56f3 |
|
MD5 | 50183ad57b0437daebb635694585fe54 |
|
BLAKE2b-256 | d5949fb04defc8a65ad7b78d20e501444cc62d15b566589c23d561fe99d9ba52 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp312-cp312-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-musllinux_1_2_armv7l.whl
- Subject digest:
5fcce03f1f15b185c7eb3ccc325edb9aab5b40b72e26810183aae5bb4a8a56f3
- Sigstore transparency entry: 148613565
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 700.9 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cb52bd037419843bab8f5cf4b081b74dbb9f0561a80d226f8e476c2aa329d0c |
|
MD5 | 7526e3db4dab7b43cb49a1921f13ec10 |
|
BLAKE2b-256 | 99883d45e545d0be3289c1a6e2eb3e8ec9a722310df5e0b42bd27fc8503ae077 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_x86_64.whl
- Subject digest:
1cb52bd037419843bab8f5cf4b081b74dbb9f0561a80d226f8e476c2aa329d0c
- Sigstore transparency entry: 148613551
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 687.1 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca8b3f23c94c50b8c973a6b21d534832baeff9c6538929e7866846997f1d95bc |
|
MD5 | c7ce744f17f3b809cb5c5c5793e3b2f3 |
|
BLAKE2b-256 | 83799ed839b5cd473bbf904a2a915c8b6e45a5473c86360657afc80337cad628 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-musllinux_1_1_aarch64.whl
- Subject digest:
ca8b3f23c94c50b8c973a6b21d534832baeff9c6538929e7866846997f1d95bc
- Sigstore transparency entry: 148613525
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 694.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4229c6df10ec0c0f3fc3676c9a16e7e66cb7324f8f3673ed30d01d9bbd5ea2d5 |
|
MD5 | 50f496625795c536c50a0574ca233807 |
|
BLAKE2b-256 | 0fbd3624bf13d9b576570a40bd8c9fca98272685c84da818e337944bfe0e0141 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
4229c6df10ec0c0f3fc3676c9a16e7e66cb7324f8f3673ed30d01d9bbd5ea2d5
- Sigstore transparency entry: 148613499
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 710.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6338977b73127bad939ba5fe25a681cf7386fdf2272879a47b561203933573df |
|
MD5 | bf2631d2f143fcca089484513a70513c |
|
BLAKE2b-256 | 344282b2410883d92586c0527a10371df9bcb578c5e2c0979152c8531e05da80 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
6338977b73127bad939ba5fe25a681cf7386fdf2272879a47b561203933573df
- Sigstore transparency entry: 148613543
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp312-cp312-macosx_10_13_universal2.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 219.9 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b151fd114c788ee139b1514380b2db31c581c3a0e34f45e7d98d1780cdc928c |
|
MD5 | 982f29d7f9d27a4e51169b50a068411e |
|
BLAKE2b-256 | b0482ea84d8eab57338bfa8b82f121eec62d81c1c60619365508383faa9b7265 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp312-cp312-macosx_10_13_universal2.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp312-cp312-macosx_10_13_universal2.whl
- Subject digest:
1b151fd114c788ee139b1514380b2db31c581c3a0e34f45e7d98d1780cdc928c
- Sigstore transparency entry: 148613486
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 96.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30619973380e63f9629389063145d29ae387a0114816f88bd4d0971573f3081b |
|
MD5 | 99aff6db3a75a7d208c39c8b3e809fc2 |
|
BLAKE2b-256 | 9d62a054ba3390fd690c8f3df30d55b0870ea5510af0bcaf3ab2c11fd77b966a |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp311-cp311-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-win_amd64.whl
- Subject digest:
30619973380e63f9629389063145d29ae387a0114816f88bd4d0971573f3081b
- Sigstore transparency entry: 148613545
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 648.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ff7cf6eb75e1e3db232eabd35e9596bab17a4d427d18c5b1e1e814331de8376 |
|
MD5 | 7f54e5abad4c5862a74bb8a95bab2049 |
|
BLAKE2b-256 | 20f39ea3eb944e1ac9def817af454fff95c2fc8d62583816c95e11096605c21f |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp311-cp311-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-musllinux_1_2_armv7l.whl
- Subject digest:
9ff7cf6eb75e1e3db232eabd35e9596bab17a4d427d18c5b1e1e814331de8376
- Sigstore transparency entry: 148613567
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 668.6 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42802e9574414d8b1c6d5fded2668d47b9e22882fa9820f155a7f16a98aa27e9 |
|
MD5 | 1e0097887069a8a138a4a7d424573fe5 |
|
BLAKE2b-256 | 63bb0e066b3b4830d1a08ccea9e954bc01e86c1a84b0a03161b7185b71868102 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_x86_64.whl
- Subject digest:
42802e9574414d8b1c6d5fded2668d47b9e22882fa9820f155a7f16a98aa27e9
- Sigstore transparency entry: 148613559
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 671.9 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 349209fadeb468de5c5f7b0afe97c1a455d7282fb560b4ccc22f4b679e8ea226 |
|
MD5 | df7d276b770f4cc1776b4aafaa472736 |
|
BLAKE2b-256 | f1c4c4cce50ad7e696a9f6bc96e861d8e87e879f88d0e62714b06ca36a303dcb |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-musllinux_1_1_aarch64.whl
- Subject digest:
349209fadeb468de5c5f7b0afe97c1a455d7282fb560b4ccc22f4b679e8ea226
- Sigstore transparency entry: 148613501
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 674.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b05d5cf81d794e4050f46fd52b7e20ae66eb935ce06084c3d3ada4ae050fc5a0 |
|
MD5 | bb36b5610e94953b0266e36b445da307 |
|
BLAKE2b-256 | 2e330c5c9cb279cb03b9933c572229f9c2731af9bb1950e8a01a9385dce34abd |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
b05d5cf81d794e4050f46fd52b7e20ae66eb935ce06084c3d3ada4ae050fc5a0
- Sigstore transparency entry: 148613521
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 676.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51cc35bdb949f848ecc9b8b5422e912432e2438dedc694457370149fa98b9c83 |
|
MD5 | c9f31b5d87c3598c010e83a44f633a79 |
|
BLAKE2b-256 | 2d2c9d2209c14920d0b48b5fd2d1d665d7603b8d346bd8705c2c62778dfd761c |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
51cc35bdb949f848ecc9b8b5422e912432e2438dedc694457370149fa98b9c83
- Sigstore transparency entry: 148613537
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 215.9 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e11305ee1694dc83611f2916f9da7b80820ee3cfa28882020aed9d8cc070f2e3 |
|
MD5 | f86b6b0bc0d5c53b8859335936ee6aaf |
|
BLAKE2b-256 | 230e047e1b6857f332ba299e13f1901ee0b97fb051e8a45a79638c8794c7730b |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp311-cp311-macosx_10_9_universal2.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp311-cp311-macosx_10_9_universal2.whl
- Subject digest:
e11305ee1694dc83611f2916f9da7b80820ee3cfa28882020aed9d8cc070f2e3
- Sigstore transparency entry: 148613558
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 95.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47d000a28a3a854e7428c0e945e1a88a2856aa42884fe8d3f5d50c88e55cbb36 |
|
MD5 | 9ae333ab300c457816f784bb22f3cb0a |
|
BLAKE2b-256 | 8e8496629933219381639206f74bbcf365019bd1f963fb847b195a0db083dd29 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-win_amd64.whl
- Subject digest:
47d000a28a3a854e7428c0e945e1a88a2856aa42884fe8d3f5d50c88e55cbb36
- Sigstore transparency entry: 148613524
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 601.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fad40cea324393e0066b9cff92d0e9fcec84f948d15a16bce0436d58d15e6973 |
|
MD5 | 9571017514e8b14c39933ff7b4a4a7aa |
|
BLAKE2b-256 | ecd0958340476b61a9ba03c33ee0876fd1b921678ae33fdd76989d8d502890ff |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-musllinux_1_2_armv7l.whl
- Subject digest:
fad40cea324393e0066b9cff92d0e9fcec84f948d15a16bce0436d58d15e6973
- Sigstore transparency entry: 148613562
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 614.7 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a4f44c10ccb9e4528b3d420de71de87428807e644443562e64445da6c4756cf |
|
MD5 | 545e96bdc558edd60d5d0a7eaa662ccf |
|
BLAKE2b-256 | 40d4e2feeeefc30a696c84fea9c09bba0c6b0dea05c060a76365c9b5ee95e098 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_x86_64.whl
- Subject digest:
0a4f44c10ccb9e4528b3d420de71de87428807e644443562e64445da6c4756cf
- Sigstore transparency entry: 148613561
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 617.2 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7da6307d09de67aa0e41a9be1bd95f00d61647b2d9b96b4e39b0714fcd8918c |
|
MD5 | b1bcfc05e02b70be426abdda34c624dc |
|
BLAKE2b-256 | 542acc9c533545a005a9622c843d21d819da6e901fe8ee87166cb6c8de63dc0b |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-musllinux_1_1_aarch64.whl
- Subject digest:
b7da6307d09de67aa0e41a9be1bd95f00d61647b2d9b96b4e39b0714fcd8918c
- Sigstore transparency entry: 148613533
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 617.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ec5cbaec41d7a5c15fe26a9e39105bb3aa88c9461c693294a202b83093a3438 |
|
MD5 | c22c895d5bf81be82d10b84b655ee4dc |
|
BLAKE2b-256 | d01ee20945b27bc5c8121d91bb323b35fa436f6c16f961788195b28d5b103d63 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
1ec5cbaec41d7a5c15fe26a9e39105bb3aa88c9461c693294a202b83093a3438
- Sigstore transparency entry: 148613552
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 622.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0ec816ec68c61d90779255d1b2f6a254b19c52c3ed3c0ac73cae8b32299ce86 |
|
MD5 | 7ff38fcbaef01d11dd465ea11decec7d |
|
BLAKE2b-256 | 8a3220fa741dc58fe3adfe54f0ca2ce3631db210c7e3fa09e36d19e656050fab |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
d0ec816ec68c61d90779255d1b2f6a254b19c52c3ed3c0ac73cae8b32299ce86
- Sigstore transparency entry: 148613532
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-macosx_12_0_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-macosx_12_0_x86_64.whl
- Upload date:
- Size: 115.5 kB
- Tags: CPython 3.10, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a141926ef3be566d0c4486b24338b31b55e1ff6e36e7b6a5f5568b1ce57d126 |
|
MD5 | c56c06e0d2506e1d4ceafc5dfa758d38 |
|
BLAKE2b-256 | 4a3b22a9fe474e7e559c3339291ecd743dd7ad6f65f46d17b42e450b3059bd5c |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-macosx_12_0_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-macosx_12_0_x86_64.whl
- Subject digest:
6a141926ef3be566d0c4486b24338b31b55e1ff6e36e7b6a5f5568b1ce57d126
- Sigstore transparency entry: 148613488
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 215.2 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb528169186074d1df925d82566003412bf08ebc70ac5ed4d67727b342b348ae |
|
MD5 | 9f3833a64fa1ae48a042f53c4bf757ff |
|
BLAKE2b-256 | 121af73d42674ba32e224eb94dd0bd9c17b54dda03ee56ddb7cc5e4763ee2dce |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp310-cp310-macosx_10_9_universal2.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp310-cp310-macosx_10_9_universal2.whl
- Subject digest:
bb528169186074d1df925d82566003412bf08ebc70ac5ed4d67727b342b348ae
- Sigstore transparency entry: 148613541
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 96.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8dc4cfcea794bd629b524ebb9fc2e003ce0caaa2c42247fee9c8c3b745b418f |
|
MD5 | 7b2d8fe82698358925518f44f0f726ee |
|
BLAKE2b-256 | 098ee443d33a6c8f17edef71a1354b1536f34d08f15d78ea04734328b859b9bc |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-win_amd64.whl
- Subject digest:
c8dc4cfcea794bd629b524ebb9fc2e003ce0caaa2c42247fee9c8c3b745b418f
- Sigstore transparency entry: 148613487
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 603.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a65e727e137bffae32145161d43e98e5ae237a9d9d06239b2e4244c22685ec7f |
|
MD5 | 88ea53b9810a49cdfd3b7dfbdfb67495 |
|
BLAKE2b-256 | ea3c47f81d5a451fbeb286dc30ff4505d58df0feb0a73c54221c07ad2dafbd3f |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-musllinux_1_2_armv7l.whl
- Subject digest:
a65e727e137bffae32145161d43e98e5ae237a9d9d06239b2e4244c22685ec7f
- Sigstore transparency entry: 148613547
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 623.8 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 471866d9ffd7e60e0e4a43846b3f3b1683c1f7f8911da2877cd04a2e0a8c6ae9 |
|
MD5 | 84b7d80b70a5824321468795345b7076 |
|
BLAKE2b-256 | 288b1d74b8774700ee2faac4859a9ace587a0c47bed5534d7e3c09a1c60cbb57 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_x86_64.whl
- Subject digest:
471866d9ffd7e60e0e4a43846b3f3b1683c1f7f8911da2877cd04a2e0a8c6ae9
- Sigstore transparency entry: 148613516
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 623.3 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3aebee1bb656e6d0ea367d55da3dff6af1e3c26cf04ff1ef6546cb549f5ea8c |
|
MD5 | 1bd7bafe01b8be2f7c75e68a1486d902 |
|
BLAKE2b-256 | dc73ecbb0a4b592f5439a579d6c15b1ca0ae0c08d69f09b1373472a26029e82e |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-musllinux_1_1_aarch64.whl
- Subject digest:
f3aebee1bb656e6d0ea367d55da3dff6af1e3c26cf04ff1ef6546cb549f5ea8c
- Sigstore transparency entry: 148613557
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 622.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c35a403fe1a5d6738cd3bb726d505576275a94925bb6cb3bdcf044fd29623d6e |
|
MD5 | 581bc0516de92078bb03e67d34daf483 |
|
BLAKE2b-256 | c99eb23fb3871449c939cde9688b4172b5036b8e16af2f0bcf8981eab26f3b4f |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
c35a403fe1a5d6738cd3bb726d505576275a94925bb6cb3bdcf044fd29623d6e
- Sigstore transparency entry: 148613530
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 629.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03e04da6e9a23c1cd76c420d10f0dd03f9705c612b944abf656fce4f0dd1b35b |
|
MD5 | 34c5e978d4a21530689d5edb01addbc7 |
|
BLAKE2b-256 | f6205dd8d97d32151434dc23502ad5c4da87f13e25de5f3e6c6eeb375f8b34b7 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
03e04da6e9a23c1cd76c420d10f0dd03f9705c612b944abf656fce4f0dd1b35b
- Sigstore transparency entry: 148613529
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-macosx_12_0_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-macosx_12_0_x86_64.whl
- Upload date:
- Size: 115.1 kB
- Tags: CPython 3.9, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5e67227728d1ddd8b70a6c4188387ac89a03ba9a67d1a1e0de7e9096badd39e |
|
MD5 | b035c1ab01ae0ac70d9abd71b2c6b42e |
|
BLAKE2b-256 | 974ef0a0fdaa237521cd6d197884c7de6d992b8403e48ac05a5ca8efe6dcbaf3 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-macosx_12_0_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-macosx_12_0_x86_64.whl
- Subject digest:
c5e67227728d1ddd8b70a6c4188387ac89a03ba9a67d1a1e0de7e9096badd39e
- Sigstore transparency entry: 148613518
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 216.6 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8da9bb5c1c93105f2ca2cd5a0fafe22a58feade68467273b89e018b2b39dedce |
|
MD5 | f4510e1955eb60dd86bbeca9cb30a032 |
|
BLAKE2b-256 | 4829707d106ba37d3839939d1c0116fec7dce7d53c64197b18f9603dd91b2342 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp39-cp39-macosx_10_9_universal2.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp39-cp39-macosx_10_9_universal2.whl
- Subject digest:
8da9bb5c1c93105f2ca2cd5a0fafe22a58feade68467273b89e018b2b39dedce
- Sigstore transparency entry: 148613489
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 96.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 023f69c08c42ca06c911f6bebc5fc293bc6103904bc17ac1d709b1166ab8fa75 |
|
MD5 | d75dc3fab5cae2eb7cb1f3975347c77f |
|
BLAKE2b-256 | f70157edb64e83d9ef0776ce5d8be9acc600b1385d246b438a23499588184f75 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-win_amd64.whl
- Subject digest:
023f69c08c42ca06c911f6bebc5fc293bc6103904bc17ac1d709b1166ab8fa75
- Sigstore transparency entry: 148613536
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 633.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b93b2eda73fe29f6b244b0af1b74ec8ef5393157e731dd5567f253939000c063 |
|
MD5 | 996f2d7ad6935e1c569b3713fb96128b |
|
BLAKE2b-256 | 705aa88033d7de98d06f1484923d6f41e49ae632c37d35831171129b0c74d24c |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-musllinux_1_2_armv7l.whl
- Subject digest:
b93b2eda73fe29f6b244b0af1b74ec8ef5393157e731dd5567f253939000c063
- Sigstore transparency entry: 148613509
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 680.2 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74705b2cfcd28e2980c1c5faeeb12e1167cabc9e7088ed54173f6216cffa82e9 |
|
MD5 | 421e19cb6511329a66924c6cddaf7034 |
|
BLAKE2b-256 | 166e7d2985a87329b195f7e98a27b68decc06ba0550f96bbc8ca3ef9d93a3403 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_x86_64.whl
- Subject digest:
74705b2cfcd28e2980c1c5faeeb12e1167cabc9e7088ed54173f6216cffa82e9
- Sigstore transparency entry: 148613498
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 677.7 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea0a0cb420194d99c512164f803960171f552a53e3c8fcd36d64dabfa0b56cf8 |
|
MD5 | ca6c6590c458fb277201a5f89570e29b |
|
BLAKE2b-256 | e9f83edcd5a25120e9cf9057b4652a73c016ec724edcc18db3c918c632cddadc |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-musllinux_1_1_aarch64.whl
- Subject digest:
ea0a0cb420194d99c512164f803960171f552a53e3c8fcd36d64dabfa0b56cf8
- Sigstore transparency entry: 148613507
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 648.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c33eb650a04c868ebef54741c75e71156308bbd40ed879064e32f7e0548c6485 |
|
MD5 | a9ffda227f0a6a7da9a7301c74e64531 |
|
BLAKE2b-256 | cb089350103387d35ac84ed56b5997d62da703c5867438edb40258905e3c4d53 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
c33eb650a04c868ebef54741c75e71156308bbd40ed879064e32f7e0548c6485
- Sigstore transparency entry: 148613528
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 657.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bd043f22509a52c867e1d0b409be0fd8a15a3076fcda7b3556e3738f89bd163 |
|
MD5 | ce2b75bb782c2b58751c22253401f46d |
|
BLAKE2b-256 | 752abdfc38309072a3261277ec93ad5fdf23e55bb4be14efde2a52d5436edae9 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
3bd043f22509a52c867e1d0b409be0fd8a15a3076fcda7b3556e3738f89bd163
- Sigstore transparency entry: 148613546
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-macosx_11_0_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-macosx_11_0_x86_64.whl
- Upload date:
- Size: 114.8 kB
- Tags: CPython 3.8, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fad5acdcbe9a0c5368455fc8cf528b251e314295548e472b9490d6af079c7c8f |
|
MD5 | 55e298f88d7b23dc8719668bef0ce80f |
|
BLAKE2b-256 | d2665d392a22997c27e96adb8860e26998df11c35ac4169891435362f3904791 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-macosx_11_0_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-macosx_11_0_x86_64.whl
- Subject digest:
fad5acdcbe9a0c5368455fc8cf528b251e314295548e472b9490d6af079c7c8f
- Sigstore transparency entry: 148613554
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp38-cp38-macosx_11_0_universal2.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp38-cp38-macosx_11_0_universal2.whl
- Upload date:
- Size: 216.3 kB
- Tags: CPython 3.8, macOS 11.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e8c54d7c24299a4e8e6742bcee4a974910c4c2a294bb0e2da451ee7630fb203 |
|
MD5 | c686548b776a599a8dcde614d8f0c334 |
|
BLAKE2b-256 | 498cfcd76bf82a2dd24665c92cdd36dd8a014d71f22c49c1dfdc3c6acbc896a8 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp38-cp38-macosx_11_0_universal2.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp38-cp38-macosx_11_0_universal2.whl
- Subject digest:
1e8c54d7c24299a4e8e6742bcee4a974910c4c2a294bb0e2da451ee7630fb203
- Sigstore transparency entry: 148613570
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 93.8 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6683da5217e49ad4b27aa39d3e2b39801834522535492479835dbf3b55f0e407 |
|
MD5 | f39cbd6171cc8287ec00fc73090c91fe |
|
BLAKE2b-256 | df5e7a9f23d42a84a3f2b6c45cdb4501137d00ffa8ebecaad1066595d285d3c7 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp37-cp37m-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-win_amd64.whl
- Subject digest:
6683da5217e49ad4b27aa39d3e2b39801834522535492479835dbf3b55f0e407
- Sigstore transparency entry: 148613563
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 544.7 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bcbab3681f80a283e5220299f1687b7d58fe3431ede28338f1385438cb71560 |
|
MD5 | a2186c7ce9ab6785b936242a40ce4ba8 |
|
BLAKE2b-256 | 78af6f4277dbfbe1f0f3553adcd50438727176cb436f93785059d9969576cc79 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp37-cp37m-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-musllinux_1_2_armv7l.whl
- Subject digest:
8bcbab3681f80a283e5220299f1687b7d58fe3431ede28338f1385438cb71560
- Sigstore transparency entry: 148613566
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 561.3 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dda44c928c162b0aec4092062bcf660a364b8d6b61ff2e679bff075579135a88 |
|
MD5 | 93991091c3ed429c7a3f5f7e15a507e1 |
|
BLAKE2b-256 | 80b9b36161a48938b95fc95f2bf03edaace0048874c8635d38b670f62de46530 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_x86_64.whl
- Subject digest:
dda44c928c162b0aec4092062bcf660a364b8d6b61ff2e679bff075579135a88
- Sigstore transparency entry: 148613502
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 558.0 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4a7f464dd2a2d816abf510dd43103c4fd2c55dcba6b7d3810d89de0bb18ac46 |
|
MD5 | c8f2f2303bbe8b22fbaf696808f556bd |
|
BLAKE2b-256 | 12cacad337bc07d1368bef543e13cbdc3b457f489d8e5fc0bb55897ff04099f1 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-musllinux_1_1_aarch64.whl
- Subject digest:
c4a7f464dd2a2d816abf510dd43103c4fd2c55dcba6b7d3810d89de0bb18ac46
- Sigstore transparency entry: 148613534
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 551.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 876f9f11ca179f7dc1cc42247692a24ae1b37ecaa490e5d8159581924fd9efbf |
|
MD5 | d1eafea1080aadb3036b9afb56531882 |
|
BLAKE2b-256 | e035bd5fe0f23cf23a90ed57ca990a8b1e219f9db4f1d05be922c8c01fc102d3 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
876f9f11ca179f7dc1cc42247692a24ae1b37ecaa490e5d8159581924fd9efbf
- Sigstore transparency entry: 148613548
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 560.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eac192f2017188424155b2f8179b423fc44ed59af342cf8f655043a35e14bf90 |
|
MD5 | 8f9cc3349638525ef7922dedda09292e |
|
BLAKE2b-256 | 4c4509edca0d7327316bfa2bc82d239972b0c10005756d53407fef30e264a417 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
eac192f2017188424155b2f8179b423fc44ed59af342cf8f655043a35e14bf90
- Sigstore transparency entry: 148613568
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp37-cp37m-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp37-cp37m-macosx_10_14_x86_64.whl
- Upload date:
- Size: 108.1 kB
- Tags: CPython 3.7m, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 962fe8c9aea1b932674e61d5c5e8221212a010c4efca3fe4bbd301f578ad48cc |
|
MD5 | 8276c85de533d3b7d1a2d70a51a519d3 |
|
BLAKE2b-256 | ce67e8e3e108736a188019ca556a7ae37cd6e39d31d556737934c4d4a380bb09 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp37-cp37m-macosx_10_14_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp37-cp37m-macosx_10_14_x86_64.whl
- Subject digest:
962fe8c9aea1b932674e61d5c5e8221212a010c4efca3fe4bbd301f578ad48cc
- Sigstore transparency entry: 148613504
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 102.6 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87459a91f038ca641e78ee2d9eb3328aacd46c4a5dee3b5fcb210cbc8c6e3615 |
|
MD5 | 64068263c10ab3d39d8705e4afe2411f |
|
BLAKE2b-256 | e98dbec0bcc683fad339d3bd937a4caea6cdce9263daf659e70b9e6354ec6ef9 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-win_amd64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-win_amd64.whl
- Subject digest:
87459a91f038ca641e78ee2d9eb3328aacd46c4a5dee3b5fcb210cbc8c6e3615
- Sigstore transparency entry: 148613553
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 523.9 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87ae8b6bccbf67ed6bc79fc146b6ef1a050e35e35af03fdbd94be085c6d63627 |
|
MD5 | b20652e748c84c3750194926d074fff6 |
|
BLAKE2b-256 | baba0f519c3796526f73b93781fe6ddec0d7a4809b5e18b631cc16ad416f39a1 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-musllinux_1_2_armv7l.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-musllinux_1_2_armv7l.whl
- Subject digest:
87ae8b6bccbf67ed6bc79fc146b6ef1a050e35e35af03fdbd94be085c6d63627
- Sigstore transparency entry: 148613519
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 534.7 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33b72c8eed64e8304e6308b40685cb5b199aed6f4c50a25f4696ddfe0e9fed64 |
|
MD5 | 8b84ce89be413f9f6962208083056e07 |
|
BLAKE2b-256 | eb99c126943806d11489fa5dd9973ee217c30f293ad85a50e84701bce2008022 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_x86_64.whl
- Subject digest:
33b72c8eed64e8304e6308b40685cb5b199aed6f4c50a25f4696ddfe0e9fed64
- Sigstore transparency entry: 148613492
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 527.2 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aadfabeea3344f3043640c3cf45ede4fd8b6cb8a7bcb3e4e88966631fe900a7 |
|
MD5 | cfa0d7e255a1d73fbfa711385ad487aa |
|
BLAKE2b-256 | a7c1c6fc16902ee5d381b97dcd76ef0803b6fb83fcf7cf35693518b75f4a7ba2 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-musllinux_1_1_aarch64.whl
- Subject digest:
3aadfabeea3344f3043640c3cf45ede4fd8b6cb8a7bcb3e4e88966631fe900a7
- Sigstore transparency entry: 148613513
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 529.9 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 780151c9f759dddfcb508f6d14f3e1f64b7005891f7d92b46d3b8ab2ce17f72d |
|
MD5 | f112361b6e1fa98ea10346709b0094b4 |
|
BLAKE2b-256 | ea42cca82f40c38b38a6d701dc1ba622fda0d244d17d25fb59a577a989cb17a1 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
780151c9f759dddfcb508f6d14f3e1f64b7005891f7d92b46d3b8ab2ce17f72d
- Sigstore transparency entry: 148613527
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 538.3 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b1a072dc88b0ba280532efae198fc1ea926dfd180394b2725316f42a9ad99f9 |
|
MD5 | 285720858974c245769e9ef2c186fd41 |
|
BLAKE2b-256 | 16247f6ba76ebbd099fd1d3e6627c1c6a98bb475f9c2ccba0601423c8212c868 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-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
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
5b1a072dc88b0ba280532efae198fc1ea926dfd180394b2725316f42a9ad99f9
- Sigstore transparency entry: 148613515
- Sigstore integration time:
- Predicate type:
File details
Details for the file stream_inflate-0.0.41-cp36-cp36m-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: stream_inflate-0.0.41-cp36-cp36m-macosx_10_14_x86_64.whl
- Upload date:
- Size: 111.5 kB
- Tags: CPython 3.6m, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cab57a8139bc784e0c74826b93b13e9b98ade748aba4ad939cec075db8c3fce |
|
MD5 | b380903e4b7f6457b9d7e84e303ed105 |
|
BLAKE2b-256 | cc2abde57e840d33f3220666593da8da52e5da19365aa6795905031908e41ed3 |
Provenance
The following attestation bundles were made for stream_inflate-0.0.41-cp36-cp36m-macosx_10_14_x86_64.whl
:
Publisher:
deploy-package-to-pypi.yml
on michalc/stream-inflate
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
stream_inflate-0.0.41-cp36-cp36m-macosx_10_14_x86_64.whl
- Subject digest:
9cab57a8139bc784e0c74826b93b13e9b98ade748aba4ad939cec075db8c3fce
- Sigstore transparency entry: 148613542
- Sigstore integration time:
- Predicate type: