Skip to main content

Python bindings to Zstandard (zstd) compression library, the API style 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 style is similar to Python’s bz2/lzma/zlib modules.

  • Includes zstd v1.5.5 source code

  • Can also dynamically link to zstd library provided by system, see this note.

  • Has a CFFI implementation that can work with PyPy

  • ZstdFile class has C language level performance

  • Supports Zstandard Seekable Format

  • Has a command line interface: python -m pyzstd --help

Release note

0.15.9 (Jun 24, 2023)

ZstdFile class related changes:

  1. Add SeekableZstdFile class, it’s a subclass of ZstdFile, supports Zstandard Seekable Format.

  2. Add mode argument to ZstdFile.flush() method, now it can flush a zstd frame.

  3. Add read_size and write_size arguments to ZstdFile.__init__() method, can work with Network File Systems better.

  4. Optimize ZstdFile performance to C language level.

0.15.7 (Apr 21, 2023)

ZstdDict class changes:

  1. Fix these advanced compression parameters may be ignored when loading a dictionary: windowLog, hashLog, chainLog, searchLog, minMatch, targetLength, strategy, enableLongDistanceMatching, ldmHashLog, ldmMinMatch, ldmBucketSizeLog, ldmHashRateLog, and some non-public parameters.

  2. When compressing, load undigested dictionary instead of digested dictionary by default. Loading again an undigested is slower, see differences.

  3. Add .as_prefix attribute. Can use zstd as a patching engine.

0.15.6 (Apr 5, 2023)

Upgrade zstd source code from v1.5.4 to v1.5.5.

0.15.4 (Feb 24, 2023)

  1. Upgrade zstd source code from v1.5.2 to v1.5.4. v1.5.3 is a non-public release.

  2. Support pyproject.toml build mechanism (PEP-517). Note that specifying build options in old way may be invalid, see build commands.

  3. Support “multi-phase initialization” (PEP-489) on CPython 3.11+, can work with CPython sub-interpreters in the future. Currently this build option is disabled by default.

  4. Add a command line interface (CLI).

0.15.3 (Aug 3, 2022)

Fix ZstdError object can’t be pickled.

0.15.2 (Jan 22, 2022)

Upgrade zstd source code from v1.5.1 to v1.5.2.

0.15.1 (Dec 25, 2021)

  1. Upgrade 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 build options.

0.15.0 (May 18, 2021)

  1. Upgrade 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)

Upgrade 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. Upgrade 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.9.tar.gz (787.2 kB view details)

Uploaded Source

Built Distributions

pyzstd-0.15.9-pp310-pypy310_pp73-win_amd64.whl (240.8 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.3 kB view details)

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

pyzstd-0.15.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (423.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.9-pp39-pypy39_pp73-win_amd64.whl (240.8 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.3 kB view details)

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

pyzstd-0.15.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (423.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.9-pp38-pypy38_pp73-win_amd64.whl (240.8 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.9-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (346.9 kB view details)

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

pyzstd-0.15.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.3 kB view details)

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

pyzstd-0.15.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (423.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.9-pp37-pypy37_pp73-win_amd64.whl (240.8 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.9-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (346.9 kB view details)

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

pyzstd-0.15.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (332.2 kB view details)

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

pyzstd-0.15.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (423.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.9-cp312-cp312-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyzstd-0.15.9-cp312-cp312-win32.whl (216.8 kB view details)

Uploaded CPython 3.12 Windows x86

pyzstd-0.15.9-cp312-cp312-musllinux_1_1_x86_64.whl (416.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pyzstd-0.15.9-cp312-cp312-musllinux_1_1_s390x.whl (409.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp312-cp312-musllinux_1_1_ppc64le.whl (438.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp312-cp312-musllinux_1_1_i686.whl (392.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp312-cp312-musllinux_1_1_aarch64.whl (405.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (411.0 kB view details)

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

pyzstd-0.15.9-cp312-cp312-macosx_11_0_arm64.whl (330.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyzstd-0.15.9-cp312-cp312-macosx_10_9_x86_64.whl (448.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyzstd-0.15.9-cp311-cp311-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyzstd-0.15.9-cp311-cp311-win32.whl (215.8 kB view details)

Uploaded CPython 3.11 Windows x86

pyzstd-0.15.9-cp311-cp311-musllinux_1_1_x86_64.whl (415.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyzstd-0.15.9-cp311-cp311-musllinux_1_1_s390x.whl (409.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp311-cp311-musllinux_1_1_ppc64le.whl (437.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp311-cp311-musllinux_1_1_i686.whl (392.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp311-cp311-musllinux_1_1_aarch64.whl (399.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.6 kB view details)

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

pyzstd-0.15.9-cp311-cp311-macosx_11_0_arm64.whl (330.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyzstd-0.15.9-cp311-cp311-macosx_10_9_x86_64.whl (447.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyzstd-0.15.9-cp310-cp310-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyzstd-0.15.9-cp310-cp310-win32.whl (215.8 kB view details)

Uploaded CPython 3.10 Windows x86

pyzstd-0.15.9-cp310-cp310-musllinux_1_1_x86_64.whl (415.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyzstd-0.15.9-cp310-cp310-musllinux_1_1_s390x.whl (409.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp310-cp310-musllinux_1_1_ppc64le.whl (437.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp310-cp310-musllinux_1_1_i686.whl (392.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp310-cp310-musllinux_1_1_aarch64.whl (399.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (390.0 kB view details)

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

pyzstd-0.15.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.6 kB view details)

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

pyzstd-0.15.9-cp310-cp310-macosx_11_0_arm64.whl (330.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyzstd-0.15.9-cp310-cp310-macosx_10_9_x86_64.whl (447.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyzstd-0.15.9-cp39-cp39-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyzstd-0.15.9-cp39-cp39-win32.whl (215.7 kB view details)

Uploaded CPython 3.9 Windows x86

pyzstd-0.15.9-cp39-cp39-musllinux_1_1_x86_64.whl (415.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyzstd-0.15.9-cp39-cp39-musllinux_1_1_s390x.whl (409.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp39-cp39-musllinux_1_1_ppc64le.whl (437.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp39-cp39-musllinux_1_1_i686.whl (392.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp39-cp39-musllinux_1_1_aarch64.whl (399.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (390.0 kB view details)

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

pyzstd-0.15.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.6 kB view details)

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

pyzstd-0.15.9-cp39-cp39-macosx_11_0_arm64.whl (330.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyzstd-0.15.9-cp39-cp39-macosx_10_9_x86_64.whl (447.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyzstd-0.15.9-cp38-cp38-win_amd64.whl (245.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyzstd-0.15.9-cp38-cp38-win32.whl (215.7 kB view details)

Uploaded CPython 3.8 Windows x86

pyzstd-0.15.9-cp38-cp38-musllinux_1_1_x86_64.whl (415.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyzstd-0.15.9-cp38-cp38-musllinux_1_1_s390x.whl (409.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp38-cp38-musllinux_1_1_ppc64le.whl (437.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp38-cp38-musllinux_1_1_i686.whl (391.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp38-cp38-musllinux_1_1_aarch64.whl (399.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (389.9 kB view details)

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

pyzstd-0.15.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.4 kB view details)

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

pyzstd-0.15.9-cp38-cp38-macosx_11_0_arm64.whl (330.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyzstd-0.15.9-cp38-cp38-macosx_10_9_x86_64.whl (447.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyzstd-0.15.9-cp37-cp37m-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyzstd-0.15.9-cp37-cp37m-win32.whl (215.3 kB view details)

Uploaded CPython 3.7m Windows x86

pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_x86_64.whl (415.9 kB view details)

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

pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_s390x.whl (412.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_ppc64le.whl (437.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_i686.whl (391.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_aarch64.whl (399.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.6 kB view details)

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

pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (388.8 kB view details)

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

pyzstd-0.15.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.2 kB view details)

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

pyzstd-0.15.9-cp37-cp37m-macosx_10_9_x86_64.whl (447.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyzstd-0.15.9-cp36-cp36m-win_amd64.whl (244.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyzstd-0.15.9-cp36-cp36m-win32.whl (214.9 kB view details)

Uploaded CPython 3.6m Windows x86

pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_x86_64.whl (416.6 kB view details)

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

pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_s390x.whl (412.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_ppc64le.whl (438.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_i686.whl (391.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_aarch64.whl (400.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.8 kB view details)

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

pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyzstd-0.15.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (390.7 kB view details)

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

pyzstd-0.15.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.0 kB view details)

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

pyzstd-0.15.9-cp36-cp36m-macosx_10_9_x86_64.whl (447.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyzstd-0.15.9.tar.gz
  • Upload date:
  • Size: 787.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9.tar.gz
Algorithm Hash digest
SHA256 cbfdde6c5768ffa5d2f14127bbc1d7c3c2d03c0ceaeb0736946197e06275ccc7
MD5 098b23b0b1db2825dc93bd0f520ad422
BLAKE2b-256 6a6ad739c96b260cee069642bd3e2d234619e4c650f8b31889c1e4484b8344b6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 84aa6eecba967bdac167451501dcaceec548d8b8c4ca7fa41ceda4dbfc279297
MD5 bd0c7ba2ded4b9c144c495b2ead99d02
BLAKE2b-256 8261a40cb51c730dae7a2b69a528450320b441a810c3e3959d322619daf7390c

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9934277abdddf9c733267e4dcc4886de8a3302d28f390237d447e215e8ce47d
MD5 895b66b4f5fbcc8256816e0dac9c3d72
BLAKE2b-256 9c620ec414196b9ecadd1190ad89f0baa1aad7bd53f783bb4ae7e7c1fdab7780

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a26df749589d898cd3253d2139eb85b867ddffc49286059c8bdb3cb9ce9b545
MD5 b75956601047e9b002cc6a1e7d1db431
BLAKE2b-256 e771b116a30ed4f8fa701e202b3b36c3c5079e432191ffa9fc7997ed29a1fc37

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca19213785f864781848e0216cba07e97f563f60a50bbc7885b54461d8c64873
MD5 c9fb8113e604806624a97097b8aaac29
BLAKE2b-256 828483c61d002694852630dbd0666d9a4caaaa1a8bd9ca854cf95316b9a1d4ed

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9589cb79d4e401630481755c92b072aa7ba5505ec81dec865ef43932ec037e4
MD5 4c5a4f3576090bafc7dfa012a95b234d
BLAKE2b-256 4fa7701e7749f073a42c6157cc93856e920bc6b949df272db06e2de3b920243b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 289e25871fe232d2482c0985a75a1faa7c92e10a6c3e3914d165f62d005d0aa6
MD5 68bed5d687ef44ee02f54ccace37afe2
BLAKE2b-256 792731f3513014880d47cd678cb0045906658a412655ff6dd80be7e7fde70745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a4334e972109bdd17fb40dbdd9fcca6137648cab416fca505a2dcd186f50533
MD5 b64443ea96a79b7f6116f72c5518a8fb
BLAKE2b-256 ab504bb89c974df7cfcf409a680091297d67619da6314de7229f6eb3ad28fca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cffaab46f9e04856dc3daa6097bfb3d3bea0b1771237e869c57b13f3dcc2c238
MD5 230a0a961cd08b4bead5a235ba34d78d
BLAKE2b-256 b5a72295eff19ce92b044a4610b367f3abd1d30f73e607c80ce26953652d2029

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73877eebbdcb8259cf0099665f8c8274d4273b361371405a611fb6bd9f4d64f6
MD5 cb08f63351fd2d6b704da84ef7a0871a
BLAKE2b-256 3815cc0fd32d4d5c558076c67437f5e75803c415ca9f3c45d6562795f4e2a84d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4f786f1b1ab39a0908db04ebe5b2c7cbc6f1ce07a27d3a12eb980bffd7fea7d
MD5 e47ad54fd5a6a438ab1feecd2766ca5b
BLAKE2b-256 e8f000639ffef6afb20df6a6c59c3b13e04ff6459220ee53728cd44a4fb78ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b9af8d62c087354abd071e01d9445ea51b31779c8a4a0d5c14ee12caee3d18f
MD5 72b8945056fafffbd8dfea592991406d
BLAKE2b-256 91d728c2e42eaac4089aae4918a2fd2fc049c82dab78e72ad048ccb75ef31174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d8b58f00137ccbe8b828a5ede92be3f0115cef75e6bed88d4d0bd1e7a0b1fc
MD5 48819d2f9618c139750b3334d3f5d6dc
BLAKE2b-256 31b7cbca7ac6c92752935e64080ffad9855880f741b67dfe1f4742dfde6a7353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31f60f01884350aec24e7a68f3ad089151b7a636490203c41a1a7c8e0cddd9b8
MD5 cdecea9e4d62be9b9c7ad654ec95ad96
BLAKE2b-256 82873072974685ababa303a0e3dd4ea42e0a850dfea6b8e3301b4159d78c74a5

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1dbe76b6d8fe75f6dbec24793fc07b1d1ae9464de9941138d5b9668f7670e6b0
MD5 901dd322c7e36c8f918ab5c9faf435cf
BLAKE2b-256 f2e9a988844da83564640233cb984e6621696d15c8d00887d33c36b5132462a5

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2b093a74b10232c70b5d29814fcee6544bb6f30e2d922d26db9ab4b4cd00c04
MD5 296cddc914d4b1aa41019a1a9cfde025
BLAKE2b-256 17f6f65df4471ba2d707ca06495ccbf52a8e24159391649d87ddc7b1360bc5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a90b901ccfd24b028faea19c927ff03f3cfefe82ba0b931fbb8da4ef0664911b
MD5 423349a2af50d1e4c9045985088f3bed
BLAKE2b-256 de02651156fbfa3f1bec7ed5511ad597ccbbfcb3d916af98c1ea63ca14faa2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4a0dcb32ac4d1d67a77ae6a2d60ea0921af7e682b3427202d8acb8e86642391c
MD5 a26c4f2a3fa0a4ed0da1c436c8eb9966
BLAKE2b-256 185592024df14c354e4010262d3362118d8a64ded713c4b2ef85aa27793d2995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64564f4c175c5bb8e744de5816d69ee0b940e472160a5e665f30adc412b694f3
MD5 cee9cc05e7e0aaddef3ae4b797203540
BLAKE2b-256 3f06bdc373f063b5d30a3b74f3bc2ff9551cdc3ed8e6688c38e66f4d09f30dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86e0e65e205793b337d62d9764700dfd02b5f83b01e26ad345736e7ac0554ebd
MD5 f9cd2d45433b55fc4c012a3b46aefb7f
BLAKE2b-256 01261f8da851c71df1978b1367a1e4621edbfc7e2222fe727197eea80d53f3e0

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a594795ef89bd83297c860ff585f2d25580ce9805eb9cc44c831d311e7f1951a
MD5 5c209469f9725c9c98ef940b8660b4a0
BLAKE2b-256 d26906dbf0d0490471ab772ef14f8f2e10a9b9ce7eab7d2546972337a04c7b3c

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dca286c6c1ca5febf13f5f2ae7e8aa7536e49bd07f4232796651a43ff741ceca
MD5 39432b126491ef57fa4b3e7b51d4eb9f
BLAKE2b-256 90a0744c770fe7a46fc90e665c320f3f99ccbc632dc2f54fa3efa0641f130535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47c2a4c319300c381f194274203f47b12c433e1fd86b90ecdc7fb258c630f93b
MD5 e9ccc79d4ae0b879249b94b2832a68c2
BLAKE2b-256 b351dd8a23dcaeab3d098b5fb2d0561abf1a74c71583a031e53eafd2ed2c1dac

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyzstd-0.15.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 02c95d7109052c985b7d90dac6f6010bc0630227f15aec16302162107137bdbc
MD5 6dbf569bdcf40f4ac5f93e767967e209
BLAKE2b-256 f751f57880f6770a5404d38e74b132fb5e0fd9c67569de2fb222de879e328034

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyzstd-0.15.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 216.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f73821d429bfbb04645b80ec491ab05b35078f031f9fa3273fbf9027d1406233
MD5 4b724c34b99206bf458b6e1bea439af4
BLAKE2b-256 72ff27e3195c9005500f368dc46ec5670cf9dc6edc200179846f63596a5f6273

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9638d40ec02a5b194a4c98a5b6e36cdfde4e9d6b721ae6167ef8e57d2e69002f
MD5 7b14668a2a3da439fc7a4e17b7afe3af
BLAKE2b-256 4ff37f4f7cd0146dd0cb6cc6ce1365a248aeec806f13f246b0ea950057ed3c60

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 145ca5ed6240af2cbfc09faa50aada8aacf1e2928ed6dd9da1d6b8ebe39cdc4c
MD5 3f0489d8703492d912427f85b738868c
BLAKE2b-256 b97ba9bbeccfcb4ace8948289372dd70957249a56b055f89db8a3002828fa062

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c8d1966e38c220d5940f8cb6303651af261f0bcfce77218a030b1a24ec986e2f
MD5 956e55c5ddb2b97f3ecc8b8eefb4ea9b
BLAKE2b-256 a482f15e8af7b1b6c086896e35288b5cb356afd2ea4962c98e03f19ebae85050

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 da070933d4bcfcbf58472da12ffa77c9fbc90efb39e21a9b74eb04b5af4b412a
MD5 0fbfec92cec8cfa0dbadf97ae9790e48
BLAKE2b-256 128c5d824452355d76633ce5dadc91191c3e0ee30a3891891765a7c4794a27b9

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5453ebe42a2c7462fa532fd03cbf64e5c6baf5508b3089736c78444148d3c593
MD5 734802d6236b8427b7ec4c262f733ce4
BLAKE2b-256 16508909f5b6e9779f281ab4a9d18af6ae055eab51ecf0fff4ff1a9710a25e4a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 922f1bb8ef80c42a2fca297ba0b03442c143a9a1f717e83db79f190514888803
MD5 e8a54abf9c90e41b013d9655a476f7e8
BLAKE2b-256 c2b97fe6c269880be5d9b07ee8f68988a2977f7e586a7c7b29089cb5d9c6e87c

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 937f118fdd7a23654886634f650d6502a2dd12c8a8e2bf14beb2fa5fa95058bf
MD5 432b6bd3df23db9012d3e39a0b98da72
BLAKE2b-256 637b7271fb7ec352555c2266ed13a681cf9c8f9d5b39c75c5322c9d8c238eb62

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfa981cedd54bb8862d9033440a0afac38845db89e7099ceeb4f4d064dffd2f8
MD5 459cbd2bd10d0a8c654f5e4c60eafb65
BLAKE2b-256 520d8218896394783eb05b2d3a432f95ac37208e2012ba4db8d76bb49438c592

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c36dbbf71480f1fffeaeca901adb31e0c7d59270a239eca63fe26e4647b7aca8
MD5 a593e408112ac7c20c45a7779565f329
BLAKE2b-256 8f2bc8a90bbdad347956a032e584eb0a01910c8f067e369cc4e2f7e24aefced7

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78c38850af6b990e8ec1bc87b48f73ed5cc633f4baaa7bbc78f9b2f4449cf081
MD5 5f5c708ddf087c8b7e7f7548feb53860
BLAKE2b-256 789979cbe76624885fe5971b4dff9ee46a03dcf1e48a66f7846e32850946c219

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52dcae42f32f7a25c6b90bd479f3d04902700e3214e8fffe1bfe70053eb35ccb
MD5 c966a7fbc091cb80eb6cd10fe7b52470
BLAKE2b-256 78da5b186ef71f53cb4ae6032f60469ec60fc944d2de95bb65deb80b87dd5252

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 418e9a676cc7ce00edd2fd044ee063c8639fd8cd6897ffda395a152cdc66ec97
MD5 a65616058d72bf9ed5f5bb1e34357184
BLAKE2b-256 fd2118b50e92276b245fc8f42294868e080f732c9f488896f29046aaf6cd1ff8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 245.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef3399e0544b46d31c2a8ff14ae1fb3c3571ae1153bbbc5ddf0d242c67bde624
MD5 c02e0ff0ce24314745741fc2310ff6fe
BLAKE2b-256 c0ac7d30ccaec1479ce0dfc33494ed0d856ad7655977891c79fbef317ade9835

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 215.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e79babb67b415aa54abb213897ceaa011515a5f3e146a2a97f4e6486b9743af4
MD5 659f22816bf301f943a04b8893e2c1c9
BLAKE2b-256 c57699b3d9a55fa3728a4aecc76f8eab26cc9565db759a7005cbd54f66ca85ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 542808d88464d538f5d2c6b48b545a7fe15f0d20c7fa703b469d039a08c9fa10
MD5 75045c66e72b9b95bd486c8a1b32b52d
BLAKE2b-256 2c7ce5baadfb1c919ff5007b5c6180fd17200f657f71484ef3cc56048ffd7ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c249741b10eb714578d765487b767e0e7fcc2ac84a299209a6073566e730dbea
MD5 4597da383469cfc34f31f2f53b191eb2
BLAKE2b-256 061b842674d9b6115649560e53c7b6af0817370f14e57fc46931dc6c6dcbac65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 91453ce9476363d777b2ea2e9c6dccecd2073cf35697e048de2e8d47e1f36c7c
MD5 43c56963343ead4571bd8d2dfb2d819b
BLAKE2b-256 d4e1438b36fbc6311cd2e024601ddc9b87d6f8bc3bd30363dfa551d38ba5b4b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 836f1d85a4b5d3689d455aeb1dc6c42acb96aaf8e5282825c00ccf2545ad5630
MD5 7c7eff6955b3179b3cc02a5c5cd4c506
BLAKE2b-256 2aa839c0082ecad5ddf182978fa55c6c87bc79157847478113d145fa4c776dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 00c188704141c709da96cc4a79f058d51f5318e839d6f904c7cc9badcf78e98e
MD5 22a9f172cd8c676e934315f2a1bff5e6
BLAKE2b-256 1feb96063c2c791e3bacb285595a7582b77ab39fb5d490b524462bcbfbfdc75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c420878726d677da7484f6021dbe7e1f9345a791b155de632c6ce36678fb621
MD5 f1e54196b1a65233c2c5cdcae053c546
BLAKE2b-256 c37f0d5c048cacb906fa40485b5bb9dc5de5993bff2e4c85fa77e5a89c413205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50ccbaafee80b4f1c5c55bbe07f80871b9b8fe3499bf7357dde2c23fb1c2ac0e
MD5 008f70b682f98f8d84bc046f86151e35
BLAKE2b-256 61b1757dc72c00b6d696be5de733f2e51d4cf8fbe225e2bde62f230d72c4de1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5819d502dacd54114c30bc24efcb76e723b93f8f528be70851056a396a792c46
MD5 726bb348272e4f1d0382268475c2e2df
BLAKE2b-256 bacc06dc0a32b92b70ec31640c5a3b51edc3086cbfdb900069c3bd9efdd1ed14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cbf212253abd65e6451acdfb608adafe98ad8f05462fb9a054ddab816545caa
MD5 77d66b17c917e6318b65f4afd35a9a99
BLAKE2b-256 bc099ecae317bc8ed56957fa3f5e6cad11b13ff15c41fc7b8c028f5a9d3d217d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14121a4d95070f54bdc9a80dab1dd8fd9093907a1e687926447ca69b5b40a4d5
MD5 1da5dae0aff0e4df09f1abe008e704f6
BLAKE2b-256 6f31a2deb3b1e14d718d72161c2942ca4408d176b5c672ce68efff668b4e6b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d44a7d4586f02b630658298c089ff755e74d0677b93c71e09d33dd35bdd4987a
MD5 120ba1c1309d8ec2fa2d234a05816e8b
BLAKE2b-256 13467b4d3b1d2383026b6a53fbaf5e1e7c27b329a4a02b755389e4d131b085db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afef9eb882cf3b395eef9c85b737a4acd09528975e6a5d9faedf28874ca65f52
MD5 3d4d2660c16855e15c13bb929eadb5c7
BLAKE2b-256 b78d4e178ff87e6ae79f590c90bfb1829e95f0ae54760ce9c3c080acdb7ef712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 245.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77294f0f797c97a46ffb3daff1fe097c9d5aa9f96867333978e6791286963e50
MD5 fdcf4c93dd73bcb43761ca50638990dd
BLAKE2b-256 4eb2f3b4e7ae5320ab9c1ebcb57d5414c32ac934227a2a776142be5071cecb85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 215.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8f75e839ee253af60b03d9957182fdd069dfaebb62b4e999bd74016f4e120bb
MD5 2bdec95e4e5648fedbfe56f8300b0d29
BLAKE2b-256 bb6c5d9e3ed2b43d0d6227455a75abee9b3e19873488b8b2c9b08e308175143d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f0fe2ef7ebc6e9b347585e414c4fefd32270ba8bdf9eb82496f3030cbdca465
MD5 fbc06e581eb90c47bc6afbe344c8f758
BLAKE2b-256 ef9c4124816ea51bcb738e29409094fdd0c3617e8b753072666a76c45998ab59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f7cfc683d320402d61205a196ace77f15dcfd16b5771f8b9ffaf406868c98e78
MD5 4e514b6168f88c7ab5d6371ab186527d
BLAKE2b-256 b3ccde52c14459360ac450f7864ddb609eb79e751ddfb13e4081218f0b3a3db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1b9cda5314982d64c856f9298be0d9bf69fbff0ca514d1651037616354b473ff
MD5 96054652c54487b6e074b8561c27b96d
BLAKE2b-256 29fa0fdebc7646d14cb72eee8c894b0415cf7be2f6baa4040b07512a75c69e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a708b9e6ff1826504940beb6b5c2c9dfd4e3b55c16ab88a4572f5b9dbb64cc56
MD5 a26a57220d10b22f6e82a895c6f870ea
BLAKE2b-256 0cb517295714dc7e380c68d26bb822cd69ee1c9fc9587afbc6c9734157545bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6128cb653d011f3781554b70ce1f1f388cd516820fbaf8fd03ee245ecaa48349
MD5 c96aafe187373172b22233d337087e82
BLAKE2b-256 2bf78138fdadb51adb4672edc027ddfdd50657f3034158cbc735e4038d5bf6af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 606b2452d78f0f731566d392f8d83cd012c2ffadb2cb2e2903fdd360c1faac8a
MD5 101c94f220d44ea66e1dcc85c8150166
BLAKE2b-256 029757de14ccb0d033464aabc5110eb2f9dc717c97e17f2ffc1235680a27e5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fb00c706d0b59c53124f982bd84b7d46866a8ea2a7670aaaa1ab4dbe6001b50
MD5 fce7cf14aced23038a5281cc74b733ae
BLAKE2b-256 9dba272cbe4bc31cbc945b2864ad0b9b6750dca5620becf3df5d25e7a10867ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1b81cc86b69ff530d45e735ed479e14704999f534ad28a39f04be4a8fe2b91f
MD5 70f7677d51cdb7fc6a2bbcd671bb36d4
BLAKE2b-256 2d6d74079968aaa5804694ca070b569a2131a30f8ff38ea75920c21b932bfdc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdc09de97b1b3f6c3d87fec04d6fe29dd4fefe6b354ad2d822fc369b8aa0942b
MD5 9929c54edc77a25ee3ad33509a321c02
BLAKE2b-256 3b6d13007d5853ee853694418f39837d8fc6d57351275a803241ea07e2332974

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 74455bd918e7bc9883e3178a1a8fe796308670f0ee4488c80a0d9514e13807a1
MD5 f9d40b055cc3b8b9078314327a0047b4
BLAKE2b-256 76fd6d5f404d95a46e4e331e391ee883a6257505e7a9d16e435485f50c264517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23695dabdfd5081beab25754dc0105b42fbd2085a7c293901bcb45045969c5ec
MD5 7a6df236c8c5bdebcfa91724ccf795ab
BLAKE2b-256 310692f51c19a867aba5a6e0e5befc817fc9a60eb1877dbc7fcc62b3dd58d86d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6d8a881b50bb2015e9bdba5edb0331e85d41ff44ab33cde551047480b98d748
MD5 f57fc457e9f36bce8d84d1952a2a6b4a
BLAKE2b-256 58f4681633854cae5a12e4d6c1c121032d82d9b139435f13819ef1bacb26094d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 209a92fbe892bd69cde58ffcb4861468e2c3c2d0626763e16e122bb55cb1fb1a
MD5 ebdc10fe6bcb4a1719054338c773c2cf
BLAKE2b-256 57500388946162b89e9ba511c1f7cb7350f122e56fa9e5463dabc5a4e7b4a68c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 245.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40bdb468281a5cd525e2e990b97344f0974e0589bd1b395501c25471fcd7edda
MD5 ee0052f3ee2a3a68b488cc7b8deed051
BLAKE2b-256 d6c059e2125bf474b64dd1eb4c29e69919f1f3d2f8874ff855f6148fcd1f9bda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 215.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3bc0e7e2cccf78e562ab416daf68448b6552a5b6450a1ff3e15cabfc19254883
MD5 85a9b1924d7e0cd8e7688243a2d0529c
BLAKE2b-256 fd3d73d646c3615572424572f44a1d63fcbc7f5cb11abdb7c32ca04fe13770da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3351ad2feb51dcbb936defd47cab00d6f114214f224636503ed08298f30164c9
MD5 2cec9b54578dbc81752d3e8e324f42ea
BLAKE2b-256 7c2a50229314a674de32539d76272ce051959291b248238f8e774931cc8db2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d7ddbf234c9adc72189bb552d830e9a0c2c4401b5baf7b003eacd5c552ddcc00
MD5 3c4ba6532f6e05e4fd135e01699fc813
BLAKE2b-256 6ad5195fbf783f86cd1a0f5b8c2ed72d2a4ee7ab515f48d127a3a4716c045537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e4e00c1600022b47ef0e9e1f893cb0c2322209ec6c1581a3e3f63ed78330ddf0
MD5 b4651313297f6a5ee6d6df238a92f4d2
BLAKE2b-256 512b2ab6b4722a77a4f580414ceb6fffcfef79855f1e71c1be793fc346f9d910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 639935b5b3d9ed3911493504581254b76cb578279302f7f340924ac5bfca4090
MD5 5b0ceeee9f24695bad58d07af30f0514
BLAKE2b-256 eba58ae6cb4fd594d0fc6ae5d57f1eeaed15c3490532a7750ca0cc95515b54e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f169e166774587227255f6ffe71f5b3303ea73cde0e2c6d52e53b9e12c03d787
MD5 c38c89ee9072aae6f31dde04e7166ce0
BLAKE2b-256 9b3b1d18bcd08b21b069998c97335bcbfba3bec6497c12c30932a3a511018cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3d0575721a372c20130681bfaf873225fd9e1c290b7d56b7e0c14f413318f6
MD5 bb6b157d53cfcf18a62f1ad38f2a2c26
BLAKE2b-256 f71d4cc7e9a7d934ed82ab9a2e4c0640c79d523cdf0440aae624947f8b3ef04a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7452ae7e6d80e697d78d3f56d1b4d2a350286eea229afb35f55ab88b934b6acd
MD5 5e2a9112f43b2edc72d49c4a8d85f599
BLAKE2b-256 181d88e7c150b70643b9e70d4d40b0365132f7acbbac7e4cb34ea3853690f6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ae8993f3863632d31ca8921c8a5dc9ecc5551c7b88895cefb5a26d17643391
MD5 c6f0f183c77d3077cbc2cb089e7a1775
BLAKE2b-256 f4115aa557d85c7be1b66518a6b502672d98c946e93ae64d7a6edf8c2d04179e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ac634753f6d26cba503cea7bb5b350aec7c5366f44fa68c79e9c90be9fd0ebc
MD5 83efd9deb9ef0d112eb63c5806eaebc8
BLAKE2b-256 0cdb1fe4f4992feb24639dc6cdd3100b026aca87b05345e1857a1bc5d33146d6

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c41e5457f4de5d38a270bc44619873589bbe6fe251225deec583ed20199df0f3
MD5 2963ccfc5995e69876a084842e5d1365
BLAKE2b-256 9a11f4f8ac316cb9c981acadd1af82415643c749a32dd5e3758bc749e1f84637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29e452caaf0de9cc17319225921d8c28cdc7a879948e990ff1e7735e7f976517
MD5 fab43c125364ae6e5f00594cb2f41c32
BLAKE2b-256 d3d99d739fb84e33ff25884768f94a05155058e67354ca4155c02b2ca7d24cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5b517fbbc5d223fc36041673e7c2a0d3a82be6a5464a5f0599069330b76f97d
MD5 4712c4bbb02decc6c9a6735e97df80d6
BLAKE2b-256 e8caa441772f5b8e78912ce1dd3605bb46b62857d7dea6271015fd9d5e043c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 250dad90140a6faea4cef555f339b6ceaad5cf03ed1127b8d06de214ff0db2e7
MD5 bb63300a8b73fd949cc7870f13fe732a
BLAKE2b-256 a7b52857a1a5b5fa46b625761a928a0b1944becb529aa6a38c72609ef03021da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 245.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7ac886e04f253960ae82e38ded8352085c61d78de99412d178a94ecf475b5e5f
MD5 2a045dbae918001bca2578dddc13171e
BLAKE2b-256 ea948b41d386ebd8624bd4980b1c40b0caa1c331b1cb1f7ee443ad6c4b89d8dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 215.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 370b34a7c2f9c53cee494028daa5a7264690e1756a89c3855fd0be5ad298ec30
MD5 29b20e779ce949baf9e028d6c6730406
BLAKE2b-256 424bd09e342b18be30ee320cc45bbd0f9e52e3dd6f19e942a857ff93d25a208f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2919afd114fd12309ed2f831ef6e95730ebf13c2a92d258ad055769d00ef4d7a
MD5 12119f9a915e7398bb54034576966859
BLAKE2b-256 fff471856ce4248521bc5a5974570909f3bf922cd5ce88e79c372e99cd580bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 49c57ae18f138a4b66480b2364fe6a0f2345ada919e93fc729c95c6b17ec73a4
MD5 8624615a7483342c0d6a839201cdec3a
BLAKE2b-256 ec0b79cd07ab6ebdba503579ed6434dd4b9ab898e7ddba016bf308ace630c228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5345c7a697327e2fa7c37534bb2968ea84595d8ec7fc8c4a60216ec1be6e65bd
MD5 b85a3a83f4e9139e862498a75473fd0e
BLAKE2b-256 a83f5c40d6413d3a75a146a27b47feb9fc03e6ef292fc648e56382fdee04088d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 346f835e368e1051f8ea187ad9b49759cf6249c9ebf2f2a3861e435a568104b8
MD5 1133fd47a1ccc01ab3f78279072c92cf
BLAKE2b-256 15d18ce410315941c720e7ce6cd579c8c569e5f9354644e7bef37ec36a053b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2839c13e486e4a23b19b1d2dc4624565cec6c228bbf803c066be1106515966b
MD5 f3d90410b14bc52c0e58b22cfb79412e
BLAKE2b-256 88550b7374e59818c6f6372461595cc1bc32355055048599a8ed9b40d4666e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aff1b469187f6c789cdf17cd95c9b24e87396dc86953b1cf38b9a05cea873c80
MD5 a91dc9846f6a0f805ce2cccf0cb57f45
BLAKE2b-256 d282f403ef5a2579c82c90dc1634248495ebc476e6b234a19e07f53b1aa1935d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a60ee6836599363a24367cf780ad45446b07eba49ec72d19bad761d5414aca7
MD5 6e3327b3842ed023933ab70ff10665ac
BLAKE2b-256 7ad0b4020a34c09586b1271de3e74b1b1f1f9371a5ebf333ea9178ede079b743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f72f310b10b730cddfb654006ae497e7706c81e6a7642d3da7fd2439df7d88d
MD5 384694fd4cfe0de0be05c12807170953
BLAKE2b-256 b4355874a666d7cd2ea85d77378bd9d8afe4173cbf042fd42acbe1399bfde09e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9596aeb8c71192f4fba1ca25cec420da195219398d2df811d5082559efd9561f
MD5 a004bb43c1d60ed5b4cca226248d5744
BLAKE2b-256 057b55bb7ca9017c5658a063ec3486527cc2d7c5a289ab21e1f18795c1f5291e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fc92a718bccb8ce5c9eb63fca743c38f3fa4c4e47f58f0c4ada51b2474668184
MD5 718a2deb8c9810a949aaa943af13084c
BLAKE2b-256 8bd95a3cc22a93741b3187266a60ecc58bb1cfd1d370b6bf097a9c822eb73595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d9ec8634ab0cbfbcff535ac07555ebdae0282ad66762f0471fad11c16181e33
MD5 42e5edd9377438ab713f46c87f7faaca
BLAKE2b-256 d366972732d219b9850924096dc1bc92f32504c2eedb7d0d24ac494b4e750a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e789e19095b818f7126180b4387c0f01700c3ad2378a4e7649b2ddf4bf47ffbc
MD5 3f9c51a8b746c90a392a5e202ebfbfcb
BLAKE2b-256 9792b95bc73631187e34e5776d67860b616d75a45ebe6710f1e9b2a7ea64c985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c46e77c2ad614a0399503dc675d72436cbf6332a20d49a0e5bad03058d6cbfad
MD5 fcdeec28de051b09a76eb0eca9fa1f3f
BLAKE2b-256 121879663e5c770abccefd3c3564c6dd5393f46dfd0f5a04b07e34d6bfda63cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d0929302d187bfeca335b7f710f774f1b2ea3f610b2a80e8a1ac2da216cd9766
MD5 58845e9de693aa97e9dce56d31507406
BLAKE2b-256 40272252247afa7e19447f1536b86d4d826c0923e914815c97e7875736a1d566

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 215.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b4de7741d542a477387299bf9450e8be3e768c352d6b3438254eb02af1e59462
MD5 ba349e828d45c67a8c3bac3fcf26c63a
BLAKE2b-256 ef32a4a969a69eb04a853ffd53a488e9a32912f899f1b903d1166247999e323a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 866ba6ce85f337fa1677516217b6f10fc25e19acb6e17a501d5822e66396bdd5
MD5 78db958a8c96573703e5543a1efd898f
BLAKE2b-256 3ab37906b3462a3e42255115bc2e3b6294136cc639f1c39f31d93d5f413dd343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 441078bfd3b508597415338af667c3575980364f1286eedde58291558b9c2832
MD5 c2999e71d890c1293d25f3323708da2a
BLAKE2b-256 b40d630b4387fd7b1214e3a8aad30e572e5905c72dceedc4e73bd7e7f6486577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 12668ceb8329aaa908b4d907d3a77bb748ff28b309c3b105c995a8715d535d2b
MD5 227b1f1e1273e776d59e8d5c2f385871
BLAKE2b-256 a5f4760a269ceb3f1cf1eb4d3ff8d6ea05233a346bb635986ee067d706678695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 960ab83a977a44284c4ffab2820ccd6c9b332571a3d622fefa4b29b0a5de72b0
MD5 3f7cc04a428447511b765ac8af907c7c
BLAKE2b-256 cb5d9dc31f470258fd5d16ad13d958fa0ae5d361023716abfd7b22411be201f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f66790e4b2dcfcabc0aa54dd89317ea5671cabf06aa93cbef7cbdd4d2fdb7ee3
MD5 1ab39f742e2f967cc6a629f17dca85f5
BLAKE2b-256 1ddeb3de4feabdd67f3f110d35fdf1ab483dec224a4822065d556c86e598cf89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d3a1b6fa71a0ae7abc320d9db91b5a96a71eef1dbee0d62a6232b71c97af962
MD5 b463a80eb8d3fe8e42d0328e58b4502e
BLAKE2b-256 8722b2d13e1d2d749e6b78afd0968e164d8cbfde55975ce2449bf836ccccd9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2dd39e12f7467a7422ce50711524759d4d22016714cbae6a7096b954bc2fa32
MD5 8468f925dd51be1b10c9e3d3568450ea
BLAKE2b-256 274d6be9fcbdda30c1cee93f084f66371348aa7f28d3e83acf7fd91c48d8f24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f281cc2f096530c339f122e0d9866545f5592dd9bffe0fade565c2771130a45
MD5 22bffbf25f71765eb18e025915dd3238
BLAKE2b-256 6d222b31460aef96b495ffc1879fab882366541ec1a02cd8d115341f375e8caf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9c5fc29a5b9d61a8f0a3494172107e0e6cf23d0cb800d6285c6722ba7fc3535
MD5 e4a8f47c1335685122f5d9152191a86a
BLAKE2b-256 11b377056916f6d87f9be5943d0354b156c524ae4f6b20e86b64d286f71bec21

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dcb2172ca8b62f82af9d1f8db80c21c64c5ba3991935caefde88bb378f0afb51
MD5 329fbaa0d74641ea89258593f7b3b7e1
BLAKE2b-256 83612e5364f222bdee3696f3c245b4db953d3165fa0f4db07a9b6fcb30655f18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c31f6dd5bd60688d51487a3f5e2ae29ed1948926e44d7a2316b193b083f80d5d
MD5 e9fed1e65607b083a3c8f7dbba8badb8
BLAKE2b-256 e310d1442ffc15249be627c71b32170f526076a511774f75af5809bf2a8c36bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20f2dd56d46441cd9277077060c34c0b9ce3469412665ea5ccd506dd2708d994
MD5 a1b54969781f820e398d5c22aa66159e
BLAKE2b-256 f2757a4cb985345e8e73ac7a78bd9134756f68ad81c119b6fa4bc25fe6287694

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 87a1a4ca93da414f3b6da8131e61aca6d48a4e837fb0b1cbde05ae9d13332317
MD5 f8adc2c970a6c0a29a2b52a162c49e58
BLAKE2b-256 7f6a056fa75b45f9555b519c4e7f5feb8d53bf2a6381375b14089e7d231d7692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 214.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 97e05f66c5847e6889594508298d78ddb84a0115e9234d598415dc5a06d3a4a7
MD5 7535b9581ca423a6027d2cf623244599
BLAKE2b-256 ab882debfa5b9ac3ae4429620ff395074864d0ad1ea664e77a9244457b38a5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c456882baab2a48a5bfabe458a557af25d0768ff29acbe200461e84c0f697d5
MD5 4b38cb62f5c0af199d4e1d964e65f144
BLAKE2b-256 e2f279509daeb8fabd9181e6b81bcc6fb17a5cf69d0264755de8aca5e2c4548a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9e1097d8b57f64878a3f176f4cd6b9a1bbe9fb2d236f1a85a4357722626d8f25
MD5 2b4d870c50beff4a765b945b048f8918
BLAKE2b-256 9bee98fcf40445ac7915bf1169e18d99b80aee5433becee14052ff67ff8aae7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 305c232462dbe80d0ee5ec91b1b0ec9153ec6ba6393d5348741af5d30b07ef52
MD5 be377554641398b7b812c325593872b7
BLAKE2b-256 5a841908a4aaeccfe08eda76b14202577090dff60c906f1756d147050f01b130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 69f12ce4866a3725138e97f22f2c4cb21d3ae18cd422906cd57ed12a9ffd86c5
MD5 8eb4f90daa01adbfb7b272e722148949
BLAKE2b-256 5ad56b9e0da02dad5f075bc4afa7d1f9660978e6f7a1c83ba37b404e2153c761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ed01beb31d5177456ec2c4b66591a0df83dbc72df29f05f40502bfefe47bbe4
MD5 9290dc808fe7e94105b21a21cd050b6c
BLAKE2b-256 64fad2e9b6b84a97aa6e530d2c2f42c8dec8f2007cfe068fdc595f282b11aea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51607d7d44f94a364ef0e3ccf9a92390def0faf6e7572eef082f15c657b5d03a
MD5 8bc7bf41130a33fa08fcaf52d08095a2
BLAKE2b-256 afb4e198dde5d44020e3d2e2c226e2c86937fa2808c2a8ee317dac04a7a4530a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fd7cf79949174d1018b896638f88aea1ff2a969f87a6199ea23b25b506e26c5
MD5 26caa29113095ff114e40371d11592b8
BLAKE2b-256 8bcb545e704da2775abb76da37039883b6ccda6a823029f0d3c6a338acfab743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f9eb97fb6fd4551ff9d5012b4fcee9abeea9c8af6b9e3ebc3c76cc2bd0a43a7
MD5 290c53e6bbda5c165bc00a7b8b6e3ac1
BLAKE2b-256 b1ab251e39a3e620d3fe60a959002df0c904d4efeabb7d09729a3300c6ba9a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5aed5fc86d0bfc5f16e871cbb35ec93df61476d7fde4c1c6081015a075ecfbc1
MD5 494bdb12f203aee81d6d10430391392f
BLAKE2b-256 d4cd40af8d489c20e68a13f0e1a5359eed251abaeed8bc99d14cdc8e6f22fc0f

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.9-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.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 013321ddaff083b24e43a8b06303446771978343b488ed73adf56c70a46e2783
MD5 9ca33808fe2e0bf8f75f7927a1dc7a87
BLAKE2b-256 a06818d76b4a12c837446e43c48bd0903f110403726a05b163bd414d8e76ba12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4358dd80b315c82d760b44c6df7857c9c898d04e7b0c14abb0eb3692354e9379
MD5 cf764145ce75a6d136d111e688f63ea2
BLAKE2b-256 96b93bea2f80f5fb73a0c5ed4ec6b233a93da434f7ef53fafaea820770adfea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd6a8d43a0c294918e3afb7e4b1d8c04d2e4c3ea9ddf05475fdaf366c7e5b3a6
MD5 8b312307c3141c549ff48e4d4e3de45f
BLAKE2b-256 cfbf871de26ce2b450afd1ca498aa9a932940550b68a4d4f54a248f1015830bb

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