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:

Can I use the libzstd version installed on my system?

The wheels distributed on PyPI include a static version of libzstd for ease of installation and reproducibility.

If you want to use libzstd installed on your system, pass the --system-zstd argument to the build backend. For example:

python -m pip install --config-settings=--build-option=--system-zstd ...
python -m build --wheel --config-setting=--build-option=--system-zstd ...

If you run the test suite, set the environment variable BACKPORTSZSTD_SKIP_EXTENSION_TEST=1 to skip tests that may fail when using the system library.

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-1.0.0.tar.gz (996.0 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-1.0.0-pp311-pypy311_pp73-win_amd64.whl (299.7 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (413.9 kB view details)

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

backports_zstd-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (393.9 kB view details)

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

backports_zstd-1.0.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.4 kB view details)

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

backports_zstd-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (339.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (409.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.0.0-pp310-pypy310_pp73-win_amd64.whl (299.7 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (413.9 kB view details)

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

backports_zstd-1.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (393.9 kB view details)

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

backports_zstd-1.0.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.4 kB view details)

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

backports_zstd-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (339.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (409.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.0.0-cp313-cp313t-win_arm64.whl (289.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

backports_zstd-1.0.0-cp313-cp313t-win_amd64.whl (314.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

backports_zstd-1.0.0-cp313-cp313t-win32.whl (289.4 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (499.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl (630.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (585.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl (511.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (482.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-1.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.8 kB view details)

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

backports_zstd-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (639.9 kB view details)

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

backports_zstd-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (580.9 kB view details)

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

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

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

backports_zstd-1.0.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.6 kB view details)

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

backports_zstd-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl (362.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-1.0.0-cp313-cp313t-macosx_10_13_x86_64.whl (436.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

backports_zstd-1.0.0-cp313-cp313-win_arm64.whl (288.7 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.0.0-cp313-cp313-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.0.0-cp313-cp313-win32.whl (288.5 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl (632.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (585.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_i686.whl (509.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.8 kB view details)

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

backports_zstd-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.2 kB view details)

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

backports_zstd-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.4 kB view details)

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

backports_zstd-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.9 kB view details)

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

backports_zstd-1.0.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.7 kB view details)

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

backports_zstd-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (361.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (435.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.0.0-cp312-cp312-win_arm64.whl (288.9 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.0.0-cp312-cp312-win_amd64.whl (313.8 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.0.0-cp312-cp312-win32.whl (288.8 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (498.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl (630.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (586.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (509.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (482.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.2 kB view details)

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

backports_zstd-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.4 kB view details)

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

backports_zstd-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.7 kB view details)

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

backports_zstd-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.2 kB view details)

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

backports_zstd-1.0.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.4 kB view details)

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

backports_zstd-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (436.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.0.0-cp311-cp311-win_arm64.whl (288.8 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.0.0-cp311-cp311-win_amd64.whl (313.6 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.0.0-cp311-cp311-win32.whl (288.7 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl (631.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (585.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (509.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.1 kB view details)

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

backports_zstd-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.9 kB view details)

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

backports_zstd-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.2 kB view details)

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

backports_zstd-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.6 kB view details)

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

backports_zstd-1.0.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.0 kB view details)

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

backports_zstd-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.0.0-cp310-cp310-win_arm64.whl (288.7 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.0.0-cp310-cp310-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.0.0-cp310-cp310-win32.whl (288.6 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl (631.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (585.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (509.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (481.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.1 kB view details)

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

backports_zstd-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.9 kB view details)

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

backports_zstd-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.2 kB view details)

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

backports_zstd-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.6 kB view details)

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

backports_zstd-1.0.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.0 kB view details)

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

backports_zstd-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_zstd-1.0.0-cp39-cp39-win_arm64.whl (288.8 kB view details)

Uploaded CPython 3.9Windows ARM64

backports_zstd-1.0.0-cp39-cp39-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-1.0.0-cp39-cp39-win32.whl (288.6 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl (631.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (585.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (509.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.2 kB view details)

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

backports_zstd-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.1 kB view details)

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

backports_zstd-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.4 kB view details)

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

backports_zstd-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.7 kB view details)

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

backports_zstd-1.0.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.1 kB view details)

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

backports_zstd-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (362.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for backports_zstd-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8e99702fd4092c26624b914bcd140d03911a16445ba6a74435b29a190469cce3
MD5 1f56604b1010145c187f5cbf968cf1d3
BLAKE2b-256 04128080a1b7bce609eb250813519f550b36ad5950b64f0af2738c0fb53e7fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 85f08363b7ca504a8bceaa2d4333a1a307d2b2056f77a13036a81d7aa3c87b2a
MD5 9dbcda0a9198d58b5c618b9438625a75
BLAKE2b-256 23f5cb12f5dd6ac648e92d8cec8b69fd4064bd549c126fb0d3fe6d3dd237afbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6910a9311e7a2987d353f396568f5e401cf4917e2112bf610e62385ad02d8cf4
MD5 e54ca1bee31564d8cef82c1875c19182
BLAKE2b-256 fd403f717216e21617e919d12d6520d0da5b22002e07f12638629acc9e5dcc2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67469b247c99537b77f7d402580cbb7298fa15ebe3ce6984d89a5b65d4d5a6c2
MD5 f0e12877d57d48de5597fa46b67a4013
BLAKE2b-256 d910e185f05ec85bc05c82d7efdd75528e695c85181eb291cc4c19b2f26153f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3beab43bfda8e453648b9cce5edcceb5add6c42c331873b41ab1d24232d9c2b0
MD5 d878e1ee37cf3dabff191c92184e19f2
BLAKE2b-256 25f5103645f44a92c4de2860b8d6cf6c5414b63956278764f8b7db359bdeae94

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 479270cd6385775dca98accaf304e5f011d94280ad4681d3e925a1b4dfd19aaf
MD5 317675dc246e71956b76d5aa24ea13cd
BLAKE2b-256 4f9350b2ebb2e8f388bb124c4a39974e29f841ef1452d603045e292e107227b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8191c019cefaf074c3f05ebec5ad19ec606b7ac1dc915b66a0820268e6f0e327
MD5 e3d13a48162b3e7a556e4dbf7561fdfd
BLAKE2b-256 a051f22627d208ab63e97f5441374110363f4b5e0c2ce0b4f2412e753eb12bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 96a57f48d2d64c985393bb4ae15b61097d8fc0d56416e790f7cc09bf9212fb87
MD5 945287295b99a2594cb2e4ee70e087c8
BLAKE2b-256 772b9c1949456566228578d30013e81a593577e63e1cae9e72b058e37ae4c5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6d1fe816c3c31241b0bdcc96364fae689f3e49a923469ad1ad7a9aeb0bbcd67
MD5 ad054db64990808f86c672462bc3b408
BLAKE2b-256 7b90f7bc5c0d204c2312fbe4e62592c92200f19da8840ce8b4a1df56080b7537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c49048ec50f81b196ab0f3c49c025912eba1c6e55259b99f11ee6e8c04226ab
MD5 8927c8e2f9eb4da61166a57db42f1e92
BLAKE2b-256 e7c4361bde3f570804674b9033ac41cc26735ceb4e33ccce2645079eff62a26f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cbbb0bda54bda18af99961d7d22d7bc7fedcc7d8ca3a04dcde9189494dbfc87a
MD5 a97f612018518e1886642aab27104303
BLAKE2b-256 0fb2ad3e651985b8a2a4876e5adc61100cef07a8caefb87180391f1f5b8c801c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4386a17c99ce647877298c916f2afeacb238e56cb7cca2d665822a0ee743b5d5
MD5 e166b9e116d37957c797153f54344b4c
BLAKE2b-256 626c6410c334890b4a43c893b9dcd3cbc8b10f17ea8dced483d9ba200b17ccab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 efa53658c1e617986ed202e7aa8eb23c69fc8f33d01192cd1565e455ed9aa057
MD5 f7107187db7ac3d15e99a6e2c766ea26
BLAKE2b-256 5d35680ac0ad73676eb1f3bb71f6dd3bbaa2d28a9e4293d3ede4adcd78905b93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 b2d85810393b3be6e8e77d89a165fc67c2a08290a210dbd77e2fc148dbc4106f
MD5 502b81da6a4fe503540144584f651e03
BLAKE2b-256 7588198e1726f65229f219bb2a72849c9424ba41f6de989c3a8c9bf58118a4a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8bb6470186301e84aaa704c8eb339c97dcdec67445e7e197d44665e933807e4e
MD5 f1d2bb5aec9437018024d09900661ebf
BLAKE2b-256 16595ec914419b6db0516794f6f5214b1990e550971fe0867c60ea55262b5d68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 870effb06ffb7623af1c8dac35647a1c4b597d3bb0b3f9895c738bd5ad23666c
MD5 f99fabf6e79949b634ca5ff36c4bde50
BLAKE2b-256 81cb1d77d6cf3850e804f4994a8106db2830e58638ed0f2d0f92636adb38a38d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 973e74f4e1f19f7879a6a7900e9a268522eb4297100a573ed69969df63f94674
MD5 1d04af1bd34cfa2690c3ce4f0504e21e
BLAKE2b-256 e7ac323abb5ba0e5da924dec83073464eb87223677c577e0969c90b279700c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7a8c950abe629e5d8ea606e6600dd1d6cd6bddd7a4566cf34201d31244d10ab3
MD5 73190a8e442d2d700dd5991abeed7f90
BLAKE2b-256 4f313d347703f5d913d35edb58e9fbfbf8155dc63d1e6c0ed93eb5205e09d5f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 18f5d3ed08afcd08b86b305bf167c0f2b582b906742e4bd3c7389050d5b59817
MD5 70bd9b7c5907690b6903f7f3827fe8ab
BLAKE2b-256 ebb3328c4835b661b3a9f2c6f2eb6350a9d4bc673e7e5c7d1149ecb235abe774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eed0753c698a21f0d38464c2a6d4d5e770d2ea2e9c3a308f1712d674598a049f
MD5 e4b501302b8e35b926cf5268ffaac9da
BLAKE2b-256 20782cc5dc095b93841eb251d91cf4b3b4c1e5efc15db40f97f003603acaba3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ff181018de5afb1b87edf9a88ec7e62b4b053e75b91ec8ac7819042126ca7cf
MD5 c95ddc74746b704120c747095aa1e89c
BLAKE2b-256 add20f7702000bd08ff6aa71114b377141f2d30154597dcd9459a08554122fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c78c1eaf3fdea00514afe9636e01f94890f1e4c6e8e1dfede48015364b950705
MD5 0bc190ca862a36e5c6d1a17a10bf8e25
BLAKE2b-256 12da490a0b80144fb888ae9328f73d7bfa58fd5ccf8bdb81a6d20561ec5a0ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c8aa92bf9407ed1ba62234e085876b628ecd9d2636c0e1e23f2dacf3be21af2a
MD5 2e0b8cd524a734a7ad01b7400dc5df8b
BLAKE2b-256 7c64553009a1d449033fafba311d2e204b19ebb0dfdba069a639965fb6f0bc57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f0a0c11aee04e0a10e9688ef8d9014af888763507bea85a0d7a7ba5220272996
MD5 ea67b464d9e6e70086145e44cd6d6a5a
BLAKE2b-256 44ff71021dae5e024d7e12b5078719582b26eeae984f5718846c135134288330

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e26b558e0f2413e9499949dd75985a03be008287598916eaa75a67efc52e4f1b
MD5 f58731be84c1a73f5964d941718fb5f8
BLAKE2b-256 7245868e6b66852b64766feb3a3ce28cc74dd86141120ac6740855f90239fb85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2dcf4c080c0fe8f4ca8f1ff560756ae78e6fada721813c1506f8fd3399996646
MD5 ea9d97ae75dee910cdec5fc3c817d5ff
BLAKE2b-256 fa0c165b04a4bd9b39455e5d051f504acab6c5af3583939336bd2c77a2dc6398

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d0459de16491399e6b6d151213964395ba092ba21b7739756f0507533c8e44f
MD5 3822862134d847d5fa1ee530da800637
BLAKE2b-256 a192d1f5e9f7e1afbb730020e8c7060d6101cad4aa20eb13b7cb98dda9414726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fad9af0c89048a50e67bfd9e3509d710b268d4ae0e47a2bc945dca273a17286d
MD5 3835dedbf50835222b5ca9d050382e2c
BLAKE2b-256 a80e83badde9b389c198a9a45bccd38a9dc5baa7db92e531d4951b1c0686e29a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 911a099122ce7cebed9e1ec64c1fa54a6ab461d6c7cec8d460d8b3a09bbd439f
MD5 f1e726137c9bff9e37e38f7c60600929
BLAKE2b-256 fac8bb0067165e9b1066104a88536eac04cfac388abb5d500b3405cf783c96e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d68f7f72579070bfef7890ba5316701c001e90b4455bb5c2591558b9d53a7f6e
MD5 0b3c9b85f720b42a29db252777e2b1ba
BLAKE2b-256 755a318d40e1589908a44532e2c850fedfaedbf4e7c75b6fa3cf4b532fcadc84

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0309f924ec026d2174297754aeb97fe5fa665cfe0f8bc70e7bb82808a7adcd08
MD5 ec4d04db54dbc7854682016ebf140023
BLAKE2b-256 8ac0830ea473e3c6133758a9a421157c8d4d5c65408d565336a59403e6bb0b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df08eb2735363a11a9222203c3e9a478d7569511bdd9aa2cc64a39e0403cf09a
MD5 cec91a79a80ee9a2c0dac41bcca727c2
BLAKE2b-256 43c8ce10a94132957f57860b9440fe726615a6a6e8c5fdfee565d8a1b3a573de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e1d12f64d1bd535c782f30b33d1f60c060105d124f9ade22556fefbf36087776
MD5 5397bafdd0dd1851944507014426bdad
BLAKE2b-256 8653dea52bd76a3ba519a4937e6cab6cbdcdc36b618090eabeac998f69d1bb97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8ea8c5d283211bc21c9782db7a8504a275a5b97e883b0bf67f6903a3af48f3d3
MD5 c0d8f77a6077c64d3c7a66513f54b2aa
BLAKE2b-256 6d67f689055f90a2874578b2b3e7c84311c3007b2fa60c51454e8c432203f1c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a87c4491036954ae6d15edaf1e6d5b1941e13a9df14d6a9952899713fcfb0796
MD5 c0064867cb6d7f2840010a32d9d038c5
BLAKE2b-256 5e9bf32500bf26ef588ce4f6284f453532d08789e412a5ecd60c501c77c88f8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b00c9c22cae8c1f87e2f23f9aeda7fee82ff671672b9f5a161a7ba094d9904b
MD5 4564f06bf081db49fbb286dce556fadd
BLAKE2b-256 2d80ef7d02d846f710fc95c6d7eb3298ef6504e51f8707f24e1624d139f791d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d90cfb475d6d08c596ae77a7009cdda7374ecd79354fd75185cf029bf2204620
MD5 d4be28b386835073473b23519ba8045b
BLAKE2b-256 11c3e31b4e591daec3eab2446db971f275d349aad36041236d5f067ab20fa1a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 26ccb82bbeb36fffeb3865abe7df9b9b82d6462a488cd2f3c10e91c41c3103cc
MD5 2c0d29a9f0bade7e5deba9db666e5cb4
BLAKE2b-256 0fd03d153d78a52a46ce4c363680da7fbc593eeb314150f005c4bf7c2bd5b51f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3571e35d6682119daf109678a68fa8a9e29f79487ee7ec2da63a7e97562acb8c
MD5 b137bdb0989d8a46e51d01a2eb18d87d
BLAKE2b-256 bf4268344db3586455983bdcdffe51253fa4415908e700d50287249ad6589bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a31220e8544c2194c4a7c3bd9f7fb0eee3c0ce5f8306e55df762428159ff0512
MD5 9c5548598703292d2e9da66ed19b2d0f
BLAKE2b-256 f8bcea32d4698fac21fe6cc08a124ae21daa41be03f788f244791c47e31a4360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9719c14984ca99f5567a5974210d04c75aa02b0124653ee1b1d9a39bf0764fc6
MD5 ce7878a67431ea92ba716344ac8640b8
BLAKE2b-256 fdca7cbc80512df9b89ae39ab3920afbaad733d4b64390b4439e52ef3673da7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c28546bcffb88ee38a742e3364338c49672d776ea2c73decc05fbf79f045797e
MD5 bd82ae055226ae953c18c37389b04244
BLAKE2b-256 79ce6c235828d54d0027838316d9ce284b52e7bc266154f5e57086a7c7796691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6c522469a67fef66998fd9eff2195512ca54d78c6fecdf1c466d2b7752dd810b
MD5 b574b8c36a4bdda61bbecb216b431eaf
BLAKE2b-256 19360182161a23009d5439e125d4af7b13d2df0292663e7f87141d5cf76d3060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f5fe75e5996b5f4712235f9c63cdb7e5932a9cdf3a41232989f8a3ef1667f784
MD5 31ec2cd5854496c26a981388479ab9a0
BLAKE2b-256 8eb887b2467bf82eabb4acd4651f193363ec04973baa35141be441bf9e9e98c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1bb3e6d21ebfb22070288b7fb47bbb0baaae604890c4087edf5637debb6bd91
MD5 c9bae9c3cf969f3d24fcb8c83c1480d0
BLAKE2b-256 7f14615cd31c0de23e330e13ba77a6aed9a1d27360ebdf5e68b078c54b8cdbdb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 930ccc283fdf76d1acca9529acd6ccb6cd26cdaf684d69cc6f359683f90357be
MD5 f2a8260da4b694ecfa43145c52aa0846
BLAKE2b-256 179a075582e942841520c47535f9ff62b728a88565b737ae21dc99ebcc15ef61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79d3c879720ee4987782da55d728919f9294a8ea6fac76c9af84bc06f3b0f942
MD5 2871c9c79bc6b0d12690f3f84a8131e1
BLAKE2b-256 83e1a529be674d179caf201e5e406dc70a2c4156e182fa777e43f43f6afa69c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4055318ebb7f6ffad99dabd312706599c9e119c834d6c741a946c0d4b3e5be4e
MD5 e83bff8a3e13768a86f3714336854afb
BLAKE2b-256 b40d68f1fa86a79faee7f6533bced500ee622dde98c9b3b0ddab58a4fe6410d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e327fe73bfc634e8b04b5e0f715c97680987d633f161fd4702027b34685be43
MD5 4123f2e194c11bcae9c409cf23264f75
BLAKE2b-256 e628afc0158ba3d5d5a03560348f9a79fb8a1e0d0ef98f1d176ab37aa887ed5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 820f3cd08c5c8672015b7e52bf04e3e707727e6576d988eadc1799c0c47b33d9
MD5 3677a31d506081f84b71526e90423fbe
BLAKE2b-256 dc247061610369a5dbadcddc6f340d5aa8304ae58aee07a6a851b8fa24638036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33bce0351cd0ad7bd9f363740b894e65255eb93d16d05097ef1d60643ce1cc27
MD5 37f8aa078a678f98b025430cfbf4374a
BLAKE2b-256 a9a575b1c1e26e305f06a7cde591213d5b3c8591b06882ae635b8ffeb8df6f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e5f3453f0ea32ccf262e11e711ef1a0a986903b8a3a3078bf93fafdd5cf311c
MD5 88e9848913b6059beb1c0555504648c6
BLAKE2b-256 ca8c0826259b7076cdaaceda1d52f2859c771dc45efed155084a49f538f0ea2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0051911391c3f934bb48e8ca08f4319d94b08362a40d96a4b5534c60f00deca2
MD5 7ae680a2274368fe00ddaf178fb9313a
BLAKE2b-256 4f9a921ec253ad5a592da20bf8ab1a5be16b242722f193e02d7a3678702aeffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 064d4dc840bcfd8c5c9b37dcacd4fb27eac473c75006120015a9f88b73368c9b
MD5 43adb8d5c7236f7998c18eb4f59d81f7
BLAKE2b-256 bfca8b0a8b959668668c50af6bfad6fea564d2b6becdcffd998e03dfc04c3954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fffb08c5c1b629c96813108183c8b02d6b07ed6ec81cca8d094089e749db4b5
MD5 587fb8be5e987ee1c2631ce33ddc2990
BLAKE2b-256 92a1681e03e50379d72e06c3de796fb8cc5880fca8b70b82562b2eb712abf6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 de915a8ecd290c601be7b7436291397b0ac1f7841c97c3a13777bb1065881773
MD5 3d5c6f8f1cb22d3939b782848c6c7ae5
BLAKE2b-256 e40df46bba0f0df4dcd3d47160003b956b19329c25f63fe9e910aa17ca9fa0e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86498856adc6e8c6f50cbfb1d4afd4e0997d5837fb225245d3fb26008f3c9412
MD5 3b3bbb8d42ee569feaeba91b5d6115c5
BLAKE2b-256 3a44c3f06c172f128bf1160f6122df2a942440e36b8450cf4ba44c69465c5f55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f9afba11403cf03849464e0f1214b035970d43546a7cdd9d8ee31dc154889e78
MD5 22e2c64a5d765a3ba26e2415d4771087
BLAKE2b-256 ba222a68534673efe608d7b2d0de03595d5d1de629616a2f4e394813376eed21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 62ab49843fc7761383aa7bea8105ca70941797c7145647f71fa4340bfd3b747a
MD5 84601d7b06e28075d3a10fb149113224
BLAKE2b-256 52e6727584a8794fa28164e0795441d8b86f89c75a2368dec0aaaa086f7ac58c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f009996762b887d1bf9330ac0ce1e83608db0b881f63644ae30f2b6a290cd36b
MD5 061965f42c630270d446d9e2930bc659
BLAKE2b-256 3bb1726a07d04b85a687776b04b53a02b7d2c4b666d51b18c44fa2ddaadfe383

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c28cfbd6217ba4837d35cdd8cfd5dcf84ad54bffcb531734002e27dcc84c87ca
MD5 a7cf8efc55489dfa4f79cf8c6445ff9f
BLAKE2b-256 2094bdf4e76e148cfac7c324b74f76fbda83c5a587b8a85871bad09722729283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c55f842917ac4405a9779476b1ec8219247f35d86673769cf2d3c140799d3e4a
MD5 4fa859b19b584adad63010c0762538b7
BLAKE2b-256 a422d65a54a803061e475b66164c7d03d2ed889c32eaf32544c2e0d599c20628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f6a27510ebb9e1cb877aaa26fc5e0303437bd2023e0a24976da854a3421e60e5
MD5 6022be24269d5461b01a699d592b0872
BLAKE2b-256 5c9017810915587c2686e767a5cd2de014e902c76e0a242daf1c4a97544ba1f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d6272730803dc5b212615f50af7395f2b05155d9415e367492d6dac807edc949
MD5 2b9e7c20429d5022790f946ae42ef961
BLAKE2b-256 efeb03a53be8a982e953acd8864d63ca1622ca309d9fbcf1f7ec5e2550b45057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a54ea58ddeaab9a1385c368f84fca474b87b052087b62e56ac1ebd10cabac157
MD5 c705f2db026e20337d39b28362e9daa5
BLAKE2b-256 9c0e1bd54a04e9f236f5a8d426c00ce0a6d5af6d68735138e9887d5545311761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d251a49e80e1868e132e6edadfbef8dba7ded7751e59a41684cd6da38bbd3507
MD5 a77f8cf36d86d6860ff5159f2e415efa
BLAKE2b-256 2da04c4b9a85ff52fe90a3265aa9b5cb7b35bf1a2d48bd1ed4604d7fe1aabfc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34cd5bdb76448f2259ea371d6cd62a7e339021e1429fe3c386acb3e58c1f6c61
MD5 24ddaafe15f0b9c186d2a2587b003697
BLAKE2b-256 375f075c31cbe58fffd8144bc482fea73d2833562159684430b3f1d402fa9f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1f8b0bc92f5be153a4878188ab0aeab5b9bbff3dc3e9d3ad3b19e29fe4932741
MD5 2ffb08207eef635393bba62aab96f5c1
BLAKE2b-256 2100757aa4952b8f3d955bb62b72360940639c781fc4f39249f5ea40e0b8125b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 411da73bb3eadef58da781c55c6399fc6dba9b898ca05009410138fb1d7fef8d
MD5 6aecc28bc4ed7f5648f510d8bad1c2f5
BLAKE2b-256 49b532fcb6342cfa9ca5692b0344961aafd082887e4fad89248f890927522bad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b39da619431f4782f3d8bb0d99a6067db571eab50579527ba168bcc12887d328
MD5 a564ee8d2b344959dbcf29226d18c090
BLAKE2b-256 6ed6f0a148d3f0d0558ace2fc0e7d4f0cc648e88c212665cbf8df718037adde9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 15863463b7f28049d4511f9f123c3b96d66c3de543315c21ef3bc6b001b20d01
MD5 8cd922c811dbe329b973222a8b6e5e7f
BLAKE2b-256 0a22007acd1b0af3a78188c2b71fd4a3284f005826bd93e234e73412944d7b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6825598589ef9b8c0c4e574170d29d84400be24c2f172b81403435b33c8d103a
MD5 1143d0aebbaa0fa69a69f5a78cc996cd
BLAKE2b-256 c77065f975ac0e1780963c5bcfae40e822724d7e4bfe902eeef3637a14fb56b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 782923d65aa6d0c8c465c32563df70dbdd3e255532de2a2d26e13598fc5f85ae
MD5 fb63d56a9df3d599dea42e903a20e6a2
BLAKE2b-256 010acbf3f9cb7ca865eca93744d1b859ed50d28be3f64d83cfd96ad114ed88d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 525a1ecb62edd97c6695812fef0e4dc7c2faa5edf3057aa3d8ec9d2dbd0f7799
MD5 c5fb15db8b5eab85dac5be887fb8cc72
BLAKE2b-256 b6c0e6ce5b66c48dfe29ec149eee01901be136071dd1692d6f99e14dbd7ba7d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d2fb3f4d53b2f92a26e7fc34b313ac5eebd7ff437f37f8f5c308d72c844fbd7
MD5 6e8265f2ee82297cc651ec66c515e6bf
BLAKE2b-256 db39f322cf4d8b3194353a5bc01db6f2829835d1df273e93ebd1607f130213b5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 474847d1ac3ed2e4bfca2207bbfd5632110143ddd4fc6ea41ff5c5b05d2fda1d
MD5 b8fbd8c73abfea67e20a21b08b18ba54
BLAKE2b-256 4c80e26f98015801a790262f9637feaebf2028edebd915e196cc1507f4ee7b6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dde864a9c6aaa94eafe4962f59916de3165e99b3fd4d2f6584cd116707aed8ff
MD5 85b1943e3abcd56266ba09240d05d8e7
BLAKE2b-256 a572442ada2be3fa510b0a93ca3f353c546c7626690029c3533dd348ea3c7730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d25adbe96f4a3fb6492d8d504e78c1641b06002ca2b578a0b24862ee9fd5a58
MD5 710f0cd340552f1950caa3cfa1877abf
BLAKE2b-256 3cb73d139188c2803b7e2944cc22ad7e2a974cc9773534c4dd736a136b671160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d6bbb553640f7ed630223dae9ec93d6f56785d03db0c8385e0c4cfc88d54bdf4
MD5 9b851278b1a324b3139fa930f6e8f8e8
BLAKE2b-256 9135a4829b1715e965baa00ef52529f513c8c30de83d3d2f662cbd016ad8861a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d01aa1b91007edd00abc78b3cb7e10ad9394b54a75cbd76b1584524a3b238cfc
MD5 63b12673b02ae619e6ec444fdfc76d12
BLAKE2b-256 e6f0ae1dd6cf45d48b535fb6e5a77a107d6cc39db2ae8a9c060762d8fb6bcad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cd445dcb1ec8a8aa38d3c4e9cda7991cacead193bb07cf002f60cfc002d8628
MD5 45e54a6e9b59c2640abc37095ccddb7e
BLAKE2b-256 47464ef914cfaf8a91fecd01e3d342fd506f450a06109c749a034e3a48ce97b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63076e558ba75b2c016257bdbe6b83b5b9a41fe5b6601b567f1e07890370f2f1
MD5 4ed93bf0f799f5aa82fa48cf3523c640
BLAKE2b-256 a9c47c5c5e47565e959a5dd6d2eae4e34e2ca46b6ba123ee1dd548c0c0d316f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0dfab6714325c29d621593b1e9198e47064bb755e601c3e79fde5211a16527f7
MD5 346ad75e306962fafb2fbfedd48df069
BLAKE2b-256 690baccbbdbd24940b7a93d8064224b4eb304bd51d68a5e03fd2af3e2b5af268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1a0db63d2a112c217a347789aecd38bdd17bc1030fa9d3d256d5d011231852f2
MD5 5061d21ee59c3a708e9d9f7a6bded1d2
BLAKE2b-256 62275782d0bb36adbeec58687a2abf7e1a1659af30782129355456551486794f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1096d4504557d2deb9e71e1aef9914c651b7aa05c35276d77854fee7a4bdd09a
MD5 f4e862736520c855e48ac6a400f34be7
BLAKE2b-256 0e146ea8a2567881ce0a46b7c8376c336f366e6e5dfe84766c45fed7473f0649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 65de196c84b0d2c44fb76a729041de3a292f0128ded1b5ff7c1c4eab948aae0b
MD5 ba63dd62d440d7a9e33a44c8c6e0a67b
BLAKE2b-256 7347a1ed28ffd9b956aadbde6ad9a8d4adeab38b5cbfdd1d3f3d485a1bb18eba

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f7ccfd860da6b4c0c1f0f68dc917483977383e1207bdee262d40369fe616fc8
MD5 caea06c53509c2db518f89f020843bc1
BLAKE2b-256 3c6e40d033accd0d54ee0b696f8f2ae0840bd4fae7255b3463ff46b210520e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34cd28f44f6b8f70ea5d86c2b3ba26d0d51f94606bd1f0c80bde1f820e8c82b2
MD5 843b20dbbe178f715eef1ad076ae0509
BLAKE2b-256 5e7910389134d3a7e3099798ca55fc82abe9d7f49239c69c8d9c4979b091338c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2f07bd1c1b478bd8a0bbe413439c24ee08ceb6ebc957a97de3666e8f2e612463
MD5 f3711fab7f260b9fffa7840e8f896c7a
BLAKE2b-256 5af8932b05fd2f98f85c95674f09ae28ccc1638b8cc17d6f566d21ed499ee456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 23a40a40fb56f4b47ece5e9cb7048c2e93d9eeb81ad5fb4e68adcaeb699d6b98
MD5 a73f9d792fab9aa19eb0622f242ea0ee
BLAKE2b-256 674e42409d11a9d324f68a079493c5806d593f54184962e5fff1dc88a1d5e3ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8aea1bdc89becb21d1df1cdcc6182b2aa9540addaa20569169e01b25b8996f41
MD5 0dc4ecc046c07455a081caa2b5d7c841
BLAKE2b-256 bec85a15a4a52506e2e2598d2667ae67404516ea4336535fdd7b7b1b2fffd623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a6a6d114058735d042116aa9199b0b436236fddcb5f805fb17310fcadddd441
MD5 fc1612e0d474d1a15040acdc15d2ecc4
BLAKE2b-256 e12d7c996648c7a7b84a3e8b045fb494466475c1f599374da3c780198bde96c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ef31a9482727e6b335f673a8b8116be186b83ca72be4a07f60684b8220a213e9
MD5 54b9f0027bc6da305e572635fcce5d45
BLAKE2b-256 a30acfbf0ae24348be3c3f597717c639e9cbe29692a99ad650c232b8a97c74c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d3eddb298db7a9a1b122c40bcb418a154b6c8f1b54ef7308644e0e67d42c159e
MD5 8fd46c5d0013f1207fff26f7f9c6a8f9
BLAKE2b-256 c435befe5ee9bec078f7f4c9290cefc56d3336b4ee52d17a60293d9dda4589c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3595cbc2f4d8a5dc6bd791ba8d9fee2fdfcdfc07206e944c1b3ec3090fcbc99e
MD5 83c8c6418da3aab93ff0ebc119400bc3
BLAKE2b-256 21d1fa7c2d7b7a1c433e4e79c027c54d17f2ffc489ab7e76496b149d9ae6f667

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20b0a1be02b2ee18c74b68a89eec14be98d11f0415a79eb209dce4bc2d6f4e52
MD5 75103b84f7a2d9c4ad23f822102f5785
BLAKE2b-256 f9db375410a26abf2ac972fec554122065d774fa037f9ffeedf4f7b05553b01d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.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-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e6349defa266342802d86343b7fc59ee12048bca5f77a9fcb1c1ab9bb894d09
MD5 4ce479e555906ce40397289a548e466c
BLAKE2b-256 3d755ce7953c6306fc976abf7cf33f0071a10d58c71c94348844ae625dfdee22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2d510b422e7b2b6ca142082fa85ac360edf77b73108454335ecfd19071c819ff
MD5 90727cfb950d3764232cf9148d53ad7f
BLAKE2b-256 6724a900cfdc4dd74306c6b53604ad51af5f38e2353b0d615a3c869051134b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5a6047fb0bef5bbe519b1e46108847e01a48d002b3dfc69af1423a53d8144dda
MD5 425e536a42bff2dde4a4f9766f26d09e
BLAKE2b-256 b4e6c49157bb8240ffd4c0abf93306276be4e80d2ef8c1b8465e06bcecece250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ea4ff5e162fb61f8421724021eac0a612af0aff2da9e585c96d27c2da924589
MD5 c4a63012e06452bb694a077fba8db00d
BLAKE2b-256 866eb484e33d8eb13b9379741e9e88daa48c15c9038e9ee9926ebf1096bfed6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d7c1c6ebedf7bc70c1adca3f4624e1e04b2a0d7a389b065f0c5d6244f6be3dae
MD5 d537a60e3ccdbafd87480b770553c172
BLAKE2b-256 dbb4dd0d86d04b1dd4d08468e8d980d3ece48d86909b9635f1efebce309b98d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.0.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-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96bf0a564af74951adfa6addd1c148ab467ba92172cd23b267dd150b0f47fd9e
MD5 bdfab74c1f4bc969b1a3426f8e22e5a4
BLAKE2b-256 8c9f8c13830b7d698bd270d9aaeebd685670e8955282a3e5f6967521bcb5b2d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1315107754808856ddcf187a19cc139cb4a2a65970bd1bafd71718cfd051d32e
MD5 f85ccaacf683315c66b12e478ff715cb
BLAKE2b-256 c580cad971088dd705adedce95e4ce77801cbad61ac9250b4e77fbbb2881c34f

See more details on using hashes here.

Provenance

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