Skip to main content

Backport of compression.zstd

Project description


Install

Add the following dependency to your project:

backports.zstd ; python_version<'3.14'

Usage

When importing a module needing Zstandard support, use a conditional import based on the version of Python. See below for examples.

zstd

import sys

if sys.version_info >= (3, 14):
    from compression import zstd
else:
    from backports import zstd


# use the zstd module, for example:
zstd.compress(b"Hello, world!")

Refer to the official Python documentation for usage of the module.

tarfile

import sys

if sys.version_info >= (3, 14):
    import tarfile
else:
    from backports.zstd import tarfile


# use the tarfile module, for example:
with tarfile.open("archive.tar.zst") as tar:
    tar.list()

This tarfile modules is backported from Python 3.14 and includes Zstandard-specific features such as: explicit modes for opening files (e.g. r:zstd), specific arguments (e.g. zstd_dict)… refer to the official Python documentation for more info.

Moreover, the CLI is available as well: python -m backports.zstd.tarfile.

zipfile

import sys

if sys.version_info >= (3, 14):
    import zipfile
else:
    from backports.zstd import zipfile


# use the zipfile module, for example:
with zipfile.ZipFile("archive.zip", "w") as zf:
    zf.writestr("hello.txt", "Hi!", zipfile.ZIP_ZSTANDARD)

This zipfile modules is backported from Python 3.14 and includes Zstandard-specific features such as the constant ZIP_ZSTANDARD to be used for compress_type… refer to the official Python documentation for more info.

Moreover, the CLI is available as well: python -m backports.zstd.zipfile.

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

backports_zstd-0.3.0.tar.gz (976.1 kB view details)

Uploaded Source

Built Distributions

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

backports_zstd-0.3.0-cp313-cp313t-win_arm64.whl (272.2 kB view details)

Uploaded CPython 3.13tWindows ARM64

backports_zstd-0.3.0-cp313-cp313t-win_amd64.whl (296.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

backports_zstd-0.3.0-cp313-cp313t-win32.whl (270.6 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (480.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_s390x.whl (611.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (566.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (492.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (463.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-0.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (476.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

backports_zstd-0.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (621.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (562.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (456.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.3.0-cp313-cp313t-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl (491.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

backports_zstd-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl (347.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-0.3.0-cp313-cp313t-macosx_10_13_x86_64.whl (427.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

backports_zstd-0.3.0-cp313-cp313-win_arm64.whl (271.6 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-0.3.0-cp313-cp313-win_amd64.whl (294.9 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-0.3.0-cp313-cp313-win32.whl (269.8 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (476.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl (613.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl (567.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (490.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (462.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (472.1 kB view details)

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

backports_zstd-0.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (623.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (562.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (457.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.3.0-cp313-cp313-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl (488.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

backports_zstd-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (346.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (427.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-0.3.0-cp312-cp312-win_arm64.whl (271.9 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-0.3.0-cp312-cp312-win_amd64.whl (295.0 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-0.3.0-cp312-cp312-win32.whl (270.1 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl (612.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (567.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (491.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (463.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (475.3 kB view details)

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

backports_zstd-0.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (621.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (562.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (457.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.3.0-cp312-cp312-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl (488.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

backports_zstd-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (347.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (427.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-0.3.0-cp311-cp311-win_arm64.whl (271.7 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-0.3.0-cp311-cp311-win_amd64.whl (294.9 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-0.3.0-cp311-cp311-win32.whl (270.0 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl (612.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (566.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (490.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (462.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (472.2 kB view details)

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

backports_zstd-0.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (622.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (562.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (456.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.3.0-cp311-cp311-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl (488.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

backports_zstd-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (347.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (427.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-0.3.0-cp310-cp310-win_arm64.whl (271.6 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-0.3.0-cp310-cp310-win_amd64.whl (294.8 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-0.3.0-cp310-cp310-win32.whl (269.9 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl (612.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl (566.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (490.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (462.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (472.2 kB view details)

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

backports_zstd-0.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (622.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (562.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (456.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.3.0-cp310-cp310-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl (488.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

backports_zstd-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (347.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (427.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_zstd-0.3.0-cp39-cp39-win_arm64.whl (271.7 kB view details)

Uploaded CPython 3.9Windows ARM64

backports_zstd-0.3.0-cp39-cp39-win_amd64.whl (294.8 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-0.3.0-cp39-cp39-win32.whl (269.9 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (476.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl (612.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl (566.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_i686.whl (490.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (462.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (472.4 kB view details)

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

backports_zstd-0.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (622.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (562.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (456.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.3.0-cp39-cp39-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl (488.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

backports_zstd-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (347.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (427.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file backports_zstd-0.3.0.tar.gz.

File metadata

  • Download URL: backports_zstd-0.3.0.tar.gz
  • Upload date:
  • Size: 976.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for backports_zstd-0.3.0.tar.gz
Algorithm Hash digest
SHA256 773c0f7463968c9c387e725e520f4b4f31cddd3a2c39055e46212adde6829542
MD5 9a66b91364ef89255a22afdf939fe95d
BLAKE2b-256 c9cc80903746f011b400b188319666e091e92b7ed4a879a182c07f8fe48b837e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0.tar.gz:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 23ee720bb978c7ce224fbb4c5964fe0223a0ed1c7c69f1335aa5603a605aecd7
MD5 dd04b8f986ff789fc55eaca951ca517b
BLAKE2b-256 fbf54a34353e906e4f502d28794d8e9b1fcf8a2b06c582a9f2df475221d51bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 24e4135078bcd715956b4ff2c28bda2273f60066d458fe958fac3e37edc13972
MD5 2d53b1f1e612a8efeffa7640e8a1b577
BLAKE2b-256 3ce9b7bf7c30a8c8bdf45c2493d71104c0749181f705d473d3c96835fffe4bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e43cc4c7226a37c3f9c32623ec88dd5a4917b415965429fc760222de2b83436d
MD5 d90d400a982cd7f3f482dc0400da768f
BLAKE2b-256 98c13a58afebc967946ba34bd6c7f42289a93aedbc35a754a556e4ecff2179a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d43a7444748d5109ee70c52564c79adfa814c4ee0fc4079c7178ddac44c59acd
MD5 c1a467f1d8aa629ff219b1c105b6cc66
BLAKE2b-256 6a7caaf39c76f81689883b5f05cc26053cd731cb59f419645aa2d06f9d2de49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fb18b612ecbd0437c6aaabe37776b7c2a9681f1f2f7ad53c8050f0bced91eb60
MD5 5c9c3100f746920cd95ee724bede8f7c
BLAKE2b-256 6fed64cbe37bc00144960b842459226e3aeedbf41efdfcf474f242b34d424477

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 be0b0e01a453c20788be9afe4c71af5d16e2ff214e9eff1923377cd29f11c402
MD5 5a735a8187125e681d0538b3f952310f
BLAKE2b-256 9e11a9f132c7e8e5a22e2c104ffb57c7b8647654b9ec0737e82d3ec018d5d28e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e0aaa4c86f3d02d251ca282911df8d0a5c7a91bafd195c34a4128b8bde810e7
MD5 c77f697e68d73a588bce598fd576763e
BLAKE2b-256 979bc4ca845d02eb47eff52911eabd37f5ef34c41aa8cd445cf2ff60baf6b0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34b95deaeabc5166a230e8c2fee1a68c2a78d47b79824d34c83e19c6d4b67e7f
MD5 ab6cac5c4269f9039b7f5e0279b37208
BLAKE2b-256 430d93cbff2846f0e8d330c777ba261a8e5cc1ddfce91992d8ae8373f4875d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7203b0c643d830311909463bc0ee1c2460413c0ead68b6c8f455b3ae82728c9c
MD5 e2b638ee2f80868777df30ac3a31e30f
BLAKE2b-256 e990a1cfc2626405c01271a1a6a347a03055fab5d83d262646221f723c28ec60

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2be90fee34b1b1f85b88d823eebcffc604231896e30519f02fbe5f14c3aa1fe8
MD5 cf44ca5537324ed5d19f4b06ff37088b
BLAKE2b-256 19499eaa89ea0881a56113c1456ebc74ac822d4d01b4f17ec938f13910d6b70b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b4d85c91c23aba7f95ca2b4ef6a0acedbe21d44db0be9320f1206c0e93665dd0
MD5 4f1af8cd4dbd32fa405406d2cbc4b485
BLAKE2b-256 656f32b90731e692132249301b7682e415341eb7552c0f1d650ede05115a3a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0920996b7651c4d800e11b9a2e238a8c8bcd4e55f1f2621512b6b56fce2bd737
MD5 d9731749c05701379de52d40974e418b
BLAKE2b-256 6739a3e7dd4b14ab872e733f20c2accf89253407ac1c15d9313bc3dd64ade863

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 0c35de1f3cad8e9c6a2f6c3f7286ecf290f04885769b0416241f1af140cbd7de
MD5 7d783035a14d0fa49ec29be8060d5b09
BLAKE2b-256 50e62402392482829d7c164cb0607e7087b1305918c9165e64088ea461808268

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaee5c2c46ccbef5335c0d3cee55f036d2c4226f1154fbb9cd3537dad295ad1d
MD5 a89d051982fd1494c2caf9ad667a0c58
BLAKE2b-256 da564d5d1d0024843a51fefc8ed90c1ee0036c371794941acd30aae6e7479476

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5bd28c9d9f6e871f7f2fce3f9b74d6f038f91c9e60b74a71387e4723cdda023b
MD5 4966f17838659bcb731b46836fd08978
BLAKE2b-256 26d59ed69185da931630c7ccb0827412cef91380984a2c1d6d768244345dcf8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 de2846f5fa7d5b3ef7525dc8ff83014480a408b043dd1131d84b793d89b503c3
MD5 68cc0aefd6b0d4d10878220f722c6542
BLAKE2b-256 35575e59cd80b9fd3e35fe385e504f71846d897d2dc6d666428616ac96dcaec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b36da3711005e4fbf8d1931e528477746e3d08ff81231822a3d10aed94dea7a6
MD5 133f43eb218aebccccf08c799a895834
BLAKE2b-256 cbbbb6c9d3f6ae3212c47a5c368197a20ab373712021518e4495c835bf33c523

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: backports_zstd-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 269.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 23817dc34540c4f5aea3fbecb42071858daafcf7e244168c8e06c8a8afbeff22
MD5 e866b98574719ac28d876a9182672bdd
BLAKE2b-256 b0967c108152c77e89f59f2c5b2585558d40ef99f3b61f80659e44ec7fc53164

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de9281d08db8734baa538ff9021d0aac16566713c5c64df58c66481823b157c3
MD5 e62d91151d62aae3f3c5601a71d10a66
BLAKE2b-256 63da9d92715dd17ea864f2fa9011b20dd7efa0b2e18e300a7af19b959e8175b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fab85006c0a97a74a985af4c08c190b4af77a624d1e759508f756d9d28aea40c
MD5 e3625273027b14087ccfe65076030598
BLAKE2b-256 ef18b6db205c4235235f05d3f0578447a060d2520957320d256bc5d63a7680a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 500805aade7538167fe34f3aff1ffd5bdbbeadc4d7c9f205be09177b7d4b8c9a
MD5 8b6257588bae621186ba942b3516a40a
BLAKE2b-256 81d8eab79abb3e6546b1aa746f55a7d7538f840e0b566e733941045b707aa18c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f573c567f48b3dcc92dfb9f6ed14756a6d149a76cdf0ee2d7d9fdc2ecfdc8c60
MD5 8e68fd88d644433a7aeb69a09bf59fec
BLAKE2b-256 d5b7fdf31d87f7ef6dfca32ffcb3677c62b0822e17aea3dcab98f5f50a166e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd18749b7698a52d7611d2fc13859c5dae72b4544ccc8ca6d8b549e50c02c32c
MD5 6b69e20891bdbaca3fd4889631cf92d2
BLAKE2b-256 70cdd2a9bd90c724f6e4a7e715d9f9a946bb994de74cc272591e958038752978

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0f91c5d36576afbc8bf1c6c97a132a526bab5f1381d8eea2b3ae9cc42416aac
MD5 36ce82d4e96fde6dc844646c3802aa00
BLAKE2b-256 33f398154d4c0cd5b6138991fd0cdfeb955375f050aaffd51ebbbee53e33d482

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4825802cca6486b4d991e52dc2feff49578a596b5deb643a2798bfdee148b6e3
MD5 3075fb28ba0d4adba6d9a92572b21375
BLAKE2b-256 e97f7cf8fac07797a76909d6eef4ac888d68fdacbe7917315e4e83e946a0ff50

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5c6f261da41da7cae2fd514e47da661eea631964615aab631e473e96e7f1d57d
MD5 3fae2f3321345ebbd1430d9589019282
BLAKE2b-256 f6d1b93571fb95aae0f6df849b7b387bf01a6a800f348e1cb748c1681e58391b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70bb3ca2ad155f4cd22cd1d79803010a247042540c1842bc2ef3b75e15c9c0fa
MD5 464adf0dd138bea6660b4a1453b3bcce
BLAKE2b-256 361005e574129d6bc8649d9d9b7c63a65e8fde4287275418a530995559a7cdf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 961e323ca4ece2dddb7cec7a5bd8877c019c333f80d4968f0b7fedcaf4c5a88a
MD5 577798d6face8bd67f9a7131f31b5f24
BLAKE2b-256 87791e507f4adc8a4bb6eaefe40a1060ae1a2fa15e98cf606b3ddc62f9fdbcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f341e764154ee2a34b4ae1439c849eb2f3f6b7fec9d16c2142fd76bc16003a9f
MD5 99e3841822072697863380e0d2a33d52
BLAKE2b-256 e1a5fa11cddefd09ddf5ed2fb65c95abc157b8605eaf76c38988e611dd79e152

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d44256a9e835328efed583400ed9b5a66c764945884880fab8c0f9c8a3346275
MD5 b589eaed2a7796ba49d1612b260964a2
BLAKE2b-256 32bd774d80fa4d15208b0e1219c642ea05e8d26d4e4024463b209c1c8454f561

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 24a469915ae10563cc28dcd0cf261e6b0f8e4c55bae17eb872784dfac503b31e
MD5 dad2b90934b6ab7d175c8a2050744ecb
BLAKE2b-256 27315a092dd758ecb7f4c0ee0339dd6902780426042484657630d26d277d98d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf34fc01936a8c82492d9c83777c099efbbcc515ce97a1067cde50e33a4b4300
MD5 b4322842ddf248da604e31cc4a9e4dc3
BLAKE2b-256 f509357e8305780a911d180a4b55ad9857201d6f109704d458a5870d4361743b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: backports_zstd-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 270.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 263567d99a17c1da9af2caaa64711f8c17b748c82ec19f8c9f39fdbdf4c4d2da
MD5 ed66ff7ae733ace7fd99de462d8021a1
BLAKE2b-256 38faab4bb130d074b9baba2767d26a76f72421ad0f608c59e574cbabedf24394

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d496d38f25d8a123fa94123255bda705eea59ce2f6a741fb854243e858f76fd6
MD5 668f0ce318b4b36c48a93d54c70611f4
BLAKE2b-256 6daa1033abe4611b99f57466f39aba87e9b5ae710d81f3a875f09487e83167ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1165ed303455d9e7bfc416c208e769b6671acafb1406b01b7c3de3b16845399d
MD5 1fdfde507e5e07ef3f26f9283994e8bf
BLAKE2b-256 e6f89dacf3ec7da696144c812391704e56bbaf2a0d08150b69b0b444a6b68000

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 92e578a80b78b94f06c831872fd2ba304811b21956cee3b75b2ac4ff7a49cb47
MD5 71b27279995977a989228a958ba9d54e
BLAKE2b-256 46053fcbc5e5c56afdd0d1d1ee16d4ab6dc888b934811a9b96a19bd27b4b584c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1cc760010f971a2f01ab81634df4eaef5da36dc5525321d640a4201e3a947ca
MD5 1a6920b29917aa3eb81111656fd22bd4
BLAKE2b-256 01d383715fcb8d0c3b4c2b55126bac8c7623b70097ac7bce823063564c484277

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ac504fa6b90a075586e0bf194db1b91b231c57654f144e6a6662b11bcdd3279
MD5 8a04b1bae55c18133eb5c0f09426f855
BLAKE2b-256 28f729330e0f8295d1b4b358349cbed898d01a9126668c0c42170c25a1950cd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a758efacb0907418bfca14aabc0865f17b59fbfe7b2e0b6941ac40b56d4f22e
MD5 7c85757c5ede963b23d3d6938d19bff0
BLAKE2b-256 9e6edbff90238dc75a5b9bd65ce9429b7a7e6fc5c8f1fe134185a1ff14ce7a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e4b6706044b60a9801a9c3a198cc34809200cb2d09231bd5dfd8ad928f42ab2a
MD5 2baaa76a1e4f67cad74706d5edcd9bab
BLAKE2b-256 3be731f0ec171f26d5b2d69fb6b9efb344f3087d0d7f9c648e6e0267cec32fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f00a9fd696929476a9db4949786051cd09e46681a2cb453e8eef530a24f4c79c
MD5 7b3ae62783189bafe8d287b0f070b39b
BLAKE2b-256 a41e47c0b537c1ffc6c7d69385b3305c99139f6ace99ce5f6bf9a8558741e3a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 243b3fc102e22ce39e88224201a0f482625542b654ec9b7f83050003d40658c5
MD5 efab9204be33f8b9aea50c69ca9810e1
BLAKE2b-256 0387fe0a277a2ab0c5d2d796feb0b70ff0ea4c3f4217d9dd3310e29ec6992feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 74b27f5db0af39519873d27310db214e6bb418abc2ef0cc683beb10a3ef1d4b1
MD5 1151330f975d2685553c3120ac05df38
BLAKE2b-256 907cc25c66ce035df9e13e7de702febcd43070523afd30ae71fd698974eebb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 092aef13101a197c36636e98c94a671762da83f68548f28ee9f002bd96086737
MD5 c4a7b5cea2fe98569bd8454526ce5cda
BLAKE2b-256 faca180f4ffac54595b7dd779abfb0e8349e052feb7d738890e35ba6eb5aceab

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95f9fcf1ccc360e2347f7b45f2eee5cb13343802e8c67476fc1b688955c6deac
MD5 725d650f9290aa8bccb51f45844c95fe
BLAKE2b-256 e33e7293c053fd276ed53e3f347507fbba3de5c1d0db25e2b4eb536754b6bd20

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0f7c7afda2c95b2b62a71409fc2148298e52a43aeaffdfc856ae1f3c3b9743e6
MD5 fb21b42571c274dacd4571f4f7513327
BLAKE2b-256 a59016b4181cdea8d7b3cb08915b2a4985038b18e0c3b41b6b73f07c1d6e447d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2b30e53082fda6d3dac72eb06cf2385681e94c44f4654ec809eddbeac172b78
MD5 0a091807dbcb830d096b8b897b97fa06
BLAKE2b-256 fc3340ca03c409785d0f1fc312e2823a1d682f23f17974c8e9c647548dd52b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: backports_zstd-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 270.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a99b59e67fae3f06f1961c38ac21fc9597ddc0d6c0c1cf140a63e9698bcb16ec
MD5 6c4dcbd737c12f6618758c888beb595a
BLAKE2b-256 c7aa3c8a6367c6d074f56ebcca0705e479eef5bf4548c816a429df8b3bee01da

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33c4899812f3072745c19d3e414d8baabcc7226ef7f3ed354bb883686a3a360e
MD5 f2ab3ec3984059e22a40d86a5d9fe8b5
BLAKE2b-256 80f61c7f6a530bdfdfd4b3ede0db7ad655453f7833f20f12a419259587f992c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9e64c46babccdb1cb691d9953816023d84f422c694dddd2b317036257e4b03aa
MD5 ad069c21222c05bced8d1d8d0e2cd5a9
BLAKE2b-256 d13b0b1b7b8a13b635d5cd0c72999ec17d53003be8a9db7e96e0b1d8e05c3f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 52e4e410f3cf3986ec61ad4689fd81828d25ad38281dd8fdb002babc3f2615b8
MD5 c67589d9948610cdcec22ac37cd76822
BLAKE2b-256 b574f2d2a97eafe2ed778535b4ead63e2f547ded0173fcb4d1d45eb36495cebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6d518a044e16d0875dae29396a28c705a2868002595554ce81a2a75ba824d2c
MD5 3f28606285c59709bf8a309208d00dbf
BLAKE2b-256 8da0481c051991abfcfca4961f795b1b93a6e012b8fe4f31d964a40395d6b4fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d6fbea75b679021e72dffb9e3edb58b69c1438ef555ba9eaaf00edb1080a04b
MD5 eb094a194356ec735dec98f4676744f0
BLAKE2b-256 2e373e3f7f023a2b25bd10a12f4901c984430968c4a4f1c21aa700ef722d4d97

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c9eab7853e7b00b5c9bd5563757be9181c56d958c0a6df9543115a5a0b5fee6
MD5 47a1060e69b499d588ae1cf54f24d167
BLAKE2b-256 61ec66c6a29224d4d4b9243476c14471ea62359ce07b9b286a2e5974c0a9cbba

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9c06ddc7477a8700c44c3d4a4c1be4a43a044ce5fa023acf12ef5ff6d091d6a3
MD5 637d56b4a603213cb1c5a73ed73835ec
BLAKE2b-256 a3120ceb9a6aac8accfe552400b9e1360b72ca34c408c7f2df1e8fc10fa68f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 263dd25c4bd8a86f3beeaf88c74a2fa9b0a2776e0398cb649e8e3bb39753fdcd
MD5 485133531b77f0a54afca9b94ca0d163
BLAKE2b-256 c7d43ec925fa222734985d13e1b328a8286424f139e6c35e48cc130b7f26ea1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 904b0ef8c01d79599d44ef163747a8f187b1ee2cc31374751e10d11aec3ae46b
MD5 89d26415631526437b82641edf8d5e70
BLAKE2b-256 7bbd5dce3e14e65f6a6d97f784ddcf73a799fa294cc167f2de03e29ee2cb5250

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 158dcd54bf3a48001b9ca3b57d71e19867b5ff6b5b093df805df688adbc9354a
MD5 04c90ce7f31fe799d601ece8f8a2508a
BLAKE2b-256 f33168658e836a5da75211ba906cf4170386631d301e0804e95a84507ab310c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a001f30fe1efd9ac8a06bb40cf20546344eb3f3e29dfe0f2e3e5a62340e0280f
MD5 a89857d7deb9061e0495604973e01d66
BLAKE2b-256 739259aa888168abefc6607495b66a9f99929591c161adfac58a99736ac99de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad3aa8c07b3d14bf341d8ec9b9f8bb5f5e4832fa3440162766bf784aab840db2
MD5 d534852bd0bb2a35faf4cbae5f853648
BLAKE2b-256 93de37893dfb88c2094c04d0558ed73abf70254a26f97800f34419072c864ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cfe19991d016fe700308ad129aed9dda37db1c1d8d279ab5c0d97d845634fd8d
MD5 aafe1077346f5117f68d55654a0d711d
BLAKE2b-256 1feef1d85a6da8d1e2ad17df551c21467f29b98db739aaf237464a1f7d4c742e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e696d0346d09565622b1fb8039db803ef8021633bf231a5a3d2f5e8223fe7dc4
MD5 a725f96a9881fe044c026b516d53206e
BLAKE2b-256 36a9df7df1508c3f055ab1b580504b077a5cb53dee63ea2a5bd59da2c591789f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: backports_zstd-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e34d201f0f61cdd3909c736156d51c7dd6df5d64e9c6d1acf311381692a67d16
MD5 40ca480e2cf8fe6d3d95fb5b99b47d0a
BLAKE2b-256 da069b7631fd7805dc034c3cd795a6b2e8d34c8f2ed1fbc8f9aca9b2c759f6ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e92bac86e2098b3e07a98bb973ef49fe20f34f0164197b145ef4fcec1be83eea
MD5 1f8d8b2aef5f494ce8c2f2d74e6151b6
BLAKE2b-256 13bec2a8d8f2022c6a0dbe2afeea14e3e03cd1bc3934f55e98a3060b18d68086

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8dc9e17daff3f373d1c881148ddbba5f401b850973cffb4abb3772842b6107e0
MD5 c28e8ba1ebdf80025a5067103544d466
BLAKE2b-256 f3df98639eaec7e5d3e7631f2221bea3ff3806981ab49c3e659e8e2522297f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4bb712639ab618f8e70d5b587d9b4697d19cc072350e3d5ae1ae2434fddcfbf8
MD5 0ce30d06b3e1624e86746904ce9251d6
BLAKE2b-256 a2f0cd2e6dbc698abbd044f52eb3c1bfbcf29959d873e0e7ecb394d405fd7e4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05ad0892bbd7a0091241205176a6e24e5ce15c6032ff42d09f316d7d84a1afbd
MD5 baba13a68f00a09e51e1db569fbdd001
BLAKE2b-256 166b698240de4a591ed7ed9d6839c80bb760ead419a1fc9b3813cd3f5a6e8114

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 976d25b5daa14ecc0d3d6b36ee84d262f7a18aeb7ec728e59b6fd1cf6d551c13
MD5 dbd738ceddbc3142d072ecb1f890cea2
BLAKE2b-256 b217f33c5e047ff7e3f731ae012694bc10e083876f7f5fb928cfeb3c2f49505c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 878cc5f99066a2c2a513ad267d40477cdf999c8803c800d71e6f8cf4aaa3ce88
MD5 47620663e078a9b8c012171832e8ae7b
BLAKE2b-256 9fea05b4f0dba5ddc864c2d8516f7c6e3153f505550423360287355cb140a4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b98a09fffd3e291ef983f3c7c938ba82e3acd9eeda3809fd83269b4ed32b89be
MD5 74296ab3272e6ba26bc00119d7d79b1f
BLAKE2b-256 3a43bdf13bc8edbf54d610400439c6a7b2fe0d3bd236a6fe20be03ca73a14ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6a626f251adc01187787d2cbc0d6d65826bc3199b4aa73ee1ecf7107d3a7706c
MD5 65a030fe38601226b7f770e4cdc273b6
BLAKE2b-256 9ac99a6ad29834b565ff7d9935b24c9891273ec925197d29f0ad21662c245935

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99da1e35dd78b45fd7269f05e9b5175edaad8e41040ff61771ba7b6e7f26e7d3
MD5 654b1fe9249143ff8e7f1cf178685884
BLAKE2b-256 636c671743eed7e9eba5be92781b04da01c400c355d83ab675eb2a31e28b7cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 0bb17c87c7c33028fc0aa8608da03d4fdfe3f6051f9d3e27e25c012ae941a37c
MD5 523c45b55e2fbedcf5a89a2b77f41698
BLAKE2b-256 13dbf179893c2231dcb829524ec5d49c3611ae8a24faa4bad2dec5eb9ad85d49

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04531da97c2ae3125821f99db59ab136f6a1238d2fd069cd6a0fefa679cb6c01
MD5 b88a507bbf8d878e949f5a94e28bead0
BLAKE2b-256 ace4fa49bd70cb8f21783ad32c712e0912a00a8398b470edd9c3b0d0b28653e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04da179e5a3e07565839a95cbe11b187c8420c92fd73f7952f1851d64bfdb688
MD5 1558e7592ea35c5dbb37552d9ebb3f10
BLAKE2b-256 c3d93dc9317ad19a7aa19d0d0764c51f95aa92803f0aacd1467e01d937be1225

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4f310e3f4ba9af4681089d9023f62a216611b90214ec53e4b62ef437fd4e25d8
MD5 e1982a6a7ebb74f803ec03d90341f86d
BLAKE2b-256 030bb63f1d3d26867309e56b116d7285344631dfb538683b312518c23e330b00

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d4a340a1a4084e056443fafa85f78e1259d43d9b4c0704eda8eb7ff6e8ea1674
MD5 c99d141391eb5e6d0bf1331d736f7e23
BLAKE2b-256 d018bceaddbb7f0f793e4b01cca01de34952f12361665e15fa321fc54b11bd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: backports_zstd-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 08ab9e1c1a4f212943695e8c3f49b568568ce8555942a4f0c763ab252c73d54b
MD5 42a550ea6b562084eb22d203078457e2
BLAKE2b-256 1bbe7fab09e7f053f5d7f7b8f35f29b4a74551a74812bea62b9730d2f28790f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42f932a98edd592793a7e0d08dc77faa1d510198390295d5adb2e557d71ae605
MD5 39e9a5ae789dcedc5739a364b9be389e
BLAKE2b-256 d9d724173bad01832b6fbf83b24ed6e659cae65c7a794f172ee659888c4e1743

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e06ad6ecff35d419672c09bd72a5cb7ce7ed0d832980f3ae51fa4f4961ce5aff
MD5 5c56283bcb525aaeef72857d209f241b
BLAKE2b-256 3db8cb837ab4a983e09ccdb14408c2c093c21bb46446949d390096245f4e0797

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ca2085ad4f12906fbf47df2e3441bc14cd33af69a569ba4ed5e7b23896d35dc0
MD5 09d96fdb104d237e8878264a8ae09792
BLAKE2b-256 4bd34d979665d45300d60b2ceaf4cb7508b46038e0e7a1014eb2195e4a6f6fd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd56663480f267f62b1d39011f6e27783e5fc9c582f59f1f0fed008b2b580a49
MD5 6dfab8420415e89b2136d1b8dd448afb
BLAKE2b-256 f32772a8695f1469e8acd43f67cee7a2f1bfe34aeb8024d1e91f918d7d632fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4297cf1e87227e342a611fc7ae59683febbf4b1c98b5771d9a2df759113ea9fe
MD5 a5b76aac7278c511876972c8f4fdacf6
BLAKE2b-256 5c4badb38d8e6d70a0bf4aae7c37ddf9fc113e6f2a7c57244383078138da5f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d48b8db5db3b4efd7f9e22b0b55e33c2e6a3375fae685417afb655fdc8acc9ff
MD5 c92398a6db7c22fa19b9529a150fa91e
BLAKE2b-256 0eb713bfbb98846d9d7a389b4bfdf5ef14b9249e4ca6cbd5586b512b635eaa93

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d7848ee66d3b0b9b033e6c13ba3e8e7110aeaabef7dc7d15f47b9d2a9acb4ffc
MD5 041dacd4a092b2c3c1127085ca618bcc
BLAKE2b-256 f2d2989e991f78eda86db56d6da168d3bcd49fb19fac1801d2ef549e0c74cc67

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3bc0eca37d618e1c02d2b6dce7076e0c704675d876f020ba4b9a8080fe6bdcd9
MD5 510e786e734e7791fe2bf92dac3c2565
BLAKE2b-256 5950b6d970da22c98a135dd9e93aafb0d6eaeda147bfeb7fe7f075a946ece653

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07c9cb4738a79d0434a51af941fc6668f43e833f1d184f390cd74cd8fd290785
MD5 7bb0fa9ab87607c5c75860f8209b260c
BLAKE2b-256 6adf193d2eddfba04c8e5b7950af50072cb57b1d71f293de19346312a5f7c0cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 143a13f27ea30bd3502615759685aa80deb40b553623f40452bc6cf8aae24a57
MD5 cd2d40177b4ca36af6accb354e08de1e
BLAKE2b-256 e305307958aeca76d55c05097b227fbd22bed32cc77ecbe95789c17f87a1350d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4762fe67032e300070b139c74ecf0ff0a4f1e4c42c80b40b0dda4d94775cfbc5
MD5 188d05d600404202cf033ee62c0baa64
BLAKE2b-256 2218e72205755761e313c271fba150f5b5fd1e63b2cf9f7f4d09ed0ce878828a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fda7e50d673dc4fc325e15030c1833b59f68def855c8cde80321e3690ba3d24
MD5 acb1ba1326fce04e33bfb8474dc8191a
BLAKE2b-256 0e3f0f9ea426ac4ae38c47114791eb9076aa13e5d00052b5531da3b261773ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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