Skip to main content

Python bindings to Zstandard (zstd) compression library.

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

  • Support sub-interpreter on CPython 3.12+

  • ZstdFile class has C language level performance

  • Supports Zstandard Seekable Format

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

Release note

0.15.10 (Mar 24, 2024)

  1. Fix SeekableZstdFile class can’t open new file in appending mode.

  2. Support sub-interpreter on CPython 3.12+, can utilize per-interpreter GIL.

  3. On CPython(3.5~3.12)+Linux, use another output buffer code that can utilize the mremap mechanism.

  4. Change repository URL and maintainer following the deletion of the GitHub account of the original author, Ma Lin (animalize) <https://github.com/Rogdham/pyzstd/issues/1>.

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.

  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.10.tar.gz (769.3 kB view details)

Uploaded Source

Built Distributions

pyzstd-0.15.10-pp310-pypy310_pp73-win_amd64.whl (241.3 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.6 kB view details)

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

pyzstd-0.15.10-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (424.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.10-pp39-pypy39_pp73-win_amd64.whl (241.3 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.6 kB view details)

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

pyzstd-0.15.10-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (424.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.10-pp38-pypy38_pp73-win_amd64.whl (241.3 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (347.2 kB view details)

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

pyzstd-0.15.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.6 kB view details)

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

pyzstd-0.15.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (424.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.10-pp37-pypy37_pp73-win_amd64.whl (241.3 kB view details)

Uploaded PyPy Windows x86-64

pyzstd-0.15.10-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (347.2 kB view details)

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

pyzstd-0.15.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (332.5 kB view details)

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

pyzstd-0.15.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (424.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzstd-0.15.10-cp312-cp312-win_amd64.whl (245.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyzstd-0.15.10-cp312-cp312-win32.whl (218.2 kB view details)

Uploaded CPython 3.12 Windows x86

pyzstd-0.15.10-cp312-cp312-musllinux_1_1_x86_64.whl (416.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pyzstd-0.15.10-cp312-cp312-musllinux_1_1_s390x.whl (412.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp312-cp312-musllinux_1_1_ppc64le.whl (438.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp312-cp312-musllinux_1_1_i686.whl (392.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp312-cp312-musllinux_1_1_aarch64.whl (396.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.8 kB view details)

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

pyzstd-0.15.10-cp312-cp312-macosx_11_0_arm64.whl (331.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyzstd-0.15.10-cp312-cp312-macosx_10_9_x86_64.whl (449.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyzstd-0.15.10-cp311-cp311-win_amd64.whl (245.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyzstd-0.15.10-cp311-cp311-win32.whl (217.7 kB view details)

Uploaded CPython 3.11 Windows x86

pyzstd-0.15.10-cp311-cp311-musllinux_1_1_x86_64.whl (414.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyzstd-0.15.10-cp311-cp311-musllinux_1_1_s390x.whl (412.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp311-cp311-musllinux_1_1_ppc64le.whl (436.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp311-cp311-musllinux_1_1_i686.whl (390.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp311-cp311-musllinux_1_1_aarch64.whl (397.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (464.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.0 kB view details)

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

pyzstd-0.15.10-cp311-cp311-macosx_11_0_arm64.whl (331.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyzstd-0.15.10-cp311-cp311-macosx_10_9_x86_64.whl (448.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyzstd-0.15.10-cp310-cp310-win_amd64.whl (245.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyzstd-0.15.10-cp310-cp310-win32.whl (217.7 kB view details)

Uploaded CPython 3.10 Windows x86

pyzstd-0.15.10-cp310-cp310-musllinux_1_1_x86_64.whl (414.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyzstd-0.15.10-cp310-cp310-musllinux_1_1_s390x.whl (412.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp310-cp310-musllinux_1_1_ppc64le.whl (436.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp310-cp310-musllinux_1_1_i686.whl (390.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp310-cp310-musllinux_1_1_aarch64.whl (397.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (464.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (387.2 kB view details)

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

pyzstd-0.15.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.1 kB view details)

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

pyzstd-0.15.10-cp310-cp310-macosx_11_0_arm64.whl (331.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyzstd-0.15.10-cp310-cp310-macosx_10_9_x86_64.whl (448.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyzstd-0.15.10-cp39-cp39-win_amd64.whl (245.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyzstd-0.15.10-cp39-cp39-win32.whl (217.7 kB view details)

Uploaded CPython 3.9 Windows x86

pyzstd-0.15.10-cp39-cp39-musllinux_1_1_x86_64.whl (414.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyzstd-0.15.10-cp39-cp39-musllinux_1_1_s390x.whl (412.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp39-cp39-musllinux_1_1_ppc64le.whl (436.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp39-cp39-musllinux_1_1_i686.whl (390.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp39-cp39-musllinux_1_1_aarch64.whl (397.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (464.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (387.2 kB view details)

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

pyzstd-0.15.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.1 kB view details)

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

pyzstd-0.15.10-cp39-cp39-macosx_11_0_arm64.whl (331.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyzstd-0.15.10-cp39-cp39-macosx_10_9_x86_64.whl (448.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyzstd-0.15.10-cp38-cp38-win_amd64.whl (245.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyzstd-0.15.10-cp38-cp38-win32.whl (217.6 kB view details)

Uploaded CPython 3.8 Windows x86

pyzstd-0.15.10-cp38-cp38-musllinux_1_1_x86_64.whl (414.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyzstd-0.15.10-cp38-cp38-musllinux_1_1_s390x.whl (412.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp38-cp38-musllinux_1_1_ppc64le.whl (436.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp38-cp38-musllinux_1_1_i686.whl (390.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp38-cp38-musllinux_1_1_aarch64.whl (397.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyzstd-0.15.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (464.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (387.1 kB view details)

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

pyzstd-0.15.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.0 kB view details)

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

pyzstd-0.15.10-cp38-cp38-macosx_11_0_arm64.whl (330.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyzstd-0.15.10-cp38-cp38-macosx_10_9_x86_64.whl (448.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyzstd-0.15.10-cp37-cp37m-win_amd64.whl (245.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyzstd-0.15.10-cp37-cp37m-win32.whl (217.2 kB view details)

Uploaded CPython 3.7m Windows x86

pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_x86_64.whl (414.9 kB view details)

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

pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_s390x.whl (413.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_ppc64le.whl (437.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_i686.whl (390.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_aarch64.whl (396.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.1 kB view details)

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

pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (389.2 kB view details)

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

pyzstd-0.15.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.2 kB view details)

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

pyzstd-0.15.10-cp37-cp37m-macosx_10_9_x86_64.whl (447.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyzstd-0.15.10-cp36-cp36m-win_amd64.whl (244.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyzstd-0.15.10-cp36-cp36m-win32.whl (216.8 kB view details)

Uploaded CPython 3.6m Windows x86

pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_x86_64.whl (419.2 kB view details)

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

pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_s390x.whl (409.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_ppc64le.whl (440.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_i686.whl (392.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_aarch64.whl (400.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.7 kB view details)

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

pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyzstd-0.15.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (391.3 kB view details)

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

pyzstd-0.15.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.4 kB view details)

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

pyzstd-0.15.10-cp36-cp36m-macosx_10_9_x86_64.whl (448.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyzstd-0.15.10.tar.gz
  • Upload date:
  • Size: 769.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10.tar.gz
Algorithm Hash digest
SHA256 83603a97fdbcf2139f475c940789f09e32703f931f29f4a8ddf3551e6700108b
MD5 b561dee979df8d8790810449f42cde9c
BLAKE2b-256 0faedc18432a364b34e7adbc0edc32de44dd5310184112945552c106ab913f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a07742d42409c3ce98c58f2b155e2d8acdcd8ff49955062f5155dae94b24060a
MD5 559a405abe55f1f600dd8b45ce2c4fb3
BLAKE2b-256 9f465893cd1874df8841c49b34077f8ad82237d3a1c75a59b6f5a5ef0c002985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea1fe83079c67c3f1549a735f11060350c87453bd86a8442bccb1f9b14c26aef
MD5 ac9ae2e14605690c518f05b5363a1902
BLAKE2b-256 aabc3a8ff42e70f6840753405a388e1178af0da124f9af0219cb3e9566107ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 656107ef6ff0966df2a58828f165a17b0b40977358512ade259c52c18bff0a13
MD5 b31467156c4034e70082373186f475f3
BLAKE2b-256 1327f7f3c8f8b33e330befeb75ec044ceb1b5c39303db81a7d6fe79235277d9c

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 502ec85cb2c0a35350a196e25d5e1350d400102706eba05d7926eadb64ffa976
MD5 bf894bf69c87de6d7c9b7ab202058312
BLAKE2b-256 93a56e9a67698f68f1b68c343a65536b4dc70a9b022492e9ebe3c9ead59063bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0691e54fb29a4d1f4f2a0064afaf5d1525824bf139d83f403e5ba5ee630ac4f5
MD5 850db29ad422f2977848054a99c02667
BLAKE2b-256 3a796852344e02c5be308a22d5ff45adb0f6b2d1217e9ed847700e1c9c391198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 330062103d25e0d67681fcf5ef8692c71cd979dc17ed98f6cee3b3ba8bd86622
MD5 9d9e8a59f808775a21c929e3f74f8e11
BLAKE2b-256 1da1e7cb806888380979116db0dd2b33720a71ef31d8fb0f87f13576ba8b1fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dec319cdbba5ed3dfb2a8798364a8899751e732127c6ae74bc41276899e0311a
MD5 28d09646e086615a0675cf26b1bc2dcc
BLAKE2b-256 d4f7bbd724604754e354946cd6c160af968ac4f56c519be000fe6aa77e415edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c309d50ee6a41053ad4c284295e5c5eedfd084ff94a5ee1148cf0dc64e3223fb
MD5 dc5845f0f73ca8023287fa6d553ef85a
BLAKE2b-256 a8fafeea701ed8880fd780e2ea7fe9365c216fc95a0dc309f83838b889066b5f

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24d061047634971801649ff9aced68bb8403c6220b07c82aa2c0e90d8a61acd0
MD5 92d4dd5857ab3643250b79ba8ceacce3
BLAKE2b-256 20247226b90877fc7e38f2dc6e85d3775f6a224b6cb07218bcdb1dd605fb20b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88e8cbd8fdd2af2f94615c32ab113c5cff4dbd188454394c4cac9941d2f72204
MD5 cab430fe810765da5289cd6525fa2f5f
BLAKE2b-256 08f2fae201da845ff1c684651f1ca38176ee6ebb4a2436f2e403b45fbacefe88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6e742a691f4fa73cadbe7f866b33e33161ede5bc777eee443a62504adcadd65f
MD5 8daed40e9c91a84fcd2b014a76efb513
BLAKE2b-256 25591b6a0f2624bc5d579c0940a89cc5f93b257b8423eb7a0b1e96b4ac2cb118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9d44c5cfe2516a652131ddd91c3a48924e34f4a7b85640cda44694afbeee6cb
MD5 321abe63fb2788c9c7c4782226b8b3f7
BLAKE2b-256 2bed6355fb01d869f6ef6de29ebf5a157dffe275a7b37dd78068bb14bd51d0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5942e8b7ad869ea5f44d928053d3eda16e877b5fed5326786388f6a377545ab3
MD5 b81fdea6666125a86360bd459a65546f
BLAKE2b-256 3aa2a40cc3c56f5f8efefd9f9a9f1720a6679db1b7582cca62336bf167ba5f74

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a5b54ebec1e606821192c86a3b85c05c3f789d33bf44f383fd245f148f8f93b
MD5 41f357010957a6280cdc55f1b9e932f7
BLAKE2b-256 3c35dba4f5bd4ee2a2a84bbc78b1651039603faccb4106ab7f179dd966e7c71f

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca3df18c269f9c11b40dde85336d3fc4a879867b05c74efdd4d5f8e64ac7e179
MD5 7f9ddd7aa3f36bccfe03c41e8434d884
BLAKE2b-256 135b9cab6f3af9c7b746976e3412262bc3e6b37c848e2fe6aec56a0557681c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3aa0ad903da666cf88d8a993e5fe9b1bfa0e5792a53212335af0a89baa268911
MD5 dbe611dcf290b3310afa4cc21cb50efe
BLAKE2b-256 bf1a3060dfb8e9908d92caa8dea65448e7cb56c07552de27cd11951b8428e452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 50079bcfd087c8a8822c9fe940c887244cf2276ca0a4f0b55bec006b564b9541
MD5 e5bf97b8de595ae289bb50a93ff1c3bd
BLAKE2b-256 89091445bb27e6d368257f62230f1853a2ce80d9594d06efecd5f598781a857c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91da52897e5219dc440d3b9d290fdee66fb70c65ae594555c8d2c887df77f2de
MD5 e55fc978b6283bb853b112434bfdb1b9
BLAKE2b-256 9e90d08f3030a42a100ac3b19fb3c3b332aa5e60d2b66e3056809a9545b563d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63a90494aeea75d3298941b0b8ddd505cbb54d6b915e579368db21d93454e41d
MD5 57a8555aaa8b49596b0236292c5c51fd
BLAKE2b-256 d1cac5ced10c2df196e94f4840b49b194e4eacd425910e2bcb3a47ca42bad8a8

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b9105a4977247ea8664b113345e66bf4b3ffd321a07797efc6b020ff363b39e
MD5 8116638fb5de73d630589601d5141de2
BLAKE2b-256 5c84bf5090a87dce3ae621d61f3b34a08a2076e2860707a9f3b420aeffa75218

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc917e488a9bdc681cb4a9b0ed3d0c8b81816bc1a6b1f85ec4050c827ffa9e76
MD5 3bdbbb60ac84ba37a35ba4edd87caa8c
BLAKE2b-256 a365913b6db5df7c82a63a3dc75426ae11a88f5e04472a8f5fb30385f6f84f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6023de5cc800c073cbf6a10a7aad0cbae0c1849c759bb5263a78d9ac774b167b
MD5 b35b55521522ce1974e0bd084e3965cb
BLAKE2b-256 e712d0d1c292a2fd3483991b3d6704f5eb0b6351713cedaa35b339918f2dea81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0561710b88d4895a7bb202335e802125da6a71c556b1292fd620224b2652f496
MD5 18e4f57f117118fadc1095738ea3356e
BLAKE2b-256 ee43be164687b341843d42492d039c5835c01e703ddceaf0f85f645dd01c94cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 218.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ce8e8a4aa8246c615693b9d0504e1df98157ae48907a044baa80f80abecc44ad
MD5 14ffd62e4944acbb6bc74053b5ae662d
BLAKE2b-256 72e1844b73d268c63efb333f4dc1a649f56525897b910cb5aced43b7e4ef1e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7f7a398bcb0f4cfbaf0ddb3e831c43857701c63c66f48eb30011326ed03b0fa
MD5 251db00d05164a3fec7e5d60327928fb
BLAKE2b-256 15d9e00cc5cc39703d7b8b8f62941900b9a3fc0690859c39c790f49b69458cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e0262bba03bb4d38b697c2039a8e48a9e889fb9ae9b727903e8d9c49d32883a4
MD5 6129470cb35caf8ef6ecab2deb8a149f
BLAKE2b-256 5254c563083ce3d7048b292b0095ddaee875b40ed87fb0cb9956f6963a1f2bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 455d2258f247968d18a9eaeb11e214e048acc976a61f72a0282d4c40051458b8
MD5 464f3dba109fb4192b68faf0eb5e9377
BLAKE2b-256 b2dcbd811a05cfe4bc41d66f2a8eb69cb41fb884d5f17cf82a8398efee43ea6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cfa03e12c0c1bd357a0e1f20adae9c32bc166dcc6ed3be65885134830899b6ba
MD5 283b5c0b2c0bd6a7a4abc977fcf660bb
BLAKE2b-256 034fa5e3d85aafd5c694e8f655076b0626aa2c12a6d7839792b1c0a3a37306db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6217f30c4341619c6066a044ca118f53a3121b5813a56257b1f9818e24450584
MD5 f5d9fb4944c78ce6fa786ef7c22adcfa
BLAKE2b-256 f051b1fbf2bf7dcf8be3ff0ed6fb5e298ea8558dc8b2d357f4484370ee5d57bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db3d4e991ee727f6c0a54fe975ebe169be3a463ce810cfd8e6edbe8a90ddeb8f
MD5 8124df4d8b928cb7b646c975c673ac69
BLAKE2b-256 e4e11dc618a9a517441c53e52bd4a8c1cef8d8dcf9946f99fd542f828945553b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3443df2dcdfe6e57c2600617e8f377772703b7f907fe065b49948c05ace80fd7
MD5 c4afd98a7c237f2c69bb0572fb60afd8
BLAKE2b-256 e77c4e70c1e7f2dd53fbe241d36302a3b35055c38f8ad6a466ac5c1a238aa696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fa20eb8f710a9d36801451d1cbcfc83d1dd9e400527ad9aba7e7cc635c2729b
MD5 d7342cfadd744b4dd366e860e5cc0227
BLAKE2b-256 d6272a579ca1625d66c3097e0e9550f5ef9569a42bb1565c1b98fef651d7376c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d62a54dd438b51dd9f94bd88dd2f7c9d4093aadc44892143182d51f8488ab5f6
MD5 1f92d2a78912c6c00da921524f5ec31a
BLAKE2b-256 03749a1e98dbc8e5daf053ef36079ffa50b7d6548f58b407c5b556419cc1a0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53172f0781b3db9321a1286bb274121668c3fe560d3bddfa82f585475f7145fa
MD5 87ead6819ccd4d32ec48fd9c33dd54ed
BLAKE2b-256 a1721f3d28e19066ce527f728bad7e78f254ad489d218659c6b1462291987561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62a1614558478f7d1014eec94a9ae3bf21c95766ecbe0a4a1ab16d2f1e4a6b67
MD5 d42efe7a733a367b7e9a16f01ba73ae8
BLAKE2b-256 3e5c3d20adb3c612104f6183ee725208a4e14b9058c8377816b258087cbee6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13515a6abca6751482396b656e5b72279bd405fd6c71b5bc899fcb526d40e564
MD5 8d2028210d4afb049a18004ec5fc1a7a
BLAKE2b-256 16234d1de0d67f9cd14fe37ba3aac840fb457d16b73acf23e97e3205b0e2beb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 245.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cd0bd21e0c7721e9f4ea54d533d9196771ab1d6ae0a83a96564dc46147a26eb
MD5 a00b05e779cffb019aa226d8848141e7
BLAKE2b-256 92a53ef30babf22d7464cf2d256af11e79025ff69fda76489343ba495385351d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 39a912430c73aa585ede2dc7c9f09c5334862953f26a9a86ac048c3805ed6bb1
MD5 cbcbfc8a1dd3a228c099ba0387d04c84
BLAKE2b-256 9670680890b9fd24de3d65d495bf9d2b8fae914478507ea2ca27b726ad3bace5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b856928e99a1d3080929b0f194c7922c7a7979b0eb21ad9d057f000dcf1a6ac7
MD5 f83facc55f46080f22be10749fd3a72c
BLAKE2b-256 9ded89aab3251cdb4d24842ef344a4b148fe50292b421b6e3e190075e3857bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 015a6794196fcb75ddaaae8186f0dbdcbda4e84451361a808b3e96c8c8a63296
MD5 c607e2ef151e1403f272b2b8c4eb61a5
BLAKE2b-256 cc56a3b600d91cdbf957258a2445d5702ebe2ba5b091e90ba50685c517383fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e21208605759dc2eeebf607a002e1ddc09548c12f25886d2a2dd8efdf35535a3
MD5 27653cc4d05e899624653cfe86eaa1e8
BLAKE2b-256 4fe01b6cb487b0791922f16650d46b6f45ddbe7a764c73fdbf8dc05dd3d13b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a900a3dcda64b289cf35acfb6c90246b5ae9f2dd4bc05da8dcb8fbd04c91e37b
MD5 38e9c7902030c30ecb374e5e455deec1
BLAKE2b-256 d0ec8d5d63bae2a040b050ad0c7d1b7c4615c8eb879cfd2511c572711b8bdd03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 330d54a0e5886fa5ca21e3960b9352a7b21f8dd85f98d4b7c4e8a7d48ade6998
MD5 9d5d42b48ad5fc4b8c242971ebfca0e0
BLAKE2b-256 8be9b8cba16e8a877e87b7940e8bb41bdfe8a2df00b8c68efd2d65d2ca6c07a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d6f7fcfef9166670df4b6710d1105b891efba68ec523f56c64cc8c7aa6c8e88
MD5 9eda3cdf1dc8611bae857e060dfccd7d
BLAKE2b-256 9ab2887a8ff364db63e4897172938a1f78194e116c6b53fc9de10960e40df1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e6fd189c85f2efe94d3945dfbb85cdbc4e213757be75aa9a45e186625498ddf
MD5 e1ae58816813846df1a733848e334c19
BLAKE2b-256 7e0eda433fa416bc9da7c7f57b2b1c21e315945e804a014874d871bcf4695725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0822c9f4852f9f6b1458f8fbf011bb887cefba792b0c7c10659e2c9c997d1c9
MD5 6cf32e12309bef2399a2d8cd070d3165
BLAKE2b-256 16eb71dea28fda9450ae2b810c38d4794adb03e19b5f004ccdbaedee658f9117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adb895a0081a932132aa3a233cfeba682a07ac0dc36b062152f240406eecfba1
MD5 0e9d7454eec11a7693740f44da51bdf4
BLAKE2b-256 e150b55bfb3ce8f9bcaeba70340e22b81ab501d5024766a82a74514e7562f2a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 527bfd3e01b8dafa1c24cba1a0455a85bbcdb41a3eefe59e2849634f9206d4f0
MD5 ec308fb26860081a806608dede20994a
BLAKE2b-256 36f1e35341be399bc9bc7a492a67a773280d13fe0d3a2c1ca87522eb5878c4c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85582502d3df1db8077475d88d0bf5f35b8ddb8abf9badd8625781024da5f346
MD5 b95e5af6a4a88d9370652f5215115c42
BLAKE2b-256 8a6d6e87e35fe58999b6a650a1d13c2e7addf44fee071ba0fd2f4e2bf285b8fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51c644157319e2ca87521bd9694df7f651aac3273e015f35cdfb47cb8597ce37
MD5 07d886fb7af6ebbe320054eb4e385740
BLAKE2b-256 e35d8fdc6050039cb246512f3230106070ea1a735739275f55d698137d686b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 245.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e3dff90b6abc56331a886b5067c3b6bc3fad1b6df5766247197b699afd013b7
MD5 234e4632ff5040baa359a04135129433
BLAKE2b-256 396112a9229aee5d19914678e5a487215be7a30248a0239d0fd1c0d1156879b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 50186fa41c72929d21727dcc6cb87bef0adf09df9e982325a0ae5bfd20a9456b
MD5 70a69e6d683beb3d83f0a585d700c7a7
BLAKE2b-256 cd4c66999bc71a71d59e834f12f5c042ecc80a9c4e20f67b35397d92d450bd72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 150a7c7004b9df00f7cbb6dad0bdbab5d77c8c54b0857b8b3e50beae2810a041
MD5 0c5eb66b7603f4c3a0a1503ddeb14c95
BLAKE2b-256 04229939310f60bc24a3ade4da2799ac53bdf84434a577ed418b6991f5293bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0779ccd652113d75cd461fa6581149550b0da55e72b1a6e28e6f49e9978c2d41
MD5 dc6ec80f0a848b880176e69eeee3768a
BLAKE2b-256 5c596770def61421277bc3ecb5f11859be6f8726640d0265a5f7288ab4362f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a22c4b26fb6134ece45e875515961bc9c1777df775f3488800bea55a381df91e
MD5 00bfcda4e229ac4f32d329c7127bbc3e
BLAKE2b-256 f2b0e38ec8026e87275e9c6172bbf01ee41412fa172b106a995740b334e67318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1e045dc688bb618cf2a2e33cb487c0d8af5e31a4eaec18c9399b34e2aed58777
MD5 bb0e45fbc3257e8e5f80b9e9f39ed875
BLAKE2b-256 907c1b0cac1f9946cc611dd8d7b93b51d12f796f5d2473d9e9fcc71a220846e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cccfb03f829ecde3ee126befb4fe827e2228a50e8d9eaa0275c4dd21a0e59765
MD5 5537bef70573a420256073f8825741e0
BLAKE2b-256 ac64b233b456dbfe698986286ca8607a7f4a1d2a771234baf0e79f24c6951e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dfd0d97ac231c08551543d61d123cf44bdd2fc20ba5ebce1fb0c466036be15a
MD5 d8c0c0ad4231e34f78a86d835251ea02
BLAKE2b-256 17d1dd4b5af664edd46a671a5275edc92b218f1e0b121107575d9e822b984186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0f1f590a66769caea6cf47c3c5d06d004f01659449595d4bc737a42d4670bf0
MD5 2b542b0da485630185675f972f7e6758
BLAKE2b-256 f661209ee89388eb2197e61ebd4542792d7f53bad4950d75a9598debe2037c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 deb41298fb0c916875413373e5eba162e39309d8730be736b3a206d9b73afebf
MD5 23eb23f52821d703783eb221ea751e3b
BLAKE2b-256 762e75aa06630e38077d1e994bceec39f9b1370e6e30cfbf3a763c1fa580bd90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ea6a794b8a4e0590bea1599e724d4877d34640058caf5c0b3f916ded06fc3a1
MD5 f0d20d39371f02e29b83a6036845a667
BLAKE2b-256 4b1f96ea357fa0a3e5bf6d7f1ffbd6ca22c21db11f871567cc84712c53717e3e

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7c4530ec6bf3a27c3cba229026fa3669e6e1832fdc37cf74c73b113f884cb2d
MD5 ddffd23cf1ff0fa6fc935a6a7913dcf7
BLAKE2b-256 91fce2d6793c8b10548cea7e12106e1c91c4ad6dca8d8b5b579dca35b68fce7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c20a4ee0706db5c9f403e4c459fc81145f48cb20fccc1a64acfb6143f1a7b1fb
MD5 c07ca644ac5765f47598995a65466509
BLAKE2b-256 82ce0378abe270e798ece3480f061a8c2008a791f9432d92ab1fcd6a10ef2779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8195b3fe2ed91db03f969c3c5cf6a9bcb3a961749caec94479e9e7a96d7af14f
MD5 6da64160d591a6cd4f04018bd712f46b
BLAKE2b-256 7a7f46a57e27b301ec2503c28230d9b8b63cb2e69e1c22732c64f8f432d5a663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ff57d2a67aaff47eb60c37c5476af2a5056319aa2a5cab4b276f78b764be785
MD5 ce79fc8d784121dd562d7a1debe3678a
BLAKE2b-256 410c5adf990b792a271460b9c97916c7b7e763ddc32f414889b477c4f7ec0a98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 245.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e4123de14a8dd7bccb1faed374c1f6c87111766279bbba5d6c4c52e39c383d9
MD5 a18ed189cddf7e0ceabaa306d334f9a4
BLAKE2b-256 91ea2b0b64b8436eeed7a1a6378dbaf23edb4a9c492b5be72e5734a14130a62e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6ed32af20eeeb7f8307b091fdd0ee8f5f8733dde7e8f560a3115c98a6ac33a61
MD5 794678235ea092e22d0f23e0905c92af
BLAKE2b-256 5dfff7b1d01c0cc8487290e315169d5b4122110be331c9b69c27515f618fc089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81154db47a9aa901d09a8cebcd1f6559dbbd02a93a16bc203dc3f94c06bea25a
MD5 d664fd238eafe42489a1bb2275aa9b1f
BLAKE2b-256 2d0405d502ad9d1fc8eb24b6f8edd7e4886aa5a9129cbe7fddac8233d1edf886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 bafef40c8b521ef9df81a118e278d5759c0127395883dcc10bf80ee32a46da39
MD5 501d3b59fe9266ce6ab6c2ba880ec0fc
BLAKE2b-256 6ac7a3f33b6c77afdc6b2da689f334c1a53a4c974aa95e3db58d3557fd426d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1c3d0e784ea9b66b06c7b76895aa4c1a90975980b1ae136fa8bbd8fb2b93e9b3
MD5 8c619b66c689adee8c0e40d80f472597
BLAKE2b-256 bd75cc0988f01db17c0815fbbbb8ce3b23c34f5ed525f78f7ba7c44f59e98e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6fa6495ec52ff29b097e6d1b619588ab61e998b198882ec622d947856d4a85b4
MD5 7562388f155d336f013558c8fdd1dc35
BLAKE2b-256 b554e74e6b7eee3feac0699210201067b6d1fb1b9ee387985b4d894c09da4a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 92abe38cdd7ea3f98a0f1a4521e9e7e70aa001713bff62a5b97fae41b0a39d0d
MD5 b7326ada891cf07fc37ccab6efd3cd8f
BLAKE2b-256 df0bd47a763e53a0516d070fbdb059ca967606649e33a25983408bc4eb984ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 965e04aeb83f594577ea4e8c975765d0953a75c8d6e3cd193ae25ef574bd83ee
MD5 9d2a191389b432568d566c1c63d9f476
BLAKE2b-256 f399ed8929bb325710303573166031732eaea0beec819b8618e104a21931fe8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6bfb81f36fd56664dbbd64a0af241797424c76861faa2682aca89de110fce5d4
MD5 0b55e38b0da16f562f6044ebc54f4739
BLAKE2b-256 32797856af1c8f49d36b5c5342e9bc587cca07c492e48847c5ee1a43aa9bf66d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8575d340ffcd89e4558448eec23c252da584f0de4528a73ed45a01f12d6700fd
MD5 6032f3e7b416fa70144e57cf9d1106c4
BLAKE2b-256 c49de38ab040a029949eaa2c212c9c5aac107478cb6ba1a6889ad934f8c22c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a62e98375385ade756d1ea4975f79ec103c515b412884d146c98295c5300fb4a
MD5 9037567c2bf3ef34bf99761a38ca447d
BLAKE2b-256 8f14644e0c07a8cb4f750cde4276173a458789acced26efea9e715a777ac978f

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 468f12eb61cbef394ff412c86d8bc85b90f24dff19f675c864df88a1a398a3a3
MD5 9671eac4551f9bcdde12013a56c44978
BLAKE2b-256 9d32aa834ee56e91518578f13e4abe326ed306f66816b8e2baadec80177e1dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 793077870191d54889cc472eda3bfd84c8cae5ed61c9fa9fb2ce29c31e23f812
MD5 f8e0c9b8c6fbe6fb0c2562c050eeaec2
BLAKE2b-256 abdea91e119145fcf9f10945a82591349693ee4715260a57ea50fbe53d307a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41e0da402bf0d68067be2f16f65b9d1d7d7e6d726f27762226cba7a8badd618a
MD5 0984d7e85717a872c468b5db7bcdf5da
BLAKE2b-256 197d32c960e9406cb224bae77196cf7fbc891d89ea86b5679a08c0af245351e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2dbb36017e5c7d7499dfc05f8d6ed781fce9fbfa45cc7bd888ec5f871aba3d3
MD5 cab92786eb9fb633eea8f1efec29bbb4
BLAKE2b-256 4e78015b591c205f213463099265bb678e8c3088220f93be3a2df3dd1466aaae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 245.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d077f76179de41cdd5ae39b0a6f16f033b077f27fa54a9e038d03e3f5ddeff23
MD5 32ede5635a68216eb6d7fe7341c4c071
BLAKE2b-256 1bab747611f92b001f32e6f27d74b9a6c7a75245427b744032ae8149c44ec41c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 217.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 846050f1d7520350d26076df12b8a78b540780d7d3478845be79d57e2e6d3612
MD5 1a09c7667b80664f7b6483e9004e3e28
BLAKE2b-256 1a76d803afb8eb2f5bb928f537a26a46def4c61dcd4d3d86b8b7bb1c9fffff64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 801ab496766a858cc54b37a66f9d0169d590628e69bde2166f76c35dfc20f64f
MD5 abd65fe9e699fb87426badfa52ee24b7
BLAKE2b-256 ec699b75ad6a8136248265c8f49362d2e920b9589430e07a9e40fbb2ff991be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 18167c8a16709631eaa2f4fd27e2a7570b4c37ec460b65ff098e948af2d37f33
MD5 3d5218aedb2b2d9903c4c83aa09d5273
BLAKE2b-256 5b030d173ac4805536a4c6800e27452c36418be3a5fef1f6306924f7f99e9364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b62c408ddac3ae113b9dc4867fd2bb32a2ef669c68f256eb5486c02b31603afa
MD5 889011b53aaf9397d32e5d178c64cacc
BLAKE2b-256 025e36b31873b25bd309e335dc3543ae9c630701eea6689549871e7360de37fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 609cc4bed06942e51ebdfa9cc74629e1d19de2339161b65d555d01b9820aec46
MD5 0705eff6ca6cb15a2c3baa81e1ef3bbb
BLAKE2b-256 ed6e3effdf81b0d71d1eec6278a48486d659a319b9d23ec4a3a646498c81a287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c2d2a7324fbd118dc951b63b1fc553aec0fc0c430474a6ab7b33608b9606658a
MD5 a3a2eefccac69f95ecc63d69bca65a29
BLAKE2b-256 02a9da993fea59b19c172c99f55ddf1a5e24a1820f3d1a741fb9c5c923ad0c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91e8a0852784c758b8de4179c61e80abae997155aa2b324cbee28dcaf9084b6f
MD5 2e1862b07b9f5ca64fae22d4f54a8d48
BLAKE2b-256 439f9269e20a4a6f7fae54f226ec56ab28f4a0a5c859bbb272b0c8c431103ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9dca0cde0f02e08e11431fff0e5408ac46420912165d828bc148a3c8cedc8852
MD5 fd805f38f029e178a9fc10096046bcbd
BLAKE2b-256 4545741cf20e2f6286577cd906e1f002c7a516c88d9d0f3d459500794a7e90b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5494515f3d0df1eb54c9f4ce7b9ea0b285bc1ba87eba295604da5f8de711bdea
MD5 215136b04bdd0ba51b47ea615f4d7d69
BLAKE2b-256 ca6a573b989d0b1d9f923555b817482cf3c39aa99111a26fdce3ecb375410b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f356263a898b2c9961a2661ebb975f2fd20868d2c4fc4a165226fa7d36e1c76
MD5 db8f4e62dab2f5442acdde14db3dca81
BLAKE2b-256 4f858c91c5a43b68a4442eeb9c0faed1e85719370340423aa76e0d91ba937049

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7b2ac847e8d2ca55be038d29d20d6bfe86c03e66ac2d9741701e4f9eef2abda9
MD5 c85904829c097d380c89a012cf4df105
BLAKE2b-256 841cee3f46c258dbfc6686d64a2a1274f71238e3b6934bc361e5911919c4b894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d62f357845f90d5327bdd3286ebd79c40b23b8e7c36772fc2949ef54a92bc6de
MD5 255ea588991b730ec331f9630567b3cc
BLAKE2b-256 53885df5a7016b8f140a03be2ac4d064115e37e167de7aea85c570c0e984d2aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d55d9e1e22ebfa9cde606a7967eb21fbc65d0d3be600e550c38a1c05094c8015
MD5 3fae548b7c527a8f2ec0cfca1290f602
BLAKE2b-256 2fb53108753b60e867bd7de2228d6c24f330255b522bcf7c9c7acff3bd694298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9593a76f516312ec59dbeb73a9f1915d1f67610c054a7b488912b972cbfbcb7e
MD5 65fccb14ea205a183d99f894d6a22127
BLAKE2b-256 ca7c81d0d4dfd704c9e6d5c79a2657a4c04ac15c69a80432e9ae3ecd37bdc77f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 357e6545203754e83a0431663aa86cae873abe160923bdf3db07e88f03100b05
MD5 6835f70eb941d076d9ad40e64f00dce2
BLAKE2b-256 1c3f9d56609589202534ba11db2d2acb06b4d0b7d2591d0179ca157b39d7397e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 217.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 013b206c22b85512d59dd05f6684c02bf9db45e93f637facb5ce165c2447fbc4
MD5 674780facf9b117f218b8da7c53272d2
BLAKE2b-256 9724f43f9bb711cae1fb67ce01e61096b50092f7437438ad1dc61a0de05e9035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ae5f8ab4accc980fa8e6696a402176e20a717ab2b296cd8d62b6a86cafc5f9c
MD5 cf4a310ed8d48d1c6dd905974313e9e9
BLAKE2b-256 24cf6dde8bce1115fcb7e117c1db2655ccfbdb178c05285e88c6511ffffb7900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c6f67ac9d3ff65ca466821d573b3cb2fb01f0cd9eb082e92f49dfd88fa828a77
MD5 237141aceaf1afd4a5ec3a1ecdd3ba05
BLAKE2b-256 6dff6adb5ef014059569f670c54dd5c464567cf21e9148385ff188e424b415e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c867d446b22a7288229a812da6f211d86934beb47edf8098e2e0dbe9e2529f86
MD5 ab76ffb2bc40dbec49fabee4cdcbc21a
BLAKE2b-256 0e92bdf09346455bee069b4b1cae517ed995635eed0e54110773eb2ccd5886a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 be591f405d82f40acbe2a081f1dee5478a3cf1b694013cc5712e84159311e36a
MD5 7d977966f83a7801535fb33c2e23ffcc
BLAKE2b-256 6a50259fdaa413855adec7a29ca150efb16d49aeb308b671bed8ec658d24502e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 99902df14861e4f40ed1eb403a17356188428d12bb10d53de10d1ea24996b838
MD5 913eccc11c99c9024d2168a56fbd2d03
BLAKE2b-256 d686b21855d4f86c41edf8340bc4e3693159e53cbab1b41a965f5037eea4db19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a15a3ef14cb929b07e0a98639f2ebcd69a0038d6e31367157018ec841a54d8fa
MD5 2a2fb69389f86b1962d063a6d62dba15
BLAKE2b-256 ce8ab0e003223218c33045ca02823495baf218d5c993f716c477df34ddb51088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94d970caaaf3f59d6c7aa0aaf38e755641351f99452c400fc06b7e365ab1620c
MD5 8c5112f11af720f7c405f45b00853f63
BLAKE2b-256 9a249b5fc478d1b15638dcfb02bf9118dae35b032ef3e867a40bfd4fbeb78054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7bb791f16c810c98865c373202a44b7b313d01a2a7a6186c9dcc0ac1a0d156dc
MD5 9e29afb085496d36bf204ba6e1116a3e
BLAKE2b-256 4f40638aa2071605bda8f7046f9be2756b36921143ca5d39fe13a263d240cacb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80ca483ee2084d36dc570004b6793f99c58d2df201c630f60518bca3518faa5d
MD5 ef2d023fc46b0e122cc02f38d9bdadcc
BLAKE2b-256 bcfea080dc31a67e0b0514bcd0af79b61227902fb6c25d7461496eef5417983a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ca80bb0b8400888e16e8eaa01b506de7d1bbdc8cc78c9ff75272526fd36fcb8a
MD5 0c6b928d7c2942c1128f9924cc921311
BLAKE2b-256 b1281b6ed5ecc406dbd1e9b47b31485d39947602c2b0e04062962df4f25985c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e69d3d5257607a3b29f12192ad7bc9fdbdc8aa5f7e11c6f536cb61ee02dcd698
MD5 dd1f7c45af336afb210884e34d22f3c2
BLAKE2b-256 6798e494809f56834e010de34f98f08fe9a227d9fc37c8ded06897f53e69926c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb4d96fe5d6d8bf5c8c64d8a37edff55e6d9abbf84d9b8fd0fe8e0db1a557625
MD5 d594f296b486b56180d3bc29c0d4755c
BLAKE2b-256 084b7559421dfd1e3db77410de7ae93f266da61608cec490c0f9ee590205ea65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 49c99120f9ea0c512019948e55ba17e60dadb1d3578890d53b2a09858da4e1dd
MD5 852c8f057d14d85a082aab610d6aef8d
BLAKE2b-256 14733985cd8d096c80f0ce7be9433e84b68c91e176e76efc5181b54b34fc49a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.15.10-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 216.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ad30429f499c30e8e19ed389b8e25116d43c63cafdb97d4f5617e94e671209c5
MD5 3324fb0eca3d8e7ce80c739ffea2239a
BLAKE2b-256 4104654d3fea24c5898ff507da336a3f9dc2f526da4c125c74d86ff45d28f2e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba0f1c0201845b769c92b2b3e7666010abe14d6e9dbf4214d04cdf23cbdcd1ae
MD5 97c5024cd93a4b6b9fe1834dd18381c7
BLAKE2b-256 037ab6c4f21a34ab72b82b021b0f9d4066bab6d507de6ae861798d64d1688128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 957751dd7bba26e651c689fc5f41bb269712efcbf19a97ad4f912f0f792e6e95
MD5 161f311b2b1d5723a5904a68d644c7b9
BLAKE2b-256 c10745442ae4cf76574d72168ea67f4068e070fd1b830beccdb272074f877f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 65e99e57f5fb42ed391fc2f7ffa4b8cce5a32dfd74f52e03bd36bb2ac3b56536
MD5 c8eef76c47e574258e17b5bc506c0f22
BLAKE2b-256 c0f6561a3d714e330126b4b8f2e211454bc8b4cdc758ce96cf780fd1acc2e636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4094ea7b80081bb024eb887c80eeb6bd8ae24dc2862cc61ae9eadb5bca11dcd6
MD5 78c9e83d0c8e3cc3ca976008c9cf9fea
BLAKE2b-256 81c9ee758adabe6c1f1fb9368b6bae8b4e7bc0b459c40dff630fed81c48e56e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6aed97ef51e20ea4fd7e12c4b9e3199cd8e4664054f5d84c3d83e6f4d3144055
MD5 7122eac97b077b4ccd5a1f11f4774592
BLAKE2b-256 bde6a9a7a6e316df7772a8332423f490ef73e187afc0fbed1ba5c3a54f101908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94973e29acf813a572adf3ed2342a0998a41331781d7be82a0a1b02646181e34
MD5 5e25a364f966139b1fc0080f3e045349
BLAKE2b-256 65eb4a6851358d2dbb0283e6c89e4f41bb31c9a4053137d72d6473800c1e8d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1752344c77dbb137244e6ab5af5a7576b8e8b8e5d440c58d935e69f83606e0d
MD5 10160c23732c007bc4e1ecd9560c29b6
BLAKE2b-256 8ed24f62740791cc2e607a50183e59d56e113c0f35f165aae826e7bf2e72e654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f174c47c370641c5dba74d4fd99374ca0eadd47e43e7f76ee8b76dacdfa2406
MD5 7c71acbb4d56f6afb22c90a4a384421e
BLAKE2b-256 60699df0acdc7de9f9d9ffa0d04dcfddf87eda56dd052665059c45564406a829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2cc02e94ff4df6a4a871bbd69149ba5fbc5150108a208c6cdd9bc728000995b
MD5 1d2b111c00f6d8af1789297e9f67b841
BLAKE2b-256 436d1e9138bb4ed893e61b931cb708e81a045ae07c3528cdad3815149eae7b2a

See more details on using hashes here.

File details

Details for the file pyzstd-0.15.10-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.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b19cdecdc19ad863673709d27ddb0adc104b9ad341f2785ab23c51c9ab39cf3f
MD5 43d7427b34fd0c42a27180660b974ec9
BLAKE2b-256 007a8a0277d207e10591acc128405f5a30d63c10a97bce79c049a2bdded786f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e71bb03c754934d7792aa0559b16f9effe1d4196f5834715c115363809f00c37
MD5 3f89c8d1678199b69b792e92baebb3ed
BLAKE2b-256 79b12b5ea3a50f4850a840a1e72c42f780dcf51156eebf6133ca8a906aeb0e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyzstd-0.15.10-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62b8c3801d739a9592c0503dd294fab7f8cd2b1d637429babe13671bedf7d6f7
MD5 054dbda175c3126d50f6ccafca79fbb3
BLAKE2b-256 673e37877ec9dc861159e8225a08fe70f58dc921e31198d11ff0d8fdb45ec056

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