Skip to main content

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

Project description

Introduction

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

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

Includes zstd v1.4.8 source code.

Release note

0.14.2 (Feb 24, 2021)

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

  2. Some improvements.

0.14.1 (Dec 19, 2020)

  1. Update 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 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.14.2.tar.gz (632.7 kB view details)

Uploaded Source

Built Distributions

pyzstd-0.14.2-cp39-cp39-win_amd64.whl (198.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyzstd-0.14.2-cp39-cp39-win32.whl (178.8 kB view details)

Uploaded CPython 3.9 Windows x86

pyzstd-0.14.2-cp39-cp39-manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9

pyzstd-0.14.2-cp39-cp39-manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.9

pyzstd-0.14.2-cp39-cp39-manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9

pyzstd-0.14.2-cp39-cp39-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pyzstd-0.14.2-cp39-cp39-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pyzstd-0.14.2-cp39-cp39-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9

pyzstd-0.14.2-cp39-cp39-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9

pyzstd-0.14.2-cp39-cp39-macosx_11_0_arm64.whl (338.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyzstd-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl (426.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyzstd-0.14.2-cp38-cp38-win_amd64.whl (198.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyzstd-0.14.2-cp38-cp38-win32.whl (178.8 kB view details)

Uploaded CPython 3.8 Windows x86

pyzstd-0.14.2-cp38-cp38-manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8

pyzstd-0.14.2-cp38-cp38-manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.8

pyzstd-0.14.2-cp38-cp38-manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8

pyzstd-0.14.2-cp38-cp38-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pyzstd-0.14.2-cp38-cp38-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pyzstd-0.14.2-cp38-cp38-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8

pyzstd-0.14.2-cp38-cp38-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8

pyzstd-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl (426.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyzstd-0.14.2-cp37-cp37m-win_amd64.whl (197.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyzstd-0.14.2-cp37-cp37m-win32.whl (178.2 kB view details)

Uploaded CPython 3.7m Windows x86

pyzstd-0.14.2-cp37-cp37m-manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m

pyzstd-0.14.2-cp37-cp37m-manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m

pyzstd-0.14.2-cp37-cp37m-manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7m

pyzstd-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl (2.0 MB view details)

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

pyzstd-0.14.2-cp37-cp37m-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pyzstd-0.14.2-cp37-cp37m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m

pyzstd-0.14.2-cp37-cp37m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m

pyzstd-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyzstd-0.14.2-cp36-cp36m-win_amd64.whl (197.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyzstd-0.14.2-cp36-cp36m-win32.whl (178.2 kB view details)

Uploaded CPython 3.6m Windows x86

pyzstd-0.14.2-cp36-cp36m-manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6m

pyzstd-0.14.2-cp36-cp36m-manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m

pyzstd-0.14.2-cp36-cp36m-manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.6m

pyzstd-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl (2.0 MB view details)

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

pyzstd-0.14.2-cp36-cp36m-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pyzstd-0.14.2-cp36-cp36m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6m

pyzstd-0.14.2-cp36-cp36m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m

pyzstd-0.14.2-cp36-cp36m-macosx_10_9_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyzstd-0.14.2.tar.gz
  • Upload date:
  • Size: 632.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2.tar.gz
Algorithm Hash digest
SHA256 76f88bf77b6807f415f4c3ea08f569e3d6197d1fed589d95733ef932c4879aff
MD5 55aa6bf67d70f8a8b49cab29731d7144
BLAKE2b-256 e4468ac834f9520cedcdfb5625152c7245836dff833d94df1d97b36f56a566e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 198.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1603e03e27c610f79154e18836f05026f555b1171cc5405e90274d2fa9ea88c9
MD5 788598bdddd252bb8c64b316010b13a7
BLAKE2b-256 4849b5f58a839fa5cc1b903c4d157e0753dd0015c59be2befd4614781863df48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 178.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 75d1431f8acd3daad2b3f8b139963dccb8d8f1f9b70d0916687e2412fb6e8caf
MD5 cf7511d9840295228d9643359f424b9a
BLAKE2b-256 cbd6a5d3aae94165263936e38d8ba4793309851066120cd374d33ee74df382df

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6072d54daa4cb8c22b7aff5a52ad489521157a7c276a787028b1e0e2fa72f93d
MD5 4207f4e5558ed622ba062c4e1e75c322
BLAKE2b-256 cc88fc811e6920da18c6218b9ff61830cdbae0452edabc1b6eaacf526949d15b

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9853620e55b4a6ab2efe683d16152db692325e397acfbd2bdda20e0209169da
MD5 a2f1d3d136f1c1b56c6a7f5273b164ad
BLAKE2b-256 b40296c560251423f6c86ff21fedbcb0947803a5227b5092d69585aa6dbfe3e1

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 198738b24b2531a62c64b3ab7ebe91f9a2ff15e33f2a3ebafa51f6747041dee9
MD5 1f5720fad353ab321b66239c92edd8a9
BLAKE2b-256 8f74eedfc74fe2cb14c716dd77ea416b468d1700db85eaa01678fe82c8d8e2b3

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bcca1bac8c266061543af61e304d27aae1194e9c08dff8443f60912b05735c89
MD5 6951a4f4f359e96229dbe10f1b9f7450
BLAKE2b-256 2944fed63080308e75acc0e0d166e1d7fb1a12f2dc6842688914056397349450

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e03e5525540c83cbcd73eb41c141f3ebeb73da862f4403c3c0b5fae5d51d8f19
MD5 e68bcebe1f4ddbd5abc9491170ddca0e
BLAKE2b-256 5af18ff6e03c2abee844dc5fe47e9ef9ab16e331812368a6e44810728eb9fea8

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c375b11dea04dff295d5e51fed419425f15acf3932953d6ea73f004badf7b25a
MD5 ff7d81434580a790f305887e40871a72
BLAKE2b-256 197774eff8061f60f1552dc3fde273113d72d2d5eccea70d304e8e937571eba3

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cae0420c8848200d36bdc3b9eb74a8fca220e4d177652d8924948a0326435d68
MD5 c5ca7e5ab62aff8fc5372755e2bb9d84
BLAKE2b-256 ed22d7dc6c39837eab3b3501bae1384fb5b038b0c99ea5523096215e41a54640

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 338.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 420493137f364a4373bdeb64aa34bcac2167dc032f2c0f0c3a36527f76380923
MD5 978eca21fe0a14cead3a7cb980108840
BLAKE2b-256 643c975fe6098630ed22049f76532e142e75cd828b22806ddb95ce92e844ce82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 426.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd3266acf188c4bfdf0a7a674562ffec0f87838163840afecbbcaaa18fd2a51a
MD5 e7ca3f10c27a8b78b4e8134b8c06a8ca
BLAKE2b-256 8f4b24fc5ef43705d7cd35f8db1fbc679d6831baabc759de047ae5432936e537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 948f5fcab735472a7abf0ddd63760e76eb365908ef3acf6fccb28cbb4f675245
MD5 249a6abe89edc2336753a9cb782a674f
BLAKE2b-256 89b571ee8714fbf5485c7ade71c7a4253118b315d28a7660b024e7cc3b67b88d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 178.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6a08aa01e61c2f83eee7e81b628ebd88cd3bf62c845d40c80bb8dd79382542c1
MD5 0adcb660abadf632e122bd8a7bd18d01
BLAKE2b-256 bcbf8c6973003c3272681ee7d0a602752699396eee1b5170bb32d5dfe95680e9

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 054c74cb0f06050369ca3ce96f18dcd55864ba00e0ed992aec957eb15cc63053
MD5 4f3e741ae0d1bb114c1ca9d9c1b3041a
BLAKE2b-256 2f70d3c72536fd5480b7d1e58efec1d0a78c398094522ae62b1cf55ea1b7ad35

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97302475fd19011e340beb2d800599858841940964651f99dfd5981b50f28b9d
MD5 ff5f20b2a98647fb765e154a01d50574
BLAKE2b-256 a0802753b3f920e2d4cc1994948c90cb121b7d856f8968a6c7cf6ff0f5f1aa0d

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecf71f423f6286e565334aab39127047cf655ce86f45853e797738a890f2db52
MD5 5c1923cf4028e6286b1243d96349f674
BLAKE2b-256 5c654df04f9cb607e796e83250c1d15dfe92e2b837448c15721bbb46e4d004fd

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 454d814dac1bdeb5c0b11afad1d0508862f5e48ec6ed39489059f2fc41dd7f79
MD5 2c1b806a79846018688a23bd46ec266f
BLAKE2b-256 018a9133b59a2f3b2e801b1a68cb312607950d7ee28ac9d4ea711b87ebd0c3e2

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d60ecf6276c97b06a2ae591ebf3d11bb1bee0ade89a9cbb1adc73c97618281d8
MD5 8104311ad8372b81ac0c77c9c52d0754
BLAKE2b-256 f26d960d861d09be12623fc6af3378a6d2474ede7f5dc6bfa9506f22b8e9806a

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c5932537f5e996ac0da2a3a942a32378d68bf42882df63520028db9585786727
MD5 25a2a1c8187a201a4380769228171d74
BLAKE2b-256 5a411b79a71c645126a5dfad176dfbed67c022ffa598ecee475bce1cf103e899

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd5e17d178eabf202556974940609f704d490a673c6bffc5eacf320a6bd7862b
MD5 bbc314f6295b4eaeba98765d456e5ce3
BLAKE2b-256 59e54c1d20a8bf574f77d986663480df2d9abd5b57269c84bbe89253c05e537e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 426.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f5eb9a28ae06724b961befd26e763f4ba84771d3849bf33bf1af65fa6d94881
MD5 a10eacaff4858d4e48642bbc81377a89
BLAKE2b-256 d9729377858178e903c8c25582c059ea7133cfffffe0b9d54ff2e40e0a7612c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 197.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8fc92b4675cc255e7680570bb5514c44d17565f964e4bfd0cc43d9cad5ffc1c6
MD5 959cca5468380782b0c8854252da4627
BLAKE2b-256 8f61b98db1665cd64c28ff8ce8b885d20603c572490c6110cec56839599e3718

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 178.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9a5bc2007bf02bc1cbe696f3cd126512d171122412a3d63852f3a88820912e34
MD5 01e2c51080c7564a30cfb265aec4bfa1
BLAKE2b-256 9de0c2b67ee566ae007781a951fbb291e8f23b5c87feb41fedab2857623ef8a6

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a4dc0f55afecaff51477c6f995e8659ce7f33b7091177f34f1c4e061627f6d9
MD5 9faf2e902b9499053adcd6497abca1da
BLAKE2b-256 b37f210a854ba60ff925707259842b4c7017ac87bc8eb2db14a22144570168f2

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8eb9fb26a93e1b414f9ce4fb97faf3b37accc0c1162877b3e98b044f6290beea
MD5 2c3d79959c5014da7b835c79eda07aec
BLAKE2b-256 6fc4676132acdc997502ab548121b75936ce603e541a7a573d383a53fe51b7ac

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09bda49f0119057b483a2235627597cc0801a4d9f417937ca93b9f07e84b7c2f
MD5 9fda13d39a89f2a3135590b191fdb5a5
BLAKE2b-256 1973dbf30f925691baad419fff1a14c7d033bbe632cf5c1ebf874416cdbe8b78

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 14b78b25ded89750c66d2a9047bfba8f0f274d99a189ab19547fbb37d6a07511
MD5 4b9e4bcafc6d3e9555b132d85f405a9c
BLAKE2b-256 d8dd5955120a054e7059d400271a266aabc3b7d6c79888a5517c2ec63f4c8d83

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4763dae6721bf1f65b429cfa8cab6614c56bff9a7a09cbe8b686f0e2a26bd33
MD5 602ebb851803a417a28d6542bf3ce535
BLAKE2b-256 85f4dbacbce2e05d22473ca9d932c398109fe08b5c50ac3595dfb3591e2b2fc2

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7f1d5b313736fdb1aabc93b130fc2d70888471c1c50634d91b98cdc5f524ecb2
MD5 94edab3a97ec600858024fedc8c01082
BLAKE2b-256 37512a482dd08d551b2b89bc1a234f3d56a0f3bd53d5c3702012a688e1fd284f

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 45db71caf341a2f17ceb121f40762483db3979ac3739c3f26ef44f6c0b45051b
MD5 a0ba1d64eb626d35bcc907bf5896ad44
BLAKE2b-256 b4596b173bcd2b9ee959797b3e28b2101e0e847530c500d590d920360a4c773a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 426.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 396dab85e87a0599bc3355a245a5fe0bb08283caf90c7c1bb1733d6e83471e16
MD5 f6e92f1c39abcb9a44b5bf9118d944cd
BLAKE2b-256 0f3573506cf96ddb2585fe86abd44e26cd34eb3d36b498bd1e31ade42e8c9f04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 197.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0b896fcf42bb52c04a7b9d67e1fe5d8b194ccf378106f7cddff33e5b8ec184e0
MD5 1aed2ef0c1a861161bf8cf3c3bc30e42
BLAKE2b-256 61f60328cad083deeae4056ce11ec21d83dea2bb5219ce86f718c34dbff4f183

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 178.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3acb6b07dd4fc689392be1db353c5960976d05eca035a8c63fe59121762e019e
MD5 1cb1409c46fd8461085d7c796835f92c
BLAKE2b-256 81278b5bbf3ef6effc1fe35c875f13544fa16a9452f9c224b3fa6121ca2e3c77

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a529ac4b10e8b1be1b5872f040fb17f222562c57a466f3b86576d616b349f698
MD5 30a3b65ca6319afb12521250ed424b03
BLAKE2b-256 31370de777fdf974488a1f7cc7e3b8d99913cccfdc14d002dcd30aa1918c5549

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57dd24c703f28138d346c805107b9234241ab8f70e66eb7c4f4dcacfb8adf59e
MD5 2a18a10c3bbe62f8582b30f8db0b9b72
BLAKE2b-256 0e627a34180092a74bdf4f20c5ac50e276f91607c9488572a6823457dea80e76

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f04e30516c9c73d60b6a50ea5a8c9c21de93458b42315b32d73dfc9882c44c30
MD5 0d85a9b8f8c2440faa156dd57c3fc00c
BLAKE2b-256 31bec4cdf959afce4d39a93d9b822ca87ca30ecfeea081281ce1fbcec8aa6c93

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18306d1da5352fb9588e89900e7fdb7c79c896fddce6beaaf23e349bc0f2e532
MD5 2e342e8429d42a9eb8ade3e4715d9dfc
BLAKE2b-256 dc4b0abb01bb5877707c349228e3a3f5ff8eb1f1620be90c8bf7eab1a13cdbad

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 631fe44c88f13c4380d69bf33b1ddbb1791a838ae950721a4b99388cd33fd28e
MD5 91df73dee3a0196fc947b440e5710687
BLAKE2b-256 e9bb0f3384f1d9731e9955e95b460771e30bfaead82fdd9359db107ffc85dd02

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a3306d5b20d00a0d0c8b0cf462c9bcd8340c311a669435ea4ac01109a24e37a2
MD5 118250fb8027975a1d5f8e0268e9f3df
BLAKE2b-256 a4f9db1bd446e779c4b8b74f43857f2e22cffac4c307bccc1861f3a101a83790

See more details on using hashes here.

File details

Details for the file pyzstd-0.14.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa0f2eed622c5a01604e3275ef741648a51ffd5ce565746bbba9a3f2ed4884a3
MD5 b2ef200f8b50f252acffa39251a62e6e
BLAKE2b-256 698cd7ad56b81116ff93c155ffbca358f58101d28e623b15cdbd8cb5f37b0a17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 426.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd5d6c8ddb3c73c9631d142d8163544a26dff8acbc3c628d48eafe65b80f5fa1
MD5 40f3b626741093d6e3a19dbef0b99c07
BLAKE2b-256 1f9a019bdc5c71024db89b03ddaf9288c54f39c147a28b1e72cd4fadb0bbc9d3

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