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.1.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.1.0-pp311-pypy311_pp73-win_amd64.whl (299.8 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.1.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.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.0 kB view details)

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

backports_zstd-1.1.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.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (339.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (409.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.1.0-pp310-pypy310_pp73-win_amd64.whl (299.8 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.1.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.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.0 kB view details)

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

backports_zstd-1.1.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.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (339.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (409.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.1.0-cp313-cp313t-win_arm64.whl (289.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

backports_zstd-1.1.0-cp313-cp313t-win32.whl (289.5 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (499.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_s390x.whl (630.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (585.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (482.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-1.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.9 kB view details)

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

backports_zstd-1.1.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.0 kB view details)

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

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

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

backports_zstd-1.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.6 kB view details)

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

backports_zstd-1.1.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.7 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-1.1.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.1.0-cp313-cp313-win_arm64.whl (288.8 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (495.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (585.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_i686.whl (509.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (481.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.9 kB view details)

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

backports_zstd-1.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.3 kB view details)

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

backports_zstd-1.1.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.1.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.1.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.1.0-cp313-cp313-macosx_11_0_arm64.whl (361.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (435.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.1.0-cp312-cp312-win_arm64.whl (289.0 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.1.0-cp312-cp312-win_amd64.whl (313.9 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.1.0-cp312-cp312-win32.whl (288.9 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (509.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.3 kB view details)

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

backports_zstd-1.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.5 kB view details)

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

backports_zstd-1.1.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.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.3 kB view details)

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

backports_zstd-1.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.5 kB view details)

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

backports_zstd-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (362.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (436.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.1.0-cp311-cp311-win_arm64.whl (288.9 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.1.0-cp311-cp311-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.1.0-cp311-cp311-win32.whl (288.8 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (495.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (509.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.2 kB view details)

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

backports_zstd-1.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.0 kB view details)

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

backports_zstd-1.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.3 kB view details)

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

backports_zstd-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.7 kB view details)

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

backports_zstd-1.1.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.1.0-cp311-cp311-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.1.0-cp310-cp310-win_arm64.whl (288.8 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.1.0-cp310-cp310-win_amd64.whl (313.6 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.1.0-cp310-cp310-win32.whl (288.7 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (495.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_s390x.whl (631.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (509.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (481.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.1.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.1.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.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.3 kB view details)

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

backports_zstd-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.7 kB view details)

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

backports_zstd-1.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

backports_zstd-1.1.0-cp39-cp39-win_amd64.whl (313.6 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-1.1.0-cp39-cp39-win32.whl (288.7 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_s390x.whl (631.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (585.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_i686.whl (509.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-1.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.3 kB view details)

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

backports_zstd-1.1.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.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.5 kB view details)

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

backports_zstd-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.8 kB view details)

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

backports_zstd-1.1.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.1.0-cp39-cp39-macosx_11_0_arm64.whl (362.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (435.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: backports_zstd-1.1.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.1.0.tar.gz
Algorithm Hash digest
SHA256 8ce84125e3094ddefbaa25306e8949965ce092b400a1fd63b5e6a5e932d2994f
MD5 1ff723e0a43a152fac2d5ea670ec8ef5
BLAKE2b-256 ee76403d81c1b9264f6ee1c25b2f2ce892ed9930d1a0a1939ef26a01a95e644d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 08f66e228821a87ba7c74170b6b173cf249eeface98c0951c0da7db680b887d5
MD5 581a2005f90e77d81cb7818de53ef5d6
BLAKE2b-256 aaf3650db1631d75c3f6ad46b09dfee2a761b2678b1e2e0004d90258020801c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5ac888007be1724efaa565f69ba64ce0c0c0e135d7f22830565399ff76465f1
MD5 468ef458397830b00cf878108162d279
BLAKE2b-256 c15bfa580166cdf945be0b3ca1dbf8b23bc1370087707fa825b764d7e98b9a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbcbb091fede530d096e32f3409056c59dc7b5e6cc9bf39131c7961eaaf8f475
MD5 8811d20440ed36ef960205b9451efcbc
BLAKE2b-256 527614349136c395f94fbd2af663301c2d661da9109fdf74692fe5095808cb9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f1524c54ec491d80068598ba4328b82c403b99a04c0db6326a5cc8f05565de87
MD5 2ffd5089c740486f10b9a02f771d7b18
BLAKE2b-256 977f5e65b583abf56f7e3c54835a707cdd159e47b73f4b8548082debc630baae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55446414f5deda38a4b8de22a0f3f93bacc1a8c4fe2205a0bace0dc55dbf9c90
MD5 df3e8465dd73997c1b906fbaf5a59d29
BLAKE2b-256 efc3cbfdd61516d0a8448ad9194e34ffd434ac735ed1a89257f77407dbdbe0f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 06cef3f3b690221fd55d95cfb0316b914ce72063b99578b309205c9f73ce0bab
MD5 d21cb7bdc0d2c8675bafc5f3a293d9ec
BLAKE2b-256 f716ce8d770a7129540520261694b0e83ec61684ab734f671e4eff652c040a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2a278c276e722399fbc769d1ae318a58578e20086bd09abcffe9af4b1daaf50c
MD5 58fc6125dfc61e3b883f3f42eae0ad77
BLAKE2b-256 3de0687326aa8026b28251651add1e87931edbb0bc5bf563776cca6f81f35987

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1bf548087476e6ce997c2697072c67193b07e5a36d4eede2b582e7bc7324c2d
MD5 66c36b153941330eb2164fc3a67f10e3
BLAKE2b-256 b6231a375ea5e1e50741b80f9882c45a13c3b1b051985ae40eae44a34aa4e9e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f174d8c93bd2682932ecb736e8f03612c162ec6a182c4293a663165f8ffbf5a
MD5 2dc7d156cd94340e5886f65f0930faea
BLAKE2b-256 689b85dc1f5dc66c22f691bb60ec739e4be17c53dc670dcfabdf16ff194aec44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 154870d0e0f817159671ffc8b0e39d70ca294542affe6df00d95ef135a2ceef5
MD5 c735c6b1495bf81bed32fee05216ebf3
BLAKE2b-256 90bf0e6dfe1467dc228916a1715fc75421bafbb5dec4cf306c2395e45d8ef589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79b29d1c66f9bd2bedb87551b303e53f96364a641d30251e9f4e15bf5d84699e
MD5 0e6a62c7a280b0c129b616a87a779ca0
BLAKE2b-256 8ff16220850b09a52cb07854d098307d71d9b330f4d9b49c2fda86c960c7df00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d379e9c157e4b18df8852defe1d5da8888ba8ffb4d7d9410428b3245cf8216a
MD5 8aa6b121402fbaa6b06d479ccaa82efd
BLAKE2b-256 6a80c08720ce3d7c446b5f91c2c894e677b673d87c4e9c7dd6f5c36303baaee8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 e005d77a72ba6cd1ad85f46dbc0620922e7b46cb90235c4874d16ab1839b4994
MD5 2cdfafbb6238291431fbc7538aa14dd0
BLAKE2b-256 441843e36a5a0313a932827ef7b601e673cfec64838458cbb44c452604ac71cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 029388257045a1bd091407ed4359899bb07ddac786ebd240ce6985b82da5729b
MD5 8b4d6fe6af4e603584badf7ec6dfc5d5
BLAKE2b-256 b675f1763f8f1cee20b2a836c1aa27a545cb1ae053bc1e282716f5062b9f6169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 d13e6406a50051f2bdd5047dc68e79e398c4d4bf65de910a1cd02e2d93f6d346
MD5 7d5ea93a6dc132921dc5479af22c1124
BLAKE2b-256 6892bb10b678aa8038172047adfd748b73b410c34aa8fefac4768128d79dbc2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aba8cb745d48e66d5e9f007cbf6871e3a227b2812a81c99916de3f8edc2cfaa1
MD5 a5acb05744d0366b235dcac417892985
BLAKE2b-256 cd6941c3f1d2f97cb156e689e36f3ff8ddb9b1140f667394ce0b3d51f0a96012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b3bef8f715a4f8135709846179fb748d4ec5619282a8858cdeaf90ab9a3c1cd9
MD5 8666393316ed9c180d4677fa18e6b4fb
BLAKE2b-256 149f768d64b30e80b32e262393caf2784f5fd43b45e6ab8e2a44c146a550c607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9eb74ca6f9afa8d92eb268dff951d901ef3366a240ca358d1503da9a4355eab5
MD5 388d7021179d2c62ec437c3f234e44a4
BLAKE2b-256 19bf8d99e2fb714e908b0282a432f9216968db46ed5b6ec42bdc9df5b0ffbea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 284d91e68e67ee7b8d2c58f26032bb15e4ed6ec9f2b95121af0b9c260741e497
MD5 ed963d03d9ec32c7d2e187131f42ec94
BLAKE2b-256 dc404a955634f174f569aa8a03433148818528736ec66d5baa4bce2f535899ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05b5d4f23b22f67b64825537e9c4d2e6a38914e924794803ee2c4f7a9715b46d
MD5 0ec3b04e50e1935396f26c0939bccc26
BLAKE2b-256 55c00a33c6036f8350954cb9f99363710c4e6589ba72e38dfe181a117c983fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 747c341023725ea83e5ab874325e85dc89d9008626bbbc329c40426bedd03ecb
MD5 d60ae3480002b984608ae13cef41576a
BLAKE2b-256 e963ea63603b691c54a6af0259b4c74c218cc9ba14985bd18ecd629d735c81ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d30414d5d15ff358a1cbb88b293a108a2eebaed6ccf034176e2a4ffcc80672df
MD5 d38b7a552e448c5eba061511aba79875
BLAKE2b-256 18d2bf2f74d68fde7884295138fe0ac8049031d8061346c395a61ebc256dd470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 37cc049f855654f76fd145c32f3818848848c0128940f2e0a2e0f5597e3658a9
MD5 d3977c98b2e7a961e8aee9fd57a361fc
BLAKE2b-256 6c21c6effc30caef1dd8db49a962e554601f1ea5782218f38e16013f719a5711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef36d898fc5b592b9822a1b2c90d41c3fc4b684579ef558e6b08b53a747ee542
MD5 b40fd131e05b7c6d46c7a44dcafcadd1
BLAKE2b-256 beccfa3d8656e0202030304c7d9de8da3e02157812ab04a5d726314073b04e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 91c741b17240469f414786051dadc24372a2270c7664908159d19075a6e58455
MD5 eb08b0af6445baf947a38c34ef6e92bc
BLAKE2b-256 a023e0497e863e37f7c659ee5037a743809d82270b84090fa4c7d3564312d4d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feef6c896d58f93e8fb9c900eb5b0813580a3a689a7bab53a82d7980599952bb
MD5 dcf305a594eb05a8c8551a6f701aaacc
BLAKE2b-256 bd1bb336683e6e470ddc4f3665588327cef4c96da876469ad3640e3af6d0c502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01e488a5f1b008643a375936b655f383e92bd02b6b7830c4f4489eb9ede2661d
MD5 12520e70bd258f25246c5c55ddd705c3
BLAKE2b-256 c87c7f62db771263bf5596489c2a5574278ebf4095980f6ee01305b7989ca78e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 47ed787d85ea29776bc7a54825dd2bd6431a1497bb120d843f4dbacabb4f0d65
MD5 459e21b018fd5a84e157219464eaa299
BLAKE2b-256 d3f73418b0e3c15865c24fc390d57e33e141ea8f7347876e4a1feb2942e5abc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2e93b0a04f624ebe5b4301ec4997b353db561b82e7e21b42c84c8b30c53218a8
MD5 b98ffff5f2ad9cf6e40ca3ff56f1ba15
BLAKE2b-256 d707182dc5e7c17206fc07f30c3786317fa82f18b124f037a5b8dbb73457a341

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.1.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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f862567e43a989be9c0d1a04c9d3068a8544a1a48c908635ecaffcb896f2c1b1
MD5 1ee61aa602f41ebd8d595825efca34e9
BLAKE2b-256 6bf082b912cd9bec18cec86466300372ad2913febe4c7066eb6a6721eada9777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8389d1edc351af4c5e6cef9fcd41f0795d7e639becfb0f331cec67aef3eefa3
MD5 38b1eb7ea960c5e68d1fe6673b1f0933
BLAKE2b-256 6f9a5f1835d53ce4b66e445aeca019c516c3989d74269e96c58295b8cd629421

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 79ab438599cedf19cce056147a26c64167bf83d05609b4481ffadf9330a322cf
MD5 4d011bf3909cc5e1d8cdde6ff93308fc
BLAKE2b-256 ac6d0001f8c654672d5ac309f315919b4d0be26c1687b46b2c9438bff4d16895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8c21cbeeba96d4b15e42ace21fd71f0bf2c431247ce66e82409c0f45dc7d7b4b
MD5 837af153804332ddd1664c829b13379d
BLAKE2b-256 930e2f1335f7cf06de3140612ac72bb0735c4d8e973f15678f5e62ba752a16b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf5aa4431001eca56bac39e22e9c814075008d9be7317271e5f8bff21533086d
MD5 045c4afd306376df14a27b0b84f2cea5
BLAKE2b-256 56baf3b225722e3f1544a1c8cdedc92a35650f6b4ce0ee1444db949240c40efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d74065d6b151443b25f3005ae96dac1d896ce616c56595c18c7dfbea77b73a5a
MD5 11db20eb94131077c7471a531727ad81
BLAKE2b-256 7c8b8a2625657cc9965c62a56fb2d97ad4cdd31e8cbdb6aad493375c337ac3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 222fb59203bb7c8104d049c587cd60bee6e8c1cd6d34c4a87158b8393dc8113a
MD5 6d6eb6cac22e3e1d32201b8e8b938321
BLAKE2b-256 f108211d882fb5fcee5014bac84c64acf4c6f5c6df3a10e3bb5ed20409b5e54c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7caf0d5c2954eea1c160922207afd87cd83cef7f5081b5a7b12d4a646a78c1a2
MD5 4c57e71662588ac636b0d888421dc76a
BLAKE2b-256 79a88788b74b53961b3d3dfb08eb4632d07c846afbc2f677752d9f2ae0d6b843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 83143a2a381d95276a8df5f0b6231f936595d3aeb15a55f91831a111d78297f4
MD5 ef6104374e032b23a0bfbcd12383803e
BLAKE2b-256 7df671c99d08987df24e09b93fde4a2d3aeee8075563374be88572a1f265f9a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd98ea2600335bd941bba347e168462c37a5ed1bdc21cbee2dce82871c3719b3
MD5 088b0e7e2adcaf33f0f1c14810b61735
BLAKE2b-256 22165a3967e957fc5662eaaeca4ace5eb0646d1e174e70d149fe023092165047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b71f45d12274021e1d7b689ac98faff94874cf6c7bac2f0ab14a3714d4047a6c
MD5 debb2a0f08c238625abda8e1c743a3d3
BLAKE2b-256 4c565d98bd5a7b0a5d203f705f3200b467af6a6d34fa6d9aa2b9c9538369dae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3adf32f6e58323505c581a4d1e5b6404e98806c4cf01c54049c372642cf7ec6d
MD5 75632aba1189e5dbf7342ef75ecac5ec
BLAKE2b-256 0eee10ddf48f87fe8aeedd4dca1a18061159eab006ede693ede00ba80946ba3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a18668f1373fe9e5e0349e3fe5cc8148cbef29eccbb9998993eeb0e90d35638
MD5 d6f865d8522201af5166d4a0b363139a
BLAKE2b-256 bb352a50f48bd16a4677b1f17f0ab0d173f9225114100326e67fdd65b74f9586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f8f2a975dd25b4b3ac901ce47d04881d43dcde18037d2d1513b8a5f4fededdd8
MD5 13376e43a5cb0484d5d8fd458bdea0d0
BLAKE2b-256 668fcc99ca99a2e37a9a9f3c6053cd0a7bd255c465be24d1d931fe062dca55bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8067a95f560c503d683b9e18de44749eefe0a4ad6da318ff9eabb4afe47e79c5
MD5 7f537d8892e31880922bbcc468c555f4
BLAKE2b-256 43aadbee1f51bf3af6017e1b48b93edf9c60f74a57c7d34940a728789365355e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 288.9 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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8e0376da95159b39f538b6d7edafc211f4b9e7f5581ad4b2476b0f3c890bb25f
MD5 7d5926aba133ab56b35c517bc9a26142
BLAKE2b-256 45ac843bc205463fce6aff56d2d6f8733635b0c8786c22d148978ecfed97645f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8dc11ddef5529aff9fa18565a0f2a98f9f5cff83751e4357c219ae20c160bc1f
MD5 0c6e5bbc9059fa8db31e36a26cf58ce8
BLAKE2b-256 d9da9c704e8f11cc4cb17adae9693d97903fe9dc5ea7e8182d044c00cf70fb1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 de5d7cdea31085b3d21c7f670f385ec666b8595c72c107efa50e29f3cc4e72a1
MD5 df9fa4602179fd0926e798bb3773a76f
BLAKE2b-256 e8c99ece6a0c684223e466188d7e8db74462075391f43be244f46ef46ce1f07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d64a172db16fa5e3aed875776537103cae0f2dd0e614c9658fce62ebd5211847
MD5 4df9b53bb427a748d933be9ead433bb4
BLAKE2b-256 620d15dc13edf653ba14f61f9ce0a4119f79647750a9525659b410be124b5d71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b53841a136c326686d49f1b2b96dc5acdffb2e8e422a5298f36b95a7d927b69a
MD5 a074dd7a1920792d88ad06dd21237946
BLAKE2b-256 c9e005f1d8a8552254ab4ed447ad2950c079f15bd2c74125a8a15fa9f0eb28ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f459c3b43d382aa2ab44199b84ec86a33f79094701bd3bbf536d4b6e687e744
MD5 f2b2c7af0ff630f45ce9bbabaf962026
BLAKE2b-256 fc4c3b2f67ae51d19716af5d9bd2c074b9a5ba03a7f6ef4c509adaee3e1f6958

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe522558c4d56d9eb2294592fec5ac94b95c82ff22cf1f91d1bf589fe567f391
MD5 9b1e0bf9c72e0d3dfd0ae6c39f1cfc44
BLAKE2b-256 06ad5ba858ffc307ed2b51693d87642f9e9dd6013579840981ac364c6e24c38c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3baf8b13aa90ed5a03503063be670d8cca22d5d81aab4cc499741f013dba4351
MD5 974f2ffafdbeb6ff44f5c61326a4bd17
BLAKE2b-256 7232828ce97c1c18d3735ca42b65819241702df101cfd13a4b88bd77ca1f03bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 33a7c9c2bd44b5bbfba2c78411feb2e0074406654f33e6b0317e307710c7fe57
MD5 b88869244de522e7e2032bf99577b0b4
BLAKE2b-256 c17a280f37869fb37dc16d2ca093734a6cac564a551d7fad8b55d0807d19f74c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34c9c425d113071c90a241f04fb12be46c83e7028a090aca4e72fe9f5fe11fb6
MD5 12edf5634c8e15cff0d685aa35ed0ab3
BLAKE2b-256 eb84b6410324c8f495bd6fd1c8ab8b3fbb70120ea2b06ee004db4549e0eb58b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b8b77fae55a245e5b61fc599b641343da2580ebc9fcb20a77822dcca9126bddc
MD5 66598490ae52978bf7ffd8b4b3987000
BLAKE2b-256 afc099596faafe038ba03695569adf0ec1f4e3f955c3156618b0f11deb3b9905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37b30c0fb5d118344706ed9e26cb2f43584c0012565254a819485bab180f1652
MD5 ff0ba10cdaf476a627f03d07b8c5a27a
BLAKE2b-256 4b01c851ce0cbe2611ce33232ecaa21f237b9b3c52964f01c9e96cabc7f60b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63e1ba127129c7c4786147f873eef63f90694a13c5459ca0e970cad1bd52cf6c
MD5 221f7e8c43cd6fe6d572b69acb2868b6
BLAKE2b-256 48981426b121772c4f05735ad7c9542dd333c18720179a549dd2e22e6be386df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b5c43022248bd8711f606a481547dbcf4541b617446a07a359aad28ebf77973b
MD5 279a93aad027620f9d213fde9158ee5a
BLAKE2b-256 3cea78f627df9b3765ac7036da11951db7c91eb77e6014f8819dbf575dc57f8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e3df9c43e9f4ed970cd8f48df41736c5697fed06523e463661788762c95d454
MD5 524cda37d5ffe568b75e98154c3e0f9d
BLAKE2b-256 50f38887a706bef88307a55719b4d0cf73600c6703e3cfb5926f97441c8ffc3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 288.8 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b20309c15d4afa2919517669366da60dd30955dbc0784924ae79acb49f158ef6
MD5 f3f5146d017d79b35c141ddd99cdb41e
BLAKE2b-256 cd75305ac0bf93de4a771d33926e27da401a807294c3858b133d3611d0b6be49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62451464559525ff093f7d684bf88381722d7b3759693ea842e94b41c01f306b
MD5 06cb1ab0940e0212cc6c6edbd7c40d88
BLAKE2b-256 87a5383d1d9b2281854b2809b83ec6dfe9092f3a8b9700055340176b29230b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4298631dc91b4dafc20b6a7eb7edb028c341bc2e3b77a128c7ced5148aaa215c
MD5 a43326628dd6f618534aded986ecade1
BLAKE2b-256 88ad6db9224a34d0ef6ce553c9605649a522b485efc0aa098b1c78b4bcdaad5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 adac539e6fbcf72d70cd9f354ab5689e080b8621b4d268f2ba0f486c25dfd3f3
MD5 c85b715f088d86a621a50700494bcb08
BLAKE2b-256 bd74fb0883e9dcc6333f33f3f90e1101498800b82b6437cfa110244c59d6a03e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fb2b381a404040c9dbfd258f3bcd740595e2aca088d822fb241942440fce509
MD5 d9283b85527a94260a09aee2ab2f53ce
BLAKE2b-256 859d25dceef8e97fb815259b3c946236ff6e696bb5f461faa8303dca5d98e4e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be97026835fb5cf0cb96e8c1c6ee72e53816f0ff34c368546ea6e53962476216
MD5 e136167fdf684df44c0c43a1b0406ca5
BLAKE2b-256 9d4d5d402a41c29121f387be38e3a507ba6c3d9c5304356f659beba8bcdadf80

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 773cec5a3ff8c81e03f3db0c7df1d2f7c3cf820262138ec752c46fd25b532e85
MD5 713bb5ac55c5ef8c34ccffb34fef6e1c
BLAKE2b-256 577969b97eea66a26f52975ae78d7413ca79efee51d2349a33ddfef9b196302c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 64d5c359a04c26a36eaad82386a873ff1af9e12f896af4748cff1f35e2550af3
MD5 784e06e2d0a6ac66d96e20c9688a8242
BLAKE2b-256 bd014f61e96f52dd391834dd457ee970b57d2818609677a786f94840da359f02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2d38c6df19d5b828cb3d1c1ab62a2c61dd433ad00523d577e303f4552fa002b0
MD5 c4cc1065c79f8ebae84879c8ef49e003
BLAKE2b-256 d114324476e8eef484779c390d0b9c83b7906c883ae82b7de4651a86463fbb71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1c6ae75c09f211b4f5439b0984bfb8b8d15975585e50b1dc658e9f9b94bd305
MD5 42d4c12347f2479217cf71fbd6288643
BLAKE2b-256 e61041d5088c35bbbd03a07e0f315566e06f915b0371700f568e8c3b26c68b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9f43275263cfbd2e9096a8b333d15c2e96deb0a2df3751b15408155a03c57fab
MD5 21a3901e1d7f1ab6b43ec839899715fa
BLAKE2b-256 6c4ff722122cbd44331245c674c9d3dac91df135d491348de7da5010980d346d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfa36e208619fd152c20bd6c9d0febcb18ac90bdd811421c6a01e450f4b1dd6d
MD5 cb2506557d042e272f29f15fe145923f
BLAKE2b-256 c13685f89ea19338e7babfb91147ad3f4022c736c0bcbc1ebf83c90550f2722c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b1f9ea3d2d3638af80fcd896dceba7ad5d902ce3e5b411a9b16e4cddd79c4ac
MD5 c5a652abfa7f87902ce64a091123c5d1
BLAKE2b-256 738147935ce4c225681a2a962c69cdc061f721bc02c6b2d9806d0ba4d29a1454

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bd2e69a69524161e20cad8245dcbacd9b825f83221c55b05bca0e506b7abddfd
MD5 82976ef97b026d9cb653b9fbe33d1fc8
BLAKE2b-256 bcbf12f84454d23cd32a649adbc49983fed13ae2f60a75a6461e9db6e435d856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c28905252c4273e7097baad10ca786ff8e5ab67807f428504c4fe3cbdecb135e
MD5 f7b6cf06a04660c7d04b16f43ce6498e
BLAKE2b-256 f1e8e3f70c4835338167d7039152b8cb1c4adae8c14fed7a184f2d860b0bb952

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 288.7 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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 be5723019ba1500cf727a6ba37a15e697a63f66314e3e7def52fd86c65249236
MD5 fe62d44c19cf2db73fac8cf83b0a2257
BLAKE2b-256 36479eb4a27599af4501a79d9d80d6616a18b8cdf52683b1c711d403d247f6a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 233f35525940b5153223909a4c9f554e27ae7f5bff5c946b9fe28b633cdd463a
MD5 e047b9c7947c13da969b93efc92334ce
BLAKE2b-256 d08df2564d8fe96398bc15ccd4db605d448a8dc4d6dc4e1e3bc613c6f2306b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 27858ea429914fc67446112fd7797e821d18e7ce3d6cfa7b2e124547c6a4ca83
MD5 e5d72f514c634776a9362b874debffa3
BLAKE2b-256 a44c4afff28eb575631882d564b6c8b93f4d43e53f99c62ceb03f51b15400f9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6e7ffa9747051fd994f8070aefc8317af3ce485d9dbd175593c6df9d795d24ff
MD5 327622c56efbc1147de20c3ac9146276
BLAKE2b-256 395a87e4be4c18c920122949d45a9de7e253084af22ae50b3c0773e4d58aa30a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 559fe9384dbd43cdacc2b4aa7e19199f064da7aec947c6461d4a7aadfb614568
MD5 a6a06a253c4930278a9fb45fb4776714
BLAKE2b-256 d80a6f82529599e92af47bd483bf3c318bd14c01e5a00b9a736d9bc7ab1db3b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 544494f7f1ba88f6500a5e14219b19718cc2aa4bcc563ce78d67aef3b8e54ed5
MD5 0c25b71309ea25cb9fbad7cd70efebd1
BLAKE2b-256 f21f6ad1c8af282dc6ad464ff58ecfb29abaeeae6f745c45e5500723f8a0c1e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0495547f5b727d798ff317b6cc6158655926b7149739ab9a193e184d65e4bc8f
MD5 06aa3aa954dc0f6b5a2328bf469f6892
BLAKE2b-256 42cbd765b8f70e86e368d05632572e7eec3dd27d6bfb61c9c7867b3375b3f19e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 097ea6090dfb60f4af3c09d816c6d64175bd94ead930e5089acd00ea2e5b8de8
MD5 3f83800882bbf590696b12aa9e1ceca6
BLAKE2b-256 786e09f21da99977d3b220c8a4642fa1218b2b5d854fb2f00eb22dc38b02be3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a24e73d5d4b3c1b9c693f07081703db9e9398ce95576f1ed74892d6bd01adcb4
MD5 2acb1b9f9fe3fe45d510e995fba48a18
BLAKE2b-256 a3949c9b2aa30d34e83f244057c6bf7b2a493c7d60df1caa999160bf83b5a525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27a40d9518019a6b6ad2df5f6c2dd6ce627af9396c929556188a67607ce12d57
MD5 b126dfd8ba06196dff58780c6b15d138
BLAKE2b-256 aaa9d28aa8f16a9fafd8e15220f3ac32fcd000589088f45c80df7f45839503cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 777ff9a60664abfa7e5cbcb676ecbedf49bd567d6184e538b9dee09d4bbee292
MD5 a1f1d0b53c3f9f7393b8285389b48ccb
BLAKE2b-256 69c7e163febeb3504a00f3a7625d40a2d1a120298762393caebe618e96c48594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5805a215a3b048a10ca18dd5c525c737e004e59c92c21c44baa0c13083579dc1
MD5 512ac957e56ce555191300222fc08903
BLAKE2b-256 ae9af064362e44419625b79e049dc532c7b7606bd072f230d2729460cf4f5da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f02ab91901b637fae5d27cc26f02874db3e5f98af481afafb86d6487a4287897
MD5 7874e7d52dc018ebfa59e641a3bb6e85
BLAKE2b-256 2fbb9f71f34b1c7ad957f36ca320bcdfef1836816af9a8f5d256debe5f12bad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ba78e8c0b8c6605b69083ed3c6fa86af632989488e63bd7177a4f289bf8127c4
MD5 71f4048a65cb42a761c5d02171f85cfe
BLAKE2b-256 e7a610956eab990fa032afd10d651f32756ccdb57ce32b1648ee22ddb48cc3f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b80a8b0041a931a0c9ca218463eae7ba5d52fff501476aecc3669d7cbf4716c
MD5 5f1f1a1708a6b0b61bd543119df0b4f2
BLAKE2b-256 a1af28f6c9928741d641224d89924937a2b5c0ed51010364bcb954ca313efe48

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 288.7 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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b9a92024752786e44f796cfaf566d8c0618c08841becfa6f2ca0d87eac778943
MD5 df3afe33e1e97e09ff3504c788f0877c
BLAKE2b-256 3d3eaa811c0fea6dc8e36f2086ac2972ccef3efe162ed584f5971497a76a8100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf9eec3b68914d2e157b8a37fe44bb7b1d2d74c29b7f1de30e906f3569df38f8
MD5 9ab863c395fda8173099e659a10611e8
BLAKE2b-256 a2385e55ab35e0fa330ac3c217e6fe996668a268cc0c3288e340f4c6c04c0a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 480dedd95d3d9f1274bf18b1db2bbb79f1da1ca6d0e37413498febbf3a1e1939
MD5 ae7748a8dc3113173462364ae42107e6
BLAKE2b-256 1ae7a4d9945aaab5767270b92f4a1d6f1bbfe7fb3b606a3e504e4d3530aab866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 52e47ad655550c37f6c5323d1d7f340a2b79429bf7a52dd27bee12cae85a4cca
MD5 f5964aa02c55987a5c62816225ff3bf1
BLAKE2b-256 0f5ee925060bb2934336230f56833dcd0da056d7d4377061df3bf8bf23684df7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8bb5714bd2738bc6327dd561e8f53fb9b279f5452261f3e0e21f95bfce076ed9
MD5 cce323eb516d577b153470c181965035
BLAKE2b-256 bf44aa4615dbda924f0af2422a82f84f48af9b4e3eb616197a2f7dd3a9f820fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d902c3526abf4cc822df8691ac456c22fa82d28585b15f92b7614a4f22e65e6
MD5 3152f51c45064392f4427f4b06dcd168
BLAKE2b-256 988945031e26428258b74da127fc1096b43fff83e9f572fb49143e06a9088523

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.1.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.1.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.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fca3c304c4b84efb4abce291f0e03c8b46bcc30edf2d314c00ab0a31cf956542
MD5 0a2ce8c99e2cd2d3ee41f46d30093fba
BLAKE2b-256 6566c55a79b8d14ba2ed27c1ecdd9da1e7de9430c56ec5ce62cbaae87b544ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4fe8620b48e448369260be6fbcb366d6c6172e1afb9aa833b8235a600228aacc
MD5 97866c8e12870f122cbf13168afb7c82
BLAKE2b-256 bfa7f5514701c4a84158774d49bb6b2103e3af995dd295f6c26b93879339431f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0926c9e4f21337aeb8767e738672f8ba3f6a2e030f5d1d2170d7180e9a6e68d7
MD5 b4d2ebceb87f807a07e683818f71e1ef
BLAKE2b-256 927f3774013b6897537b063652ce95438828346c1b010e4f10d0fd5bf50ecad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 328a22827429b225a99a6ca6b4fc67089a489af1d4fc4e78da1429b264fee407
MD5 92f6286ace248b33eca5c39f61fcaac1
BLAKE2b-256 c0a394ab276594fe47e822650f23270465ba21aae3986fbab618c761225a93fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 85b8f0af826a4cf5b009ade1d78f0fb8af0a70c09aaef9c81a9d908e12f219ba
MD5 67e463feab8280c4c5b968184102c8e2
BLAKE2b-256 2ea843f8fce9aa3d7091246aa136535aa95baef2d801847c542217d07fdccd08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6504a2d14b350710ec984942602b7a324dcb064925c7a0ca9af1da74e44ba29
MD5 4ff8b9bd081dcef9eefdb412b9fc4614
BLAKE2b-256 f09a002f4a6b808293f230474df7b90f84a51976a5ef3f60147817bf67e0b6cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e8a25855ee621d2b59be10c0c71b98ef899fd9edb4872e2c90650495463f442
MD5 5dcb908526698a8b864ee611dd15975c
BLAKE2b-256 ea9b60ee34d4ee7fe3da6c94b094a8b3b22573729157fe69abb7b4514b3b25c7

See more details on using hashes here.

Provenance

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