Skip to main content

Python bindings to Zstandard (zstd) compression library, the API is similar to Python's bz2/lzma/zlib modules.

Project description

Introduction

Pyzstd module provides classes and functions for compressing and decompressing data, using Facebook’s Zstandard (or zstd as short name) algorithm.

The API is similar to Python’s bz2/lzma/zlib modules.

Includes zstd v1.5.2 source code, can also dynamically link to zstd library provided by system, and has a CFFI implementation that can work with PyPy, see this note for details.

Release note

0.15.3 (Aug 3, 2022)

Fix ZstdError object can’t be pickled.

0.15.2 (Jan 22, 2022)

Update bundled zstd source code from v1.5.1 to v1.5.2.

0.15.1 (Dec 25, 2021)

  1. Update bundled zstd source code from v1.5.0 to v1.5.1.

  2. Fix ZstdFile.write() / train_dict() / finalize_dict() may use wrong length for some buffer protocol objects, see this issue.

  3. Two behavior changes:

    • Setting CParameter.nbWorkers to 1 now means “1-thread multi-threaded mode”, rather than “single-threaded mode”.

    • If the underlying zstd library doesn’t support multi-threaded compression, no longer automatically fallback to “single-threaded mode”, now raise a ZstdError exception.

  4. Add a module level variable zstd_support_multithread.

  5. Add a setup.py option --avx2, see this note.

0.15.0 (May 18, 2021)

  1. Update bundled zstd source code from v1.4.9 to v1.5.0.

  2. Some improvements, no API changes.

0.14.4 (Mar 24, 2021)

  1. Add a CFFI implementation that can work with PyPy.

  2. Allow dynamically link to zstd library.

0.14.3 (Mar 4, 2021)

Update bundled zstd source code from v1.4.8 to v1.4.9.

0.14.2 (Feb 24, 2021)

  1. Add two convenient functions: compress_stream(), decompress_stream().

  2. Some improvements.

0.14.1 (Dec 19, 2020)

  1. Update bundled zstd source code from v1.4.5 to v1.4.8.

    • v1.4.6 is a non-public release for Linux kernel.

    • v1.4.8 is a hotfix for v1.4.7.

  2. Some improvements, no API changes.

0.13.0 (Nov 7, 2020)

  1. ZstdDecompressor class: now it has the same API and behavior as BZ2Decompressor / LZMADecompressor classes in Python standard library, it stops after a frame is decompressed.

  2. Add an EndlessZstdDecompressor class, it accepts multiple concatenated frames. It is renamed from previous ZstdDecompressor class, but .at_frame_edge is True when both the input and output streams are at a frame edge.

  3. Rename zstd_open() function to open(), consistent with Python standard library.

  4. decompress() function:

    • ~9% faster when: there is one frame, and the decompressed size was recorded in frame header.

    • raises ZstdError when input or output data is not at a frame edge. Previously, it only raise for output data is not at a frame edge.

0.12.5 (Oct 12, 2020)

No longer use Argument Clinic, now supports Python 3.5+, previously 3.7+.

0.12.4 (Oct 7, 2020)

It seems the API is stable.

0.2.4 (Sep 2, 2020)

The first version upload to PyPI.

Includes zstd v1.4.5 source code.

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

pyzstd-0.15.3.tar.gz (758.6 kB view details)

Uploaded Source

Built Distributions

pyzstd-0.15.3-pp39-pypy39_pp73-win_amd64.whl (202.2 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (296.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (365.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.3-pp38-pypy38_pp73-win_amd64.whl (202.2 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (325.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (296.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (365.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.3-pp37-pypy37_pp73-win_amd64.whl (202.2 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (325.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (365.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.3-cp311-cp311-win_amd64.whl (206.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyzstd-0.15.3-cp311-cp311-win32.whl (185.1 kB view details)

Uploaded CPython 3.11 Windows x86

pyzstd-0.15.3-cp311-cp311-musllinux_1_1_x86_64.whl (393.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyzstd-0.15.3-cp311-cp311-musllinux_1_1_s390x.whl (396.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

pyzstd-0.15.3-cp311-cp311-musllinux_1_1_ppc64le.whl (428.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.3-cp311-cp311-musllinux_1_1_i686.whl (375.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyzstd-0.15.3-cp311-cp311-musllinux_1_1_aarch64.whl (385.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pyzstd-0.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyzstd-0.15.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-cp311-cp311-macosx_11_0_arm64.whl (284.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyzstd-0.15.3-cp311-cp311-macosx_10_9_x86_64.whl (391.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyzstd-0.15.3-cp310-cp310-win_amd64.whl (206.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyzstd-0.15.3-cp310-cp310-win32.whl (185.1 kB view details)

Uploaded CPython 3.10 Windows x86

pyzstd-0.15.3-cp310-cp310-musllinux_1_1_x86_64.whl (393.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyzstd-0.15.3-cp310-cp310-musllinux_1_1_s390x.whl (396.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

pyzstd-0.15.3-cp310-cp310-musllinux_1_1_ppc64le.whl (428.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.3-cp310-cp310-musllinux_1_1_i686.whl (375.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyzstd-0.15.3-cp310-cp310-musllinux_1_1_aarch64.whl (385.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pyzstd-0.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyzstd-0.15.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (376.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-cp310-cp310-macosx_11_0_arm64.whl (284.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyzstd-0.15.3-cp310-cp310-macosx_10_9_x86_64.whl (391.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyzstd-0.15.3-cp39-cp39-win_amd64.whl (206.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyzstd-0.15.3-cp39-cp39-win32.whl (185.1 kB view details)

Uploaded CPython 3.9 Windows x86

pyzstd-0.15.3-cp39-cp39-musllinux_1_1_x86_64.whl (393.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyzstd-0.15.3-cp39-cp39-musllinux_1_1_s390x.whl (396.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

pyzstd-0.15.3-cp39-cp39-musllinux_1_1_ppc64le.whl (428.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.3-cp39-cp39-musllinux_1_1_i686.whl (375.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyzstd-0.15.3-cp39-cp39-musllinux_1_1_aarch64.whl (385.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pyzstd-0.15.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyzstd-0.15.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (376.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-cp39-cp39-macosx_11_0_arm64.whl (284.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyzstd-0.15.3-cp39-cp39-macosx_10_9_x86_64.whl (391.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyzstd-0.15.3-cp38-cp38-win_amd64.whl (206.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyzstd-0.15.3-cp38-cp38-win32.whl (185.1 kB view details)

Uploaded CPython 3.8 Windows x86

pyzstd-0.15.3-cp38-cp38-musllinux_1_1_x86_64.whl (393.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyzstd-0.15.3-cp38-cp38-musllinux_1_1_s390x.whl (396.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

pyzstd-0.15.3-cp38-cp38-musllinux_1_1_ppc64le.whl (428.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.3-cp38-cp38-musllinux_1_1_i686.whl (375.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyzstd-0.15.3-cp38-cp38-musllinux_1_1_aarch64.whl (385.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pyzstd-0.15.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyzstd-0.15.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (376.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-cp38-cp38-macosx_11_0_arm64.whl (284.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyzstd-0.15.3-cp38-cp38-macosx_10_9_x86_64.whl (391.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyzstd-0.15.3-cp37-cp37m-win_amd64.whl (206.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyzstd-0.15.3-cp37-cp37m-win32.whl (184.8 kB view details)

Uploaded CPython 3.7m Windows x86

pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_x86_64.whl (393.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_s390x.whl (396.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_ppc64le.whl (428.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_i686.whl (375.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_aarch64.whl (385.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (376.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-cp37-cp37m-macosx_10_9_x86_64.whl (391.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyzstd-0.15.3-cp36-cp36m-win_amd64.whl (206.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyzstd-0.15.3-cp36-cp36m-win32.whl (184.5 kB view details)

Uploaded CPython 3.6m Windows x86

pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_x86_64.whl (394.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_s390x.whl (396.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_ppc64le.whl (429.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_i686.whl (376.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_aarch64.whl (386.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (435.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyzstd-0.15.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (377.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyzstd-0.15.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pyzstd-0.15.3-cp36-cp36m-macosx_10_9_x86_64.whl (391.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pyzstd-0.15.3.tar.gz.

File metadata

  • Download URL: pyzstd-0.15.3.tar.gz
  • Upload date:
  • Size: 758.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3.tar.gz
Algorithm Hash digest
SHA256 ac4edab5d3955343e8f7f287e62cd2882907d46bcba4b406a1e9f84aa2887472
MD5 caee90e972f1ddaf50b316534396be3a
BLAKE2b-256 12382d56ffd3f6e6d0e982ccb9e9fad4dac6626253bbad714aa0d74c66c0eb46

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c0fbef0dbe12a34b8c1eb980c18ea39c432565a77922bc692eeb666fa77fe97b
MD5 74d41330595285b7657040ee0c309809
BLAKE2b-256 012f6388ffa3030e7bbfd7c2ee8d1dd5de31f60f6545286c807bfc983eb85ecc

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73dfdd5b9ceea88b53ae2896054bc6b1e6e7e5d4c04b9a4a8c800d85a6b62056
MD5 0662a73cfbbd9f1babaf47510dfcc46b
BLAKE2b-256 b6c256f06bb213811584fd73ad2b674e5380387eda2b01a7255c441a5b9fc733

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ef8e9886c96d59d9357a30b06862fd29887c9de8652454de4cc5d021d706ff9
MD5 de86a656ca255e1488d34fe5e132d4ee
BLAKE2b-256 6b808d1d66052fa01707a20afebf2d77bf0708a70f14813b93413e298fa75f2f

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33e94fbccea132044ffbd3523a376c1de5afb521ecfd54f44de4ac8d3681dddb
MD5 2ad0c703b9dc585ba88457781241b3bb
BLAKE2b-256 1ee7785cf07e93ca311c07fa3759080d5821369d1e583d212adf4f255e46e9c5

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d265e6c92fda25059452c604fa407c35d3a6ae51416b874c37f7c7bbccc4c1c7
MD5 0215a432af6c2bc07e03dd74e3b55245
BLAKE2b-256 dd815966805fcbceaa382f1c6403473d0e3524f40471064361861a51c7c3c64a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ba2775501b126a3edec424a29d2afabdd6e65b36991c404ec29cbde713b1cfb0
MD5 5db87a87b9acc3975eb68f78be4de584
BLAKE2b-256 e5a76e8dd1b974357f8c28f31ad72f43f69fdc192476afd54c8c5da74446cc0a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bb599d2a4275f5708216fd701756b956233f4cccd576bc3e10f7114e69779c2
MD5 117e65ba6116f5810bcfc3688c2d9e8f
BLAKE2b-256 550028d9e9c38b6d2ce780b9ca264aab6fe3afedf45114c248ab9289a31a9a85

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bd4c60832749e34b23bd2e652d233c0283cff71a68f54f015f12bd682b780c4
MD5 093ef86e57877eea43c7eeff074f9cde
BLAKE2b-256 0363d03a7de1c01a47f2792ff1174e28057d46168e8954223b225e0d10390ed8

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d4f972628947451154285a460aad40626301b269b949f205467a1947003583f6
MD5 a0d21367731d199f9068c0dd2a5afbd5
BLAKE2b-256 3b477eb8d0b20e30278a30282f4d08bd3e817c9a48a19a592355b619c8223a5b

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71ad945b118ef231b0e7475ed998c9b4b62af8964e73510b66a2a71fbd977109
MD5 784b77b3a35e0676f8d9cb0b9760a019
BLAKE2b-256 bc5b5d645cc9a2bf460f9184a36814d253a67d669e509f2dcc12c40edc23e6aa

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10edcb025eade0b92ecc3d801094b0511b5484c78cf43ac9b68be7d27710ba77
MD5 8b10ff68fc2171402fe12cc85c33a5c5
BLAKE2b-256 b1c31410f641f93000e39b811b13ec64c2fabcc4eb5a4a3999cb1a1724df419d

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 992823978523ee3107cc75ea5ed49907212e04dd4beb0f2e5b22587c8ed9e395
MD5 a51feafa44bebf1a11c6459830929f49
BLAKE2b-256 df07cb1ff07e0cf066a827481d72cc3b1db4e02212d4f229c542db6139d39cfb

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f8378d0f0726d12bf01f52e2448725236b98b2e629e4b1183433274213eb576
MD5 54594a90c181ecf2f42f797d7746c64c
BLAKE2b-256 32e705659af07d052947f439b06a7d3b7f417fd8fda53e18f9098d92771ee3ae

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 106928b5926ead3cee7a121d50568ffaac89966e31a061f3faa2ec2c9dad8904
MD5 bf356ea6db5deb29fbaa53a25860b2cf
BLAKE2b-256 8461da2858a98000edbe0e5ebef334cdda1ba3e9df3be8d73be15b975fe50dfb

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6fb1866aead975ff17c8094819f361b015704a0fb01468b65b5a82d2686b75d1
MD5 a7f16fd02baeaac48f9fbfd827c14c10
BLAKE2b-256 14e91bde3c17745959bc7e16446b43249420c874cdff4e69cc8576504dd3458e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4695713ced2d1b3e34ffbe644c9bd855e5eceb85d6bff6b113302a2878951e2b
MD5 59f2fe96c8c2be5049fa302f2d1651c1
BLAKE2b-256 942fa70bebc54eb13f1b33e087ad5551f8be79d97179b398989caef4fc470b2c

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cfe3961fef371f616255d36c5629b421ea1adf6eed341cc64223e84d544429f
MD5 66b1c967a119292526221a6e3212e015
BLAKE2b-256 2795f20132e1b2d128fae84c7d8ce54206cfd2f07e9d51aea3ce895c5057bf48

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 206.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b543ae7a2449caa96fe4427fb83e0b004a9f4ca9fd943edf8296a73dfa7c0a69
MD5 890065f09b261a18e640be4b3b374f1d
BLAKE2b-256 4eb2bfd90738ba3e79349f7084b776ff2cd9b219dd5ba94aa4bda7dd576e5658

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 df7c22c019249031da18ca350e087c8357576cfaf2970be6cc6e5b9604a4255f
MD5 98b8a2d347ce328953f32528936649a3
BLAKE2b-256 8e6898429361cbc1354d28475d7bfe1415f9e1711712960a0fa4f69ec00539e6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d7af343043d27330caa915a942fc6579b7360d5fce7a1065476c846f9988a0f
MD5 24eaaf1cd974496dd6de3e8454db3bde
BLAKE2b-256 67e486c92a54e0867deaf8f04413fa105ae7422038868bbdbdd82edbb591057b

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 5367743837ca7f46fbbdbb0faafc3e99b22bb6132fe78cf40892b8ba10367b5b
MD5 9e96d0175266f1bc574dcf211d87f848
BLAKE2b-256 31e01554d70124ba04fad138fb194d2606df04648fd93b9a6470a7727bb0e495

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9253059f2ae2721405e9f45b34f907ab29f6e671e2bfda1593c3114a46673bed
MD5 3badbb62d526b97d2bdfd4ab2a818391
BLAKE2b-256 e189d54adaacd020f810b8e758f2773272c9770b62d17f646d9ca04a83989e56

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 49b27434e7d247a8326713f4a30d8d2447120e5f8b523400df1b5274b6a721e6
MD5 1b3cf7ed47e58109a6f7a48ceb5f6f34
BLAKE2b-256 595232ef0a0a5720aac337497dd7e34e4deab545383076fd89cec4b810f1dd72

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 35f1aa7c87b613a09fba9b6cfc1b6fbeddeee8fd1b3ba25facabdb53fa1b17fe
MD5 2fc484c75cc387dbe99d67d9d53f3e06
BLAKE2b-256 41c799dab7688895dba34687c65f84141d80d8b7ff22d60c3d564741aa06c936

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23cad4e6b6760de73f952312c0770069876358122a7e8e296183d833cbf465c5
MD5 0ba48efc1115f5fbe6e5a82d702391c8
BLAKE2b-256 3956e0195a21df144ede6067aef1b27cbc7f833eafff963cfc591db314697642

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e11bdfe4478449244eb2d677c8881a80ae94ae08cded8051e82c73d6725fde17
MD5 cbfd5105d9965fca3c622d4236b9e62c
BLAKE2b-256 e339057d9758532b2d040928e8b0f9240c58aa626fc730d9d801586fd7f99911

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a91a8d60a3a42e920d3ed02b327010c670ce83c6c79206657af3f6a61dde418c
MD5 d36f89efcafe7fa6b452040b71c64a6b
BLAKE2b-256 cd449221f0dfbd10506f51d6bf71b14c084c83501e3301f1010241f05ba311ca

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b087a31541d81d0fc5769f95dda8c5a45e50d9c67098c643d5cd55d565b6441b
MD5 b70b705257561b50e27827c4decea2bd
BLAKE2b-256 c5847d4387bf50e4cba98570c46f6f74926ba34cbf495a3094c2dfc7e3660adc

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1631cc546c30da82b4bfb07bfc53aa46ce765800c4c839aabdd9df0f49c6bf6
MD5 201879a8d2632277427104496cdaa7a7
BLAKE2b-256 d69db1d2d82f231a303c982928b86d507578280dce11c0867bb8dc8ddbd9a7f7

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a381a0d1f3e3fdb93460ae93c5c1057d894d436c5d97b2c2bf8f015d28632afe
MD5 83f7bdd335ea336dd6de085ca29d1446
BLAKE2b-256 7442d1f4ccd51beaedd675d1f66c0103a11f5ba819eba7d03ee8bd26a942bdf6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7841e3bcfdf18818bb3408b151351a51440895525d62a55f157586a55032e40
MD5 7fe0751712ad3bc0f03185dd24c9b42f
BLAKE2b-256 932c056b39f2c844d76c1ed2d971c29be34acc12ed2f6a74cf7c79eb0bb5b0d7

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 206.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4af74993d8eb032105b7640c4e4af161f8093447a62de3f2c9f14493576a95e7
MD5 34e00881e2103332541161f147171ae0
BLAKE2b-256 bc628576675d719fc299cc676de24644053eaf27a5e97f90c3c31731c03dee21

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8218f953895e6d43a789b9a53a4945531d1ad4e76b64ac2d88e0a8980cc1d9e4
MD5 03ff23298e26cde4d09da988b9e7f55b
BLAKE2b-256 7061d1ad5adac043ef09d342bd3617b037ea5c5be4b38d663457dcaa4b6d37e1

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49cd5bb0220f16bf41b80a0301f63fd4f5713cdc1795919891f8904f82f31768
MD5 fb9e99463780f80e0fab76db9b597bbd
BLAKE2b-256 7a23fff1f4824238067222d86cc845edb89177c74c161bfd7315ece794197565

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 fd98100fce2d6eb5ad3f7292c3498986e37397d50c6e3b04adc3c91c3d26bd9d
MD5 ce4dcc681b3caf922e45b699ded3d2f5
BLAKE2b-256 3fee49dc191f4d93a865d7a31e995d516bf6e598fa2c0301fa54bd79b6187952

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 22e38237ace69bb6810734da1a3c2dd267fb5d7f68a35e175565bdc7ce6bb04a
MD5 32d1aa9df93eadbaa994413034efc844
BLAKE2b-256 bdf20b564ffe4cd470a664b0be9d6a09fef27521a285e4e613123bee209f5b94

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 08d1b45aed0df32b07ba1d1c49fe892d6fef4d4c97d1133d8836350a78a93244
MD5 ef4fbb2b00296ce89a42c4dfb68fe3ef
BLAKE2b-256 e2f3b7618cff0665027334f1656f03b4a20306db9fbb78c05962f19f230e1daf

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 92894764d892d50a076607848fdbac4d011fcd35fc73eaedb93bab4442e502d7
MD5 1f2a1206bb8c9d39f5ee461fe35beac9
BLAKE2b-256 7e2979ccd86d3ce6633eae74b86d9adb1e16928d936ca3c800737cdc8b6a6486

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 082b08c1c0e8a9441e5f48c0f44fe4cee201c682f730c838ef86ed8619cda760
MD5 65f1c6259336740251bce926622dde2a
BLAKE2b-256 17ff71059f62210131db7cbacc569a36954ef30c90459c7637fba1e6ece10f56

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a316c14ba55191a2eb32b04b7e1468fcac73e5fcd287b189650e1238dec9183
MD5 f46ac69b0196181e7eab95af91aebece
BLAKE2b-256 ff07cdda32bdc326335b814944305b3afa7a047b4a76986ab184c4857f39ade8

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 946eefc64d3a4d756920986dcc5043b7fdef179fa2f9dcb1a77dac2821abd934
MD5 778099e3618ee2272f334eaf0ad8a82d
BLAKE2b-256 b4f4cf1b97141fc6dd5b586776ffad86838f61c9ffb64234a3951019294f40d6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db93acdde600fd91ef329300de3d03d36d5dcb99533d69c85a0b58c27a0f4e53
MD5 452fc36b4b8a024a812b5713b4b31f3f
BLAKE2b-256 f94462cfd6895c8fc0828a1a062a4bc122ebfbb1f4790523a1dc41f096d956ca

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5bb9e6581db70e99973bb4267014e2dd48ed271d6ae3581fc92f73ad82f36dc1
MD5 94cca0d840c297608109992103de5f06
BLAKE2b-256 77cca0d30d0bfc4c0afc5fd9d33f64f3c42d9fdd6238808be343a3e995a18e38

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ef2ef67b2e54168d303f95f074f21e3e98e491f9d700ec2fa3266f6c0c71b5e
MD5 bf989c7a5c2edc8a689c364d4948d068
BLAKE2b-256 f0f4022b1d73d86433eaa6e02b0edba2ac1a93def7ceec9443b4a11d4dfbadf8

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe24509154d3d7c16195fa2c0b546e160c947b09fd49ca08702abdcc5bc0c933
MD5 a9738035484a90317ab36b6c92e2d53d
BLAKE2b-256 31f4d8d1ad7df41b26012e6c60a9dc7bfbe0938bde1c4615a9bb67cb712ee2dc

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da9907e447d41650c00b8023be6789f7c2133eca3c6a0f72200ff25df29c0bf5
MD5 c2bcef848b4a9fb7aaadf4b4e035f82d
BLAKE2b-256 7765a213bbddedbae68108913325d739683b37cb61a589f4ae10243c5b32cfa2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 206.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 728be92bc42bdccfecef88fc93a56e6ea561919fe9e00a8ddccde644dc1ecc53
MD5 54cfefd2e7bdbf8c8c55e4c225e0e663
BLAKE2b-256 e7b5306cee61e13d92da727f34fdb3d40f75f3d6d6f9b21924e648990e98d6bd

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6e486d38fd247fdecde5bafe4af47a6e583c46c0a0c34c098e4d8a291603a2f8
MD5 f6d0ec839d1dc209d416014872e6d300
BLAKE2b-256 31e72acf3a605937615d8563051f1059f573614c8c276a212295e7a2b8d7fbe2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 089e70d146d3d37cd1c8adbdb8700311752a2d3ad42323037c5fb4032a00f7f7
MD5 868d841c5b3a8586ad60f583023edf78
BLAKE2b-256 eee0cfb2c849248d770e00e5610894992c10a93d0f9b80b635f9653e1f67ef93

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0a4e098058d8262f33ab550eed3824bb9f044a62120c17f0bf886529b32bf1cc
MD5 bcf67fca4d36de8c53da11a0ab76b13f
BLAKE2b-256 4c3336e7b55dddc370d7660e766012ee7e5202bc9653a08f2a9e1abd09af02eb

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9d1688fc5cd6c32cf648e6e86162b5f2a9bddfc317deb19893c0d53fa15145f4
MD5 d05cab278cba9d8f184c2d7d0a7eca87
BLAKE2b-256 594e798f09c90ee98c677c8a59cffc58864287f4560bea055b99d67bd78886da

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1eb94243194db49c8d1d7ffdc51982d88459cb74b4ac5a6ecd64313a93927cf3
MD5 3062bed4b9aa2f5168c7bd93cc6c89da
BLAKE2b-256 34b7f06cad0683be7ea0deea5a784199ff51b78ca3a1c8a2792e2fbab19737c2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2b368e6f601824401d3f5e5f78319bb09b0d6d1c0d23175f71b82739de9d2218
MD5 23610618b981b4d0ba6d40176399d5b0
BLAKE2b-256 41e63a8d2bc256a1ac79c2c6bb92f65ace19be4b58f9071cb7efac97dc6d1225

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66ffba0844b84b742764455244e582f24a172390d8e1f479900fa549b2acc96a
MD5 bb920db3a146c5696ac02d701b30a057
BLAKE2b-256 616aa8ccf244835341eeecac35e4b032f1ce112eab070de3a6d56a3126f348d7

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67a9f383ee8054a72e7389ba51b131cd5acf26c3c8137e45a460d30d350da3ac
MD5 c1433276f85d576ef5e7cffc30d664d3
BLAKE2b-256 f2b9eb6e6814f86706956f1ea1cfd11624f9d300903d3af47d62acc5a7f32ae2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0134944e00345f89657716aca9a1d2280bef69aca7a0cd326dd10d33f3caae78
MD5 ec864b2efe4d120d6057eb63e2e900b5
BLAKE2b-256 0a858a4f5debc11dc409c8cee6864d466354b00b9606abef381ac8905b6694b4

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e33e9367f32c2422bbf1a33a4e965e5e2d076eb4042f97971b6acd19c0a16ae6
MD5 31aa9edafd7b6497cf57f6c8a99a287c
BLAKE2b-256 0f8e6d3c03070fc9dbb238f4b085fc603eb3afc7309ae40b554664a8a2e47374

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ddc5a9ef8b09241fff58bbcb780bffaf85437d29ce516f2ac522c3c6d9f5fee
MD5 5bc9da8d4cc122ce6c7557e0a7a1c000
BLAKE2b-256 4107562ae3cca0ef86b0687a1f633b181cd6bc08684d099c75af7afc2f9b3eb2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bdedc13c0d67aaaa706310eb41248fb78e7bd3fdf335d2de8fdeb2d71574645
MD5 777feb36c6c9826a95ca094c6406c978
BLAKE2b-256 2911d88969207ed806b49fb8f03362c2f87e2082baf418ae816ac1af4cad5404

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a08887c9ea43f5b08f2c33dd92ffc8a26afb9d9e23e8cebc962bbba134719f3c
MD5 35dde2e183da668963f89aa5ebec5b2d
BLAKE2b-256 a7b1bc2e4527187809c24236f4f36f759f37933f7ec8d0c378edb39b69dbf395

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 041bc30b7c47e52ee418786fa806fbe42094f990353d3e685a9c96ed6a4d2212
MD5 0c8eb578307b9b02b1170533c82ac4c0
BLAKE2b-256 e42e7b3f77ba5c4afcf47731d793bd1791d423b568ea360c8d01058b7dc24195

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 206.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ad35fd4de3591d8c538fe1fc4192a5cfc8715727dd9d7bedf6aceae67ff3408
MD5 374ce1dae6ebec9e0858b2eaedf4175f
BLAKE2b-256 c613b6c348989e53ed17fd998e7686deec7f17f69cb90de4aba55d8ae6fdc909

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 11bcf59b869abc10cf7cd872bd3d113642c94e92a5b68fe990154945096f8c4e
MD5 9a856504908803dc9194ed8fc26dbf74
BLAKE2b-256 aff026901e6982420c4dafe57213137e501efbb0c4243bc158ac9609c58bc574

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3604d118493f2c09d387f9e569c2ebc71f07be148f57397bd485773945f192f
MD5 7eea375cb15c4b4b0528173762688f84
BLAKE2b-256 12f022e3dc0f9f5b62e309eb3c7caf48775bd6c3eabd1fc27bb2e775b2d0683e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4fa699945cbd1316657550c00e1fa998c1ab6df5e0aff60254b0eb768be38003
MD5 e3c95588503a57549a009206430f4b85
BLAKE2b-256 77f33f1158b8fbf039f8e7e00f92e1ddccd71c6ed38772b6d19562b1b4876d20

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 4e92706f6f579d78768f942cde4359195fc2750e58c4bf3c1c91929693e10fd0
MD5 27bcb7b7ead25e4d20cb06ad8fd39ae6
BLAKE2b-256 21037ef9cfff5cddd20deff393e471ebc30b22467a3bee5dcd596dc483e4d08d

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8cd3792aa54a6c4933d2b63e90252220d8f8347e424f39c5eaec10f3bc415f10
MD5 ec01b1e4f0d6923c6c0e2574cf431209
BLAKE2b-256 96bbbad16b0d32518e822cc7de1bf753b06328804ce3d6202c52cca77bf6d097

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17de64690976caf4a355da8a9b06d6ad55b424899e7cf305c6b08b96c8b764f4
MD5 94ae96a4f388e222f294362f089e289f
BLAKE2b-256 5d664360c403fc7324641e4781a5a159d3a4eca9295680b716a9ec824d31463f

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539f0157f2283e395a503022aab915a9f1577fd97d92ed27b85adceeaea3d24c
MD5 00b8ad117bb56264e5bf96e2cc43cf42
BLAKE2b-256 c54c3a2bd95f414eb05ebde82bd7b4264f0c7ef4e14fdecd63de11c7000a0603

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e4694db47c8816c499d7d4240abcec5154a227f454a30041de5632faef11a41
MD5 f05eeecaa5d2f5f06b3a8c51bc66168f
BLAKE2b-256 f47aadbff04cc89b9308df9d0135560c93a1b211a1dc93c75462a9d7d78dfe30

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0faf892a3f20258da72fd83ad0b394e8ebcbe3a637735870528529f3aef3c676
MD5 a0ef0a042b51a52b2db429fb42d91d65
BLAKE2b-256 3c80d00fb30a21cc84e89d64423da9d236db6163fd4c2520bfa3b0eda49cab22

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed0826eab6ab133b8f8bb0369d76e546dad70a94b372b6d6351ba8320ec33615
MD5 a9ea3f618305458dfb07c4a687e21f1c
BLAKE2b-256 ec5c9f22b26fab9054989eef0d1fff61e141a08d6b4785372ffcb2d4d4ddf2d2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 650fce9212410fdc82f1cb32d562e89f6dd1480d1cdbc0769e09235e236317c2
MD5 49dd538c452c603bcb3c85c71df931b2
BLAKE2b-256 f59bca22f5c5b17240d10b1b86b2d69ff943c5f5cf6849d04eed5bce111f22ad

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e887757277409fd02535d24dc0bfc48aa3b8c1990b0451dcb5157776c64cf0d3
MD5 1caf36f7ec0c4bbb7863032430c07e36
BLAKE2b-256 256c1f958fb45255a8205e4ec732926fa384fe990c19faaea6d4d956c3a67105

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db69b7bf80935d3c3da0dff4000e8a94f0224f98c312914190af79932ae421d5
MD5 6db5fc404b767d2de4ff6f6abf9a8d47
BLAKE2b-256 3fc737e8c926175042b9a31d204cd3d46656fec066da7f9450a7103ad6952e11

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fc780a067b3754b913268481aa0bd9d80cac1d2a9c1e1c7abb7102ab4726903
MD5 ee815d982df9fc10a4b1be1aefcf9bc2
BLAKE2b-256 cc195261f713009ee6a8cc1b4d5d09d04d51926ae4f1b552bc9783707982c537

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 48e81e5e4f315164790163ff503b0dce7b4ad519cc954215033c683d0fd0f9cd
MD5 2facf7f9bf566d4fcf365e5f7a8e5cfb
BLAKE2b-256 61af7c96825c1ea7b5159f03e172f427aee68b856e77b22f387f211c7ab73625

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 184.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a10ef9ab262f117a379158cd2ff262caf48ec4e35f54554a971bfa698a33a530
MD5 1416a3c65646c0cff858b5fff321fb78
BLAKE2b-256 fdaf14e6800a2f8c030c706ecc4ee742ce961017e30d7b5472bd60b3073e6bcb

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86f56db8a082da130d1ca67e9181bcf42deab75527b3f2a35e5e6144f3f0691a
MD5 4a65a5ddc9dc48cd8f945f1404e69324
BLAKE2b-256 e1766af3b46fd77057a567cd753e98872607a44e5ce3ca4c6d0cbe0cb133f84e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d41a41e81f66002eed7e0df49ee2893b41068c1866612f59fe2751823a1c650c
MD5 6f98787ce70b363f1e5928e0c2b1eec3
BLAKE2b-256 29a6a01996cc38f777f7064a069cbf5ef10adebbdbcafec300ef19c07fca3cc7

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 23903d2da8b650358ce67c4a2125e8d1d9a7c9ebf959011832dcb2779f7fb51c
MD5 4cfceb9980c8afb2e0346207fdb973bd
BLAKE2b-256 43c4dd1eeee572c16855d170a2c5e8ee7ffb1e24806480cb62b2bc965cc9d969

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eb27499fab77ce5838d42067a964b454b5784913e6fa0e1e6841e3b183c11154
MD5 766717a342c4b001ecd23808e9f38841
BLAKE2b-256 77ed0642d8979de8b10bec3c48b9688357699fa2f21a172d999da308cacbbfd1

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7204054567bd41e57f10f9134c4210edbb9eab9cea55e9081dd388461b2c794
MD5 6cd5ae77f1b4bf7c801d4902ce40e796
BLAKE2b-256 893aa442f12e6eccb8e6d8f0075031a708f14e4cce3f0f2cfac4bb4c391f246a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66f9de313d1ba7746d61698c14573f597b5a9d562041828139a3eecd62efa240
MD5 bf611da574b596d933f35ed3506f59e5
BLAKE2b-256 9dc55bd14ac83ed312ccae9301a5e9a0e69f6e41b3a9d4e204aee6312b682915

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30e58666f97cbfea43e12d93b482a86d1e79771609dbb8f095d30a0cbb69d0d6
MD5 5bc2bf80a944b7117c087e8374b24250
BLAKE2b-256 8f030d3584a3d15753abc795b54d0267380064f9f587ef6fb7d501e2a122e65e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1310deeb8af68a0c1b32b069776b4352c7e5f2d8ac60f79955606c49a9852bc
MD5 eda1d58682476b088cd6c77568215506
BLAKE2b-256 eaad75d3a99b4eee7c959d2465df00d1fef184326ad4aa288523b7fd4b9a6dee

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b840c7056759da13f8634856945f2b6855335b7e759ee27003f4c42c57676d8
MD5 5fd506a474bd5c75d533b068422b921f
BLAKE2b-256 80a8b86fc0de8fb9162379a7f13e3602b4ceb4953a3412a556ac6b47b08272b4

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3e8e11d7503f48a6d46d5962c953f17f12b7e001af9c64d58d3ab195981066cc
MD5 802f5ca36fb785a4c399386499fca94e
BLAKE2b-256 828677afd95fd0e8c40e0e0f3a9db7a5e7442f9f967c2089b51c6c4d6e7bedd3

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0c84b349b4dbabbc1e004b80b1cfcb8dc78442c10a81636dfa9ee94c028ed9b
MD5 728a585f428e515256077764aeade8c2
BLAKE2b-256 3cbcfb12b3cea5ecf537416de8e03cf94fc5616a3f2044131e89db65ed0a994e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 287b3f15d1f473674b3689fda5c7143b396d5dd53360b450560823485dbfdd8e
MD5 873e369105c943d15778ce01c0110091
BLAKE2b-256 9bd925977bb98be4716a82bb81003a903caa724f02d499d68cea0a67d27fbd75

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 206.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4fb7d0267a025509b22c1eaa4110563aa60ca27ca4cab24e3aac7a8770ce944b
MD5 2ac9dd2ad2f6c55838c7a6033b611edb
BLAKE2b-256 bc351dc69c18e889bb64a293a6b340501043b094c765ecba22a12cc2611c75ac

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4d7e876fea4ded82233c2fc2df4c56b00433db351bb21f401507e7dea7c16819
MD5 a826b1f6e886bb69c4a468a601c9131a
BLAKE2b-256 901c1e006aab4c6cd802dd34d6bf30542d62b2704244a4ce85b898800d1c03b2

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04cbf37ac09ca272143dff90d54f4856869bdd3b40eb262f625e4cc785efdd3b
MD5 4ec716213faeab868aca7de4de141e59
BLAKE2b-256 df9daed6ee28d84deace6484779f2acd54bcf8f8dfa4d97e74fbb8826e29a087

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3e073dbbb16c2c815299037134c697f044bae142ca02142a10cb72de874580ea
MD5 d88833553a4585ab1f75b317a1a63fca
BLAKE2b-256 32ef555c1bec9a5878850266007f3d226e1cedeb4ca158ad201e68f7fd20bc0a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b81786383dcc62e1bc40055e14f268a6bea5818b63efbfb4514083e91f3ba111
MD5 945d106c19a030ae7d24a5f1dc029846
BLAKE2b-256 dde3fd0dc53732cf645dbea56da6965116ca6a4989f4254a284abcd3aa8613f0

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3e7fb44fd42abf6db9850f27662763c52f2f282851c7a5af790655cf593016ce
MD5 21106065ac6f3acda107630a169a08f5
BLAKE2b-256 185154baa348ec780d8e34a61e92b83655251044d357b70c1bbe599ff597d727

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 761bcbf2aa04fcf33fee3e114d832b0858dfefb6824ce585757e7b793a0b2deb
MD5 5395d4a0dd253759b3ebb919e7ecf05f
BLAKE2b-256 85e903acc3e4838ec16716b963cb2b48a27f600e7bd8bfbbfaead12941b3dfc6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd5eee632a69c8c0ab78215cae44f9944d906771622564f2a90fd7374739eeb5
MD5 8d8c7fa05e1fa1bd0c8693a7a8a9b122
BLAKE2b-256 733fa705095089ad41a471854d4b5bd56c6b2e8a4e43a58a2abe1314d055f175

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ae0e5532bb41e830c257dec2abfe94bf8ab09afebe7ecf710d6d3cfa35d6aea
MD5 af7646ae9b8b3d72bb0b9d9a3d966392
BLAKE2b-256 221aa65ab5d7e432bb6abf2622f2b8ac9a58f23a81b52c39ce9c2cc48d808493

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6fe2fad80743e60f969b02f9ab056f8a005974d5c34f1a9b3eca1df8f56b756
MD5 1372aea6f9d32331fdf04a6df4ce9f2a
BLAKE2b-256 f2c7b1345b1525ad3f6114c67246ebd9321de3f87471cdae863e143984e827fa

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b0576ce2165a3a95b222e6514013105218d56b81857a1b694514eb63fbbdc5a
MD5 601162f0d2ee0d4f97e83fa48860e067
BLAKE2b-256 238a55d87d82821f1ebf11d6b8e7b6fb63f104d6f0fc155f23c8c79a4f3c4b4e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 36754d70db264943ad9cb21a5130d3bce9d62ac98a645a2d90adfb9cd548eb21
MD5 f30e9980b27ce6346c36101c9482d7fa
BLAKE2b-256 dc1abea7694b0364981e807afe7b21639f47e559ee181b02cee11ceb3fe551b6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dadd0cbeda15cf89abcd814b5478f1f17e22444113d35428cd62d0b651a35a19
MD5 0f8e06e871273fba52ca65089aa6052d
BLAKE2b-256 af505a8fef4c2bd3c4c6f69dbd87d5ccf00c4f2cbdc55e2ee18ca7e4d19534a5

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b68c2f51a8c6dd9bc66e7bba8e59e99c2a91112ec75c18e53a880b2dbc6e8e68
MD5 b5c2273969c24a53bdcb36048703acf8
BLAKE2b-256 db989093fe77818b30b861ec026681e5ea4fcd22692bed10f1f9fb19a486f341

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page