Skip to main content

Backport of compression.zstd

Project description


Install

Add the following dependency to your project:

backports.zstd ; python_version<'3.14'

…or just run pip install backports.zstd.

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.

shutil

import shutil
import sys

if sys.version_info < (3, 14):
    from backports.zstd import register_shutil
    register_shutil()

# use the shutil module, for example
shutil.unpack_archive('archive.tar.zst')

Calling the register_shutil function allows to create zstd'ed tar files using the "zstdtar" format, as well as unpack them.

It also overrides support for unpacking zip files, enabling the unpacking of zip archives that use Zstandard for compression.

Alternatively, call register_shutil(tar=False) or register_shutil(zip=False) to choose which archiving support to register.

FAQ

Who are you?

This project is created and maintained by Rogdham (maintainer of pyzstd, who helped with PEP-784 and integration of Zstandard into the standard library), with help from Emma Smith (author of PEP-784, who did most of the work of porting pyzstd into the standard library).

How is this backport constructed?

The aim is to be as close as possible to the upstream code of CPython.

The runtime code comes from CPython 3.14, with minor changes to support older versions of Python. For PyPy users, the C code has been ported to CFFI.

During the build phase, the project uses zstd (canonical implementation of Zstandard) as well as pythoncapi-compat (which handles some of the compatibility with older Python versions).

Tests come from CPython 3.14, with minor changes to support older versions of Python. Additional tests have been written specifically for backports.zstd.

The type hints for the standard library have been contributed to typeshed and also backported to backports.zstd.

Why can this library not be installed with Python 3.14?

This is on purpose. For Python 3.14 and later, use the compression.zstd module from the standard library.

If you want your code to be compatible with multiple Python versions, condition the usage of this library based on the Python version:

What is the status of backports.zstd?

The code currently comes from CPython 3.14.0rc2. As a result, changes may appear upstream as we get closer to the final 3.14.0 release. We plan on releasing version 1.0.0 of backports.zstd together with release 3.14.0 of CPython.

However, this library can be used without waiting. At this point, backports.zstd is considered feature-complete, with support for CPython 3.9 to 3.13 (including free-threading support for 3.13).

I found a bug

If you encounter any issues, please open a GitHub issue with a minimal reproducible example.

We will check if the issue is with backports.zstd or CPython. We have already reported and fixed a few issues in CPython this way!

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.5.0.tar.gz (994.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.5.0-pp311-pypy311_pp73-win_amd64.whl (299.4 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (413.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (393.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-0.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (424.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-0.5.0-pp310-pypy310_pp73-win_amd64.whl (299.4 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (413.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (393.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (339.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-0.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (424.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-0.5.0-cp313-cp313t-win_arm64.whl (289.0 kB view details)

Uploaded CPython 3.13tWindows ARM64

backports_zstd-0.5.0-cp313-cp313t-win_amd64.whl (314.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

backports_zstd-0.5.0-cp313-cp313t-win32.whl (289.1 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (499.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_s390x.whl (630.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (585.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl (511.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (481.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-0.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.5 kB view details)

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

backports_zstd-0.5.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (639.6 kB view details)

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

backports_zstd-0.5.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (580.6 kB view details)

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

backports_zstd-0.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.2 kB view details)

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

backports_zstd-0.5.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.3 kB view details)

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

backports_zstd-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl (365.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-0.5.0-cp313-cp313t-macosx_10_13_x86_64.whl (446.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

backports_zstd-0.5.0-cp313-cp313-win_arm64.whl (288.3 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-0.5.0-cp313-cp313-win_amd64.whl (313.3 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-0.5.0-cp313-cp313-win32.whl (288.1 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (494.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_s390x.whl (632.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (585.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (508.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (481.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.5 kB view details)

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

backports_zstd-0.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.8 kB view details)

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

backports_zstd-0.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.0 kB view details)

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

backports_zstd-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.5 kB view details)

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

backports_zstd-0.5.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.3 kB view details)

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

backports_zstd-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (365.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (445.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-0.5.0-cp312-cp312-win_arm64.whl (288.6 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-0.5.0-cp312-cp312-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-0.5.0-cp312-cp312-win32.whl (288.5 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (498.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_s390x.whl (630.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (585.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (509.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (481.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (493.8 kB view details)

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

backports_zstd-0.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.1 kB view details)

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

backports_zstd-0.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.3 kB view details)

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

backports_zstd-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.9 kB view details)

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

backports_zstd-0.5.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.0 kB view details)

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

backports_zstd-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (365.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-0.5.0-cp311-cp311-win_arm64.whl (288.5 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-0.5.0-cp311-cp311-win_amd64.whl (313.3 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-0.5.0-cp311-cp311-win32.whl (288.3 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (494.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_s390x.whl (631.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (585.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (509.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.8 kB view details)

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

backports_zstd-0.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.6 kB view details)

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

backports_zstd-0.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (580.9 kB view details)

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

backports_zstd-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.2 kB view details)

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

backports_zstd-0.5.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.6 kB view details)

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

backports_zstd-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (365.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl (445.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-0.5.0-cp310-cp310-win_arm64.whl (288.4 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-0.5.0-cp310-cp310-win_amd64.whl (313.1 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-0.5.0-cp310-cp310-win32.whl (288.2 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (494.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_s390x.whl (631.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (585.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (509.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (481.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.7 kB view details)

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

backports_zstd-0.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.5 kB view details)

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

backports_zstd-0.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (580.9 kB view details)

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

backports_zstd-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.2 kB view details)

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

backports_zstd-0.5.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.6 kB view details)

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

backports_zstd-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (365.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl (445.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_zstd-0.5.0-cp39-cp39-win_arm64.whl (288.4 kB view details)

Uploaded CPython 3.9Windows ARM64

backports_zstd-0.5.0-cp39-cp39-win_amd64.whl (313.2 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-0.5.0-cp39-cp39-win32.whl (288.3 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (494.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_s390x.whl (631.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl (585.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (509.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (481.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.8 kB view details)

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

backports_zstd-0.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.7 kB view details)

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

backports_zstd-0.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.0 kB view details)

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

backports_zstd-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.4 kB view details)

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

backports_zstd-0.5.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.7 kB view details)

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

backports_zstd-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (365.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl (445.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: backports_zstd-0.5.0.tar.gz
  • Upload date:
  • Size: 994.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.5.0.tar.gz
Algorithm Hash digest
SHA256 7130d6bded652a3139fafba875283a74380a4f308f24d2361ea8761e49f837e9
MD5 edf7e7e2d07bcb043713c7569ffe1655
BLAKE2b-256 dc7d0e6af59474b475df640b12fc5850abe6f5d0d9dbf8c3e9fd6d113477fc17

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5c13511c0d88b6e3c61eb1078a36bc47e81100fd60932392dde9dd911cce9a32
MD5 32fe73a96c0bb2049a94c8b3f015e621
BLAKE2b-256 daf0c672f0534a64c19c5346ce663a65076fd0dd481eeecb727ce0ba90037e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp311-pypy311_pp73-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.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f089b93ec29a9ea2f261af7168f368bfc2e1def18337636de4e264e80ddab0e
MD5 69c4132e434dd2cde74fd8539c876fb8
BLAKE2b-256 c218237b7adaf0f47165bdb4d82a846035718a2c41c790c03efe2388d6a661fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp311-pypy311_pp73-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.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b4226e2c83c6d02fca452a42af35e75331fa1f6914a6e84dcd88c21ef4ecc05
MD5 0370542a38cdb7e982ef8f8ab995107d
BLAKE2b-256 c4dd9dea45c9c550fc6a4ca96cbb3a5afd535ec82966c38fbb4d6f9918d966b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp311-pypy311_pp73-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.5.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 826615ddcbf25936822d218fcd7a7f121a0c92b8072829687882935f670206a9
MD5 4f19d6ac3c9e93510c3a1902e55a36d6
BLAKE2b-256 ae23e31080aacff7ce22672cf3cc4b14199985b4c4580aaeec6c7642c7f3ee15

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fab40cd0d0bfaeda4870db5086dd9599cbe7210e0a130c84f007f11cf6d4929
MD5 0ba1c337a022aa45a44397fa7df1ef68
BLAKE2b-256 6c3b1d763923d1daca96abeaff70bf3a35dac31baefce8c188439bdc8ba96126

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp311-pypy311_pp73-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.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 03ec97b8e5248386632fd21e9500c42c6f30c177d4fedaa79378a530f9339dfa
MD5 f612339b423aca36cb14bfb22db765f3
BLAKE2b-256 acbf8880f0150d043a501cdc7f5d98d4adedd6073aedbf11a473d2790c152c7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp311-pypy311_pp73-macosx_10_15_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.5.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e0c06211205895a750a456a4d4c731f5e5122c64a98e9c2ab8669afc4262148c
MD5 5892c06eac173dc6de90dae1fd8d95f6
BLAKE2b-256 939fe7d5c886ef3f64c27e1a2a6b44b72305c9b62360a4ef00cb6fa8717c19e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp310-pypy310_pp73-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.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eef5ad3acbee05b9d92480bce961f3ca87b2836251613a0235054b6fa9f0cbd6
MD5 d93978c0a8d21bb8827aa1b87862f84f
BLAKE2b-256 c61d39de261d482e8b8b7c612b86b0d6c93fa2bef225a517244dbe4151ef01b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp310-pypy310_pp73-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.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57a954ef55852c275e67a18ab10c98fd5e1c401e13e7857b52bd276d52bbf2ce
MD5 2a63fe1b64d69cfe0d4d922d8d030980
BLAKE2b-256 0292a4397292682698696c36b1b78c1b991e387156f537e61cd389badd3c64fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp310-pypy310_pp73-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.5.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f97687e0d73607a0143873d8bb1c791f5e327aa473d66978e8c86d080d52b6aa
MD5 8445fcf24920861bea2814464220693f
BLAKE2b-256 b6e1097b4f0fdc2d08e663c9dac205b41a7d416c516520c1b4a07a88acc0e6ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f87082fc7b8bafbe9d3da7ed2da11c633c07400d52b40ff45a7f52ac38ba4bca
MD5 134a0b5316a3b7c1838c76ad0960dbd4
BLAKE2b-256 c20c17a4631b8c2fe3bfacb26358e80fad1e3f454b2c6f06142778115e14c4d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp310-pypy310_pp73-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.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07fcedaa07d78ac473e3ec067de5adaa6a5a7d6afc69ed4a43adb8d7cd83e8a2
MD5 eee7f1308c608be32c8b933ea893a88c
BLAKE2b-256 12d58a7a7ddb8dbf5e32a600a05b06a5652577efc990adb632affb3f66c82d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-pp310-pypy310_pp73-macosx_10_15_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.5.0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 24ada2e01ac59bb38c56e9348b0baea9308b6353975ffa7b333697d0466ee734
MD5 03336c18e7ef42f2a03c02cded21c3f2
BLAKE2b-256 22a32ad29ae3c9b0c07808a64fa8d73440be24c9b5ba028064e6a6bd6b279c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 202b5aa344c690a883a280bdbc2c7f8e4fe5f2bd125548c9e79ab4b6603264cc
MD5 f12504f7090c2db9034d039484b2d66c
BLAKE2b-256 cfb960e0e6fb12fa352af2b578706fc4f14a69b3ffe73af14d3c01f478287b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 892ed2c7bbd2e8e19f6af582423313cf396e734c47063450f713e10332f57f5d
MD5 4c4fb2973de2e3a619eb890a83402e1f
BLAKE2b-256 81ef35c375a952c303de6b7b7b816f970a7392064de4271eaf34fbefdf0610f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 880c37eeae92020d0255c6ab030dceb56b04bc6355daf803efa42ea272b9e8fa
MD5 57c748157247f8349e411f4b8f7beee8
BLAKE2b-256 c116d732ca80a6bebc096f1a7234e00fda67c7f83f70e23c08e365f6131cf6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 47bd3f486079b9617c811a8438965db7395cc07050311e1266c667381880fb13
MD5 fcf05c53a0265b103af7bc38c9ce58b8
BLAKE2b-256 cc5c005e7b2fc4931add793425d0f1a8693a37ac4ae52d26ffc329e621d6c593

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 92f96919373b7505d5ec59e4f799979305a81d5cb0a66ef33ccb534ca3c7da9a
MD5 e1a596d7d0c4fe30f5e09a1bfb3324e2
BLAKE2b-256 b7f2c2c4a39a06466671f456cbbb558355402b1c368aad8aef1b6a1a660e6818

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48e04f6014b882a572c657265912a27406c7701440f7a3f456ec6d4d992ec8d2
MD5 fb5f2c6b80661de9d281d9b8512743d1
BLAKE2b-256 8c110cd1813d531f4ddd71f07556bb76b60fcdb236a4e1a39fd68bfb7bd94e11

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19de6b697c46b3099c66920f91a4d3016b4ad00cec18419f127d6a60de5c9508
MD5 04ec0522ad27c43b3550a245e8f88ff9
BLAKE2b-256 0ad8e6a0959387171d771879c79bf95b039715f24b6de74c5b8512ade43ac530

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.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.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b50a9293f89fea7a238d5be185d4895259bb557047742420cc5e2fbd4dba8da0
MD5 65a8239fa846b9dc54649ad580f462a9
BLAKE2b-256 dac8b2558bb8a6112e6ffd23944541dc9b4d25c4d66348c9243b2e7616056647

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ae7ff8f298c7cd904050ca0c9414c26c12410cfed29be74bb1109d0550b85dbd
MD5 ad73d3ff94a5dd7b04d3347cc4f4af45
BLAKE2b-256 bc2aea636b6678052566e7fe96166f6f26e780f21d766b43e53a2aa9a3cdc3ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1f443d06bcd574c86ed5e4adb402af3c186272eee91720908fcf96e655c46f13
MD5 30b8a02f75ab23b6a4e72a638ccacf18
BLAKE2b-256 0bd455329c928fd7403cb1bd4e05c834cd7eba0b1c90a325718ecceb1511a28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72d887f877081747a472f74d5708eaf79af3dbc1fb26e376e7b8ad70eaf54f0c
MD5 d7c891790294b554d7f943a0282366aa
BLAKE2b-256 58c20f61b60d37f539b619b67dddb58ea0c8f0d5e2fa0e5bd76014aa1056475e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 33b4643f2c7e88f1c808468d13edb832fadff855f4377db4cc96a723f14b875b
MD5 9394d53e23f5eccbd3cdaee6932317bd
BLAKE2b-256 84c482fa9ab3bbbf9b914a5d005ec250e399a4cd4ef9539d10f11f0a65949d6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 742eeb55423a14303cbf339201ba5164b31c2258902577c01354eb9994eb85b8
MD5 413449b4f74c250e29093eb5a578d0f2
BLAKE2b-256 c369c1c340e72deb2d05cab662971b22a58aaf5f83f1d7c5d91e8f385f6496d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 503202d54e9a800bdb0aaa290233359828a1e9857a8934845fd871e7f5fa338f
MD5 50d63922750a01268f019135f52e21b6
BLAKE2b-256 6fa7b73f58a7c892bfdeb993e997f87c1a984a2c7d7a88a8c7228a46f8b443f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 269119c9c21f3147623d14a7329d0d03fd9b4a1ffc97bf0f3d3ee5d583b3541a
MD5 e6f77da9c26b0428e9d3d04c8cb4411f
BLAKE2b-256 140efafbe9f943ecd1047ee9479ef96ed1b8b227f65adac33a8f48a8f08eec05

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ad7d75d545ec30392128c609f373da766cf35fb8d684a5f14b60b95e6dccddfa
MD5 d2c33cda1750f1f4e8f21e95e060f32d
BLAKE2b-256 74dd15759ccec51b5f87e29d6a437b8fa0883a3233e8031bb1ca379a23cf2f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: backports_zstd-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 288.1 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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 470572dbc5e86ae907fbc5a8af82b43f63a10b403755e6df8fc98248eb42e9fa
MD5 c42b4e9aaf44e29e6f048e17db68b432
BLAKE2b-256 7d31d891356a05b09ec02d806a7a6ab81a55c018a325b782c76ed2c703acf38c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f41766dc3ed7eb21bc90e8ace409f5857cc6e920b17e4d8c3aed5e1f6683847
MD5 b3b73d5d728316c748b801074652313d
BLAKE2b-256 a9e8bfe65578e562f271e0e19a55c1ff368b9c234a5e4ef0f95efffce5d81a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 23eeab8e7b1732e20cc69b91e09d4eef6926cee696eec9404c77abc2af01d097
MD5 a816e33b74ef0b1fcfc585fc6b234c2e
BLAKE2b-256 afad16bed15b8cc2b8d3c84931d1d6f004685f009e1d935fa49db50e17583d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3a0d9e8086c377bdbf55e25be6a9bf11e5e931adc9d356ad04b30fb1181df0f5
MD5 b86b1b899b12477c954a809055078781
BLAKE2b-256 ffb10861b10e2f6a47b94f7463c145c4543ee8608e5fd253c50b80d37f72b48e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5240216c51a993f9d2f3db094cfedc4276b05d61e1acdb037958d72aa0314703
MD5 cae5fe51fa3b0b717159e74c02d152a5
BLAKE2b-256 2d1cc035501b55cf692d77393511e900976055a5db4d8920f8cdd997ceb70367

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cb71a7020ad3f6d5a88d99a39a6239f3f70d7606999a90d23afc52a0a2d1659
MD5 567cae96b4ec10772eae094697e7cc51
BLAKE2b-256 d1e3e72c597cb4e635f1deb9a3e0485d51d6ebc03ebeab76038f93ead65c43dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9856454110c06005aac0b4764356067b70bd9db82b94172dc894fd9b153a244c
MD5 cf2e2057e7b7c17084fad74d2e53d02d
BLAKE2b-256 40e5149f94143a5b5f8276f237df27c5b588dabdb0bfb6d0dbd08b96df2d3812

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8630044541cb5b8681f21ef0091d76e6ffa92337f9a84ada43e9f28f615dfc44
MD5 cb31adffcb93a7c60a17a2b0bde3f563
BLAKE2b-256 39e7b8f4f260b3548b1ce0e468bc1abafd72ad7269cc1e7a38242f789144011c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e20b8265dea3634a93222bbd772f07071fc1f020b73012734f7d84de56e1d85
MD5 beb0b0b1b8e125ec5f66fa0fba59343a
BLAKE2b-256 fa41ecbae04cac2c8eaf3d99d8c41821591f435c81007b64d99462b92b9c9ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 decf8c19de696f99ab03dee49d30f30809e821c9e32e3b070690d64e40fda9e0
MD5 82823f52a9ef7573e3a4ec3e17a2bf81
BLAKE2b-256 e544d0ff8d8c7cf790964d9cd7b5056d66199c73a1c8c4f96996575ae07ab9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 92f4d31ef298d754f26e629ae6f8546ada0e88100a0ef166ef4eb9c2a5d36358
MD5 de8ff8f686f6c80bb7af82a57a81f403
BLAKE2b-256 5f1bd9df0eab8676c4f179732941f95a0ae23154b3ff8f4e69cdca4112508cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cd2a225facf566e4a72957dee2f1f725573e2e938b64626a054bf08c69de71d
MD5 2e63e137a7237798d15760e923c0f5f9
BLAKE2b-256 898e21239c978f381cdeb8a74ec1e19111e545411bf797dd411955711acada6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f13b89e551346b8ea5596d5503faa18a6a60409874b0db046caa6a46a243cc7
MD5 4b6157d6c488ed9fa2d8df1eb5a0647a
BLAKE2b-256 18c93b41f4707f4b35b044f79e731f6f87b714f24e370c9afa91c706ad32d0b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 adbd25291d8ef5c7930996c36b952f508feda4a42f5164ec9f2b116696d99b44
MD5 71ce7a9a9b4671f23e2ed8aedc7d72cd
BLAKE2b-256 e10108c552129defb24b1c34cdb8769799a45d7a49277bce8f79fb42913b695d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b89e861b85f1ae658135159c7a49f3ea5ea081b36392fa141efc18d21d85a819
MD5 305ecd4f5abcf362ab67a74f156fb3f8
BLAKE2b-256 a5a64ea62f157f524579af884584624435f0d74a6a3bb79c5bb75c28c157a05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: backports_zstd-0.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 288.5 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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 813f4fced9f079b1fff8e86af612e3ed8f71b5abb6db9112c5fb32905cd1635f
MD5 c7062a1eb101b405b6db3040c470a4e0
BLAKE2b-256 1e2d28326d5d328e8cf4e41754d4826a0b30ba65c86478b524f89ed490907d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4db9f0e0b87d2e9dee626d5b07609f3d6792595d3ebcedadad2ac57564ff170
MD5 6376202c7878df919d49e736ba150b19
BLAKE2b-256 c4f1ceeccbc12f74eddf96ce4e225baf8fa5b74072f29235c8c48a802a1b00a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 528ccfdf1de8b3441aa241f3ed52b42b9d960b718e841663d06e765e1f17b95e
MD5 69a1321b0ef09f315c22d33696b8c8dc
BLAKE2b-256 b04f1814916b8d18e1b8d920421c58917322819d5f5cbe4fa2918e861836ef61

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b3ed1b8a1f91b846992c1da79011ae2ea6b1591618bbf2ab2006e35c5895b1b5
MD5 79aa9602090b1e43b6739da4338ff8ec
BLAKE2b-256 08a4c132792c9c2ea529ced8d206b1c4b76a08d594ab23138255881755c94c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86e6294724264b60073bf93aae0bbf6f31fb0ace99de977cbcf5f32cdac19399
MD5 2e1458b55835fc3323b8b744aa6a7cc9
BLAKE2b-256 9a08e92e2d863bb32e54c97dd163dd69f5d0322ba8bde689eb3e3549c9b5c832

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0fe04118249ea763775ee1f24a998e2f2d6f04c227e02b394a326b5a9fc4a73
MD5 034cb5014ec1df8f9d33769500ec0310
BLAKE2b-256 da92a508727a6a609313afa64f32e93115ccea98969c9c7651e8e4f3856ed4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 338ada6a2935dcaf81756ea288fc21e71101ef98ab4aeab147700d39e76be733
MD5 12591b9770116bc031b7dfa8908b7d5a
BLAKE2b-256 8fb8a4c977962efa7c9b01a43433036bf36dc17ad5774a11ccace6bf0dfff4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c3248bd9f57654e5768a86c67c8c7df1abac16f294022e93d98b565e1c90402b
MD5 2fc4dd624ee4e7e6508576807002c3fc
BLAKE2b-256 df94eb197b4da24ce81fe754e8044eb45d907a62267f47709566ffcd161be358

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f68e7599e8467f80a28cc36bcb14981580022f240515a99a4d8730801e32f2a5
MD5 3cb1adbf0ca70a72a35a0ae53fd7c018
BLAKE2b-256 65c4bc2fa08427408ddaffc796916bb9f20d6d3f122e2bb49841e48cc2ba8a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96b869e90877fba75ecf141c182840a1945ff4fc526b78b05bd82916dcb939d2
MD5 fc80df6ba9d040d8894399032f373b82
BLAKE2b-256 3bd29cd1b2c6aca052df2ff84126143e81be202d5066f9f8838ea625542d1640

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 996a04d5b53db7c6407e2ef5f2cb555683d9f057c36207febc126a71e86412c0
MD5 6a430e162c39d1bb81381d16ecb20b9a
BLAKE2b-256 4dfb358202705ddbb1e1d75639555f3fd4863c7192d3c3b94a30f603deace2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 661a0c722306dce5567cabc8b01539d84dfedd83b810be4d4ff8183eba87267d
MD5 de00e2aa03a5f0c7c207cbe0336b526a
BLAKE2b-256 a9aa9d5c6ae55deb716aed810b97e32bd051eaa805993ea4654b2177e96f04ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1250e92301cf62664dcf3f5c14364f4b19163857f83b6c9ff92701d3643e9754
MD5 dfb4f0f9cbf66a5543577cf8dc9c7672
BLAKE2b-256 792845dd9a1d817b473602fa05105e91b03007cafaa347204b1d640d0b09b6da

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5cbb06b3cc910a8a627d1237d9ef956cc0b1cf71b25dd6e517842faf20e67593
MD5 55bb3f815b947aa59f0b698fb45d0807
BLAKE2b-256 eb3e72768f7080e19f99eb2e5f765e5244f166365362cfd112f9f642f989c68f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8dfda2576e18b90dddabbacf6451da61e312fb6e66d32cac9c9cadfb3f16021e
MD5 a32b908d2017d4e0cddcf625b6313a85
BLAKE2b-256 1ca13c1441402f1453f95a9b6d4e654ccc2e9619debb7c468e2fda17530837ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: backports_zstd-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 288.3 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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a39b9cfa7f4fd73fb5256f367ae5084140244ebc3a8a2f475635ce56eba6e9fe
MD5 a48aa65a42bc93ba39534fbc37d537fa
BLAKE2b-256 1af2498f91de86ecdd9a28368b77bbd2e819725ea00ef8cf37d80d0aea1bcf6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6633a6fb83b3fc57bd2ba97610e04336c17a0f03aec0b9354eaa854125252e8
MD5 1d0716b86e874c21eaa24f82f564d67c
BLAKE2b-256 6ef6df800cbf7314ade3cfcb3a91bc6b15899cb0810d8f6b0166e43eb739577a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f77343a4a67dcba93b6fefebf51115780ab34686162a228bcd3b8dc9b35c7a6f
MD5 298832c2cade14da17816fc46839b323
BLAKE2b-256 5f543c39e445bcd7d9103275b517a449aa086518f2136d5e76bfad4c9115543f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 62e01f705087b9f623a4491c8757c7deb5a4ee2d4477e0e7777af0002d6c359a
MD5 fae05ce35a18a902bb55daf77586c09c
BLAKE2b-256 0a14f86069208a5b1fec0f7daaffab8d3a3639447261fa4c9a103deb648211c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35b8f090d4f05107dbd86532f335ba20c4f15aeabcce49810a5a74d15aa18310
MD5 a6fbbafb248f1d20327b6629e3752725
BLAKE2b-256 586939db69d14a4cf6f6523bfef6e6659bd47b4ef23d0e310c2c13ea487a057b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17dae2a9f5c3ac44a1ef27a8bfe6158264e8e8c6b6a573c3d76c75eac226b2d7
MD5 df32e03597372bd2959f9789f713c158
BLAKE2b-256 ce9c741faa0aed2dffc4ef0186b8b4eaa0b8a060c7a19c620fea3096a03f9511

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c79d066a4c650121b2d40206d6d36420d5324ead4f6683c61075628abaff8f72
MD5 475a3ccb1bfa404d91c4a383ae55dcea
BLAKE2b-256 ff970fddfb50e365d40bb1a4681f6cafe53cb200f31d9ba883f0194bb0508ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a2efd0a831d88a0fb5e06cb5b479830e0bc1a2c1d887aa19b2bb25dfcfc9af97
MD5 b1b8d140b99eff4f774796024760075d
BLAKE2b-256 ae0cfc65484af5f452d278c685483e202b2b43860bafd1444bb7e52ae7e529a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 83dcde971e936040c4ed9add0f6cd847edadc0cd992272ab59c9eebdcca0dac6
MD5 b59d5c9993ad2bf2f3d9d38ddef598cc
BLAKE2b-256 17d773d03d2132a3ab8ea27cd11b890aff07b88ba5cea6e372518d34b878283b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72fc302641dc659726048486957811eb83a97fcb1d1eac9c51ce0e3633188ce8
MD5 0d7334b1773d0c8d2515726c88b31287
BLAKE2b-256 f087ca1e6d0468382e654befeb2384e3a856b293f677333856377a6eb8e5e615

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 08c63ba186ff135bb06f7a875d251691e6623d105cdeaee10ca36d4e446ccf76
MD5 a62c7bf9d8dbc9b96215e83a56cebdd8
BLAKE2b-256 1ffed7bae5708d17e4cdf5fbc8c155e24c2494c274b486e3f67253482bbd4ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c11b99720527b028d0c87bc0c41cef302a2e00275945d052ecd1c2a5baf8608e
MD5 3600b9a66575ef2bd4c5c8d5b8c5b4c0
BLAKE2b-256 8258ecdc4b538a33b6e4fb9c16f54a880831efd1ebc37a73f45041040f6a7da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a76c26cb9411cf966a5bfca5bb2815a1b9c664393f6be7811ae95ae3c81cdbfa
MD5 86bca583b0b5beabf7b55babbb8da364
BLAKE2b-256 da187e3392382f805498354d295c2434837259d822bf2dcfa45cb93f10f4d134

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 78dfa37b98d04661376aa3651f27679e7d8ca99da9b6fb98ebb9bd5b6cebc8f4
MD5 b13d2278d3b66f0d18cc9c53f449165c
BLAKE2b-256 60001296ce27617024f2c3f8c646e9a69e372a208177b10c940735717c475ed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 955e0a810fbc10a3c79180365c327d763ae59d0b7b43b18ea28402309644e891
MD5 8e993259d6f1b53766d2744ba50f6c8b
BLAKE2b-256 09e4011817b1b2bed5915a6b02a60bb6e964cb8310fc6d4458a564fa1e0df662

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: backports_zstd-0.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 288.2 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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9bd85d7b4a97ccda6f7c5f6b923bd5dffed7ea6c6de33c5e703d37a5125760c
MD5 1e202ab165be547187ee52c4076fcfba
BLAKE2b-256 261d3504d6ed802fbfbc2cb63f38c6e46a1fc3cfffb13ea5cd8a9242e1d65a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec8f4884313507f09d8941ffc72e86e0fd4dba4b09af50c3f75e756b2c539f81
MD5 6961fcf5cbfbc3b971d29e538b20a52f
BLAKE2b-256 a5deb6b8a25914d0444c3788394360bc67f86b52ca7b8711bc63d431b57b612b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5393a66281b6a298b11ec4ab465c179490f288ab70b98f32b25208fa77fdcd57
MD5 f8e403956ed7860f1c1bcf107b464fb9
BLAKE2b-256 afb8b7020b6360229658a06a99fdeb85000c4fa30396d6690cb824f4ea355c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cbc39389c6575cc58f80d32e27254f49673e0f3ae217a07370b0b0aba83889b9
MD5 ced872d68cf7c1a8ebe8cc38d6e5647c
BLAKE2b-256 c94024d55cf3c6700cf8fc8a090734acbb3013bbd8b1b10ea014345d823ebefb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f863e49ef8edf9e99ddeeb6ba3fe2f923ac8f0f6c6f95bbdf7c2adbb41f23e2
MD5 8f19f16429a8bf441c742a4be13a6f88
BLAKE2b-256 44d25b2a449786dc781feebc1899585835abbd687ce370ba00c8bae3b48c191a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6d574935233c19787f3cd64559270200b96e69b41e6e88db5a15c0e749c3540
MD5 437eb2e606ea96ebcd862bfe8defac60
BLAKE2b-256 db8847f45a1c45d464c9864501cbedf5e8c130ead44e38cbefdce2456f5acd97

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d24121baa069ea092cc0d1ad35b097dbb6592674152f8691c8c8df39fba474d
MD5 ff736c9da611761c554ce0f58ab19e42
BLAKE2b-256 65b8789edefbcc6c9325c41d51a096471596600545ce97f7107bfe831c2bf6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a21d03c51bb4d4cfe950596b52969c0699838a336039b6d0d58632cd8a3c9eac
MD5 667c8d50e6755b3b3f3e5e68e02cd1cd
BLAKE2b-256 e92f8b7161e4edde6b8475fd6ac130b2552444fb87b985c259f694e806cb62b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 57706bc7d56cc6ff17081c241ae4196128b264185ea7fb986818fd1b4bbd8744
MD5 db8c396151d037d62c316d4b186868cd
BLAKE2b-256 ceac8811ba136a5946b6a9c6c660c4051733bc5698b244cad86281e02aad7313

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78c8fb9da66be3a31dd5e044170fa4eb3d17069fde60a8b6ecb398a79e8f6cff
MD5 6cbe6d475bd2477c97e837fa1406c141
BLAKE2b-256 65d034dbfbb05f069d9aa7c6c20aac79f2f12871724560da1b51dd640cb74123

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0a4e56c6223cd5a80643e0e843b8260d0c0df9b7a55d7b9418a9567d1d2e6083
MD5 6fa0559c7e2b97856d41ba3e81c70efc
BLAKE2b-256 f77cc07901e1ebc4c6e1eba27f7ad22e501288cc1246edc8ebff29ad2b5b169f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b21f7830f1b50c7f12066beb1dd4422d2ec98d2f20add6f67817fb13f6d49c6
MD5 d19bee33f781a8dd6619b8746a4cf82f
BLAKE2b-256 aa976bf5a4ffe85ebe2146d3976a3a098bb669f1e6e477e43321f6837ba25a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b5e44571e134d486c1886d407e85d07aad4774374d4fbf79c30aa49de8fb53e
MD5 b8b93bb3a833d217a3ce680f69d9fa77
BLAKE2b-256 227bec321758ee0bf77c119707a02d3f7299365d500081325efee366e96860d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 840df0b22699618f92a060e472a6dc17e134b753891d7fd25dbc5203174562d7
MD5 8fc45dbfcf4bfaf7d2b4ec780c324cb6
BLAKE2b-256 1a923e77ac4c0e6c0b5db9e28e70410f5faf9e39fe606d6afc76069c1fccc672

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4b732c3cd95a0f5afcd1ff2ae08593dcea740129704399e9f13e62c3461521f7
MD5 c408ddc5ca44d96e5e02acedf4d7fabd
BLAKE2b-256 f7cb1794d46c9b1c37a69819f353ffb202bdb1e7c1d01d423b565f240c9f809f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: backports_zstd-0.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 288.3 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.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 16561245e42b172f3d7d70469f4782b27e6d39fbfcaf0896bd15e636876fe2f3
MD5 3bff52bf23dad4bb5705459cc8a3caab
BLAKE2b-256 a9248414015d26b9ad68ba16183c8f595e1caf0971f13b820d397eb17421a983

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8ae38e53121ffeaa9ce629d807eee43f985cc025e5a3396d0b737d546fc0ada
MD5 fb6dfa9ce3aabf2133b39e34bb84d7d8
BLAKE2b-256 c95c9550682810435cbf6a34f0526a0bda946ca85a545c6bf9b35d5b47c572d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7eeb967add065e6ecd1e3935c0ba2bf14f301b7dcb3f0d6b42e45a6f7b5c4b82
MD5 41fe3bff0030cbf0324d887b3f0b55eb
BLAKE2b-256 ac58b2e51fddead2f0b2b18774669ba135af0596e7b43384657c932e7b0dd9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff504825e272ae7925a024b2ef89fb43b4febe251da0a16e6f2eeb9f73f13a75
MD5 ae6a12f3d33a1282a812bbe4e31e35af
BLAKE2b-256 a85b8582436fafb43677987cc3881a1d2eb7b1862e6fe3017f7e84ca821e52cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97ea4b46360f160a7480e0851bd62180a6e9a14c4355ae1cb8c695e03209697f
MD5 a6ff95ab7f6192358060814ab43da9be
BLAKE2b-256 a837e6af938e832c48b4c49ea9564f44384d4e116c8f51d184b78f9f26c23856

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f2fef7c6a78abd8927441f7537c03274e735766b234dea5a4ea5e385900e3b0
MD5 fe5ee1845b360ea0478558e7d32c2d09
BLAKE2b-256 54797bb59640386a6541890aeb22e3406f5a2fa750535338798adde99af0065c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.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.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6af4a10c48cc366f3aa25962389d486eeffb268b71c9b6de7a167a298eb9ebb
MD5 c1a9f88258357597f4b479d027633396
BLAKE2b-256 2ebca3b6404c1288757d7fec6cfa0d821e4e890fb196c3fb324014a0cf774079

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a8dbfdea5764b8b5ac9baa23292b5f7eb847c1aabf5e650957110da97a695f0c
MD5 7dcd9b3f4157a4ed2943b7c65b79e683
BLAKE2b-256 83bef96a4d908bd8b4061997c08435ae423cafc6e6b9ab96bc2c55d7729cb4a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aef0122e99578c881eb80490580b91ed739ef9896b6a9e74251a74f52ac93d8e
MD5 2df7117f4d15941aff2edce765739881
BLAKE2b-256 4fa1d07eee59ae6e522cd76fb2a9f1d0fc61d4909a61210c8b299e6f4de5a95b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13b1d78f05e8ab9ed4c93363b10da1fed648ad13497e4b8ef4b5faa20f76d0a3
MD5 9bd754bbb6b21bf0defc319c3f01f99f
BLAKE2b-256 3dcfb42ecd5f8efb3220df548293a9ab4a670aaf074bb6336487e494c10d63fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b5b5fa92c3c4c71225ed6ca3940ba57070c72df25a22cd978d3e1a2a7760a44d
MD5 b1583cc4d196f3076bbac2ae31ab7eeb
BLAKE2b-256 5d00bff2c9fb5508c2fca7a6b17eef7aa151f87b227679fd481d51c046082f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_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.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f68e50654432ecfc389dfbd03121209a1dc1758bf80f8182958288f1a86bdfd
MD5 2f2ae38053c7144327ee60317397dc36
BLAKE2b-256 8b460db4b42b4bcc764023288ed0a20fca8012bf5d99982de1788863c0f8694c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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.5.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3690f2335bb6fb193fbafa26e411bb13d12c95b6d3ff843b9d23cf130082e639
MD5 9266ba155f39284aec053a67c07371b8
BLAKE2b-256 20debb65a012018591b09233faa8cc293da569ecf69f383f134d036c0901f88f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.5.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