Skip to main content

Python bindings to Zstandard (zstd) compression library, 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.9 source code.

Release note

0.14.3 (Mar 4, 2021)

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

0.14.2 (Feb 24, 2021)

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

  2. Some improvements.

0.14.1 (Dec 19, 2020)

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

Uploaded Source

Built Distributions

pyzstd-0.14.3-cp39-cp39-win_amd64.whl (202.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyzstd-0.14.3-cp39-cp39-win32.whl (182.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pyzstd-0.14.3-cp39-cp39-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pyzstd-0.14.3-cp39-cp39-macosx_11_0_arm64.whl (344.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyzstd-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl (431.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyzstd-0.14.3-cp38-cp38-win_amd64.whl (202.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyzstd-0.14.3-cp38-cp38-win32.whl (182.4 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pyzstd-0.14.3-cp38-cp38-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pyzstd-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl (430.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyzstd-0.14.3-cp37-cp37m-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyzstd-0.14.3-cp37-cp37m-win32.whl (182.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyzstd-0.14.3-cp37-cp37m-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyzstd-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl (430.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyzstd-0.14.3-cp36-cp36m-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyzstd-0.14.3-cp36-cp36m-win32.whl (182.0 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pyzstd-0.14.3-cp36-cp36m-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pyzstd-0.14.3-cp36-cp36m-macosx_10_9_x86_64.whl (430.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyzstd-0.14.3.tar.gz
  • Upload date:
  • Size: 643.1 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3.tar.gz
Algorithm Hash digest
SHA256 6dd0bae2abea4cd2198d41cf0a6f099792cf45abbee0bc412257f042f4b375b4
MD5 01c44fb0ce88e6ecc1b9b0c33313c1b6
BLAKE2b-256 9cb143d78dc6ee05b23c28b8c86c83de78d5da1226a357e020e0f61f8026e281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 202.4 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2280b86ec1fddc8b401f56c0519249d12e61e202bbddc9fd1fb4872a41d9e0d0
MD5 392046315e48ef42f23363cb0f2ee4a3
BLAKE2b-256 c83db71bc5807ff34fba2b331f9e2df2f3867f45f01ac7410f64b35050338d67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 182.3 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3315f7bf8ab4db7de439912b61c24cdab6770e2cba7e513b0a26a25735d21188
MD5 3d3e40ee4d0e76d3ce6c8f246efe1336
BLAKE2b-256 f6404cd4c8c0d77b12a10476b6a0217763957ab3111a6de7ff187e4296bd18d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2d8648646e157e7f3c464c2f365960b0d4bd9f0345bfa823723e7bf3059ac32
MD5 352b64440d0b42ad9534b2b93e78b4ce
BLAKE2b-256 f822d06aaee7584cd876d26a5ebc3db22e9ed15cb1a04ac9bede879262f79733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd10635af064c242ad88cfdf22f0c4e1038daf0a1efc1408f206ee3fc6f8b8c5
MD5 ea12583800cd0a2a225abd41c1481e22
BLAKE2b-256 e8fdd7497d5ed70a09ffd98265c74b47fe0721b9304fddaa873e260ea46e3bd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp39-cp39-manylinux1_x86_64.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d16fe3fa90b6af208f5e564281b24001e9a80590cc19c07e0689b31b880c8e3c
MD5 330f43b3ae47f650388fe03ec7c97c42
BLAKE2b-256 311f0dcfb6811dc9c946e5e0fa8a592cc14ab59007f4f3cb422142a62a6191c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3df09eb8efd1df25fce8f0a3dc4e1d5a66a731c7d0deab7c14e6ec0cb722c74
MD5 6a8d81d443fba04cf681145e118493f5
BLAKE2b-256 c3906eafe830efb774b958ede8394f31032fcf19c9101096c938dc27a091df6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 344.0 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2ba8f05f7733faa8c2ff14c3b864978be78f14bbe8eed77d3e12b5cfe8fe95f
MD5 413871781c722d9ab7aa52c452fd8684
BLAKE2b-256 6489e9d53f0f630a2dc9bf2c5e1f114e5ec8b719ec2a63ab93684a17d6ab5f16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 431.0 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 543eca0d15ef03a3eef09ac58df9863a6ab8a636f5b0a62073cfdcdd51a29f48
MD5 2f47331ffb4f11ae222271277d013dc9
BLAKE2b-256 db38d2967a006475c99c5d521947dff57a3f210e82a8d0445cbe6c4a4f327c84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 202.6 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 98a59b9e56da9d1b8acfb7ad8271e8d80fc9c48b1486bf75d722755a93967c78
MD5 d3ea0382cf045c6f5967276350d778c9
BLAKE2b-256 6b27a34249b2124345f7a21bf20dea3f581c117f7262204c6bf0441618230a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 182.4 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f923e1c3a009024cdaaff8d3b2eb47723c010f4d9647b88884bee565623327ba
MD5 7d89cc77b5637383f154e4da449bb8a0
BLAKE2b-256 66e9a373128ff7bcec2a7d0d0481b8faafadc7d21973e3f37ece04b14c869c6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60fc2f38c729ce4fb6b7db0200a12c3e8b4f8a8b2545e2bc7c5d09bea8640833
MD5 6156e25e6cecb389dc249f408bb45419
BLAKE2b-256 7936d1959c06fa83d9a91a52286184b6637749bf4d35d68b0ab7131642f2b9d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b4909e47de64047b4c05057e9bb921973927cec49f2e618045a6c3eef8a6413
MD5 552ddadd58dfc9c8853281d4438d8952
BLAKE2b-256 4a7a28ef81d77b7d8c5836c9e25a647a9ae1557561e96725c0718e2aac44484b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp38-cp38-manylinux1_x86_64.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 38f088bbbfc347ded421d4f53c16978d0a2cd8946428cc18b77e699459e21dfb
MD5 2b3aa0ee7bead29f0a5dd3797d7cde4e
BLAKE2b-256 a00c0be8eaba1c1773c8d1b06383c214a24bf92f099d4e9339f4a0e47ad521f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c9e3f27d74ae7651f34a0ef90313f2c808497667881a0b7b725a18f92cb1b8d
MD5 5e8be5d2d1b412d95413ca3359ffb118
BLAKE2b-256 cce98065cc361ba55d2f64a1d59ce979c5ccedbab9d3465ab90275f54a969ee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 430.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f34cbf0d2d19679cd7c3a6119cbd4ef6f89977fbfe732a647e285c6ecd48ae2a
MD5 3cbd14df5bf327a0b43299fbe8c7ac89
BLAKE2b-256 36a1a205439090670a674b472cacc4a21dc229e97fc193ba7063648cc59f4911

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 202.5 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1412207eb92a2cf91c8beadad7fbc943840f700e5f3047f95d4e7eb5a399da53
MD5 2a72903f9725673e2de48783ed9f2d74
BLAKE2b-256 6f0cabf5decfe8f2ba655859e6fe14803e6d12e0338d814aa2c34ac39e054dba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 182.0 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d0aea287d435010c7203a3fd727aa02c9ab61d400b52db41cd57dfa4558469ff
MD5 682b97d74fc2659a3d80ecbfe5445ace
BLAKE2b-256 3a562c7d62e4c130e30306eb1051e2f719d5fa62828ed98fd41e2ea4246c447e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12f3d1d828179fd8e69e4b226bf6cb60f34a973fc714ced0ffc69b7971e6e16a
MD5 9026b056a24a4114d80639ebb2043d9e
BLAKE2b-256 e950766ed314ff309b0fde72aac1560e8902ba5210bb626cb57d44ada53ea42d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e8ef7c1ebb7a5947fdb5b0653979d2fad109ddce71b48473b5b53d5b896abeb
MD5 a99165033e189160c114f03942b93baa
BLAKE2b-256 59c5ad7a1a7e5bb96950b518b64b81a24d120919eb2f31a78bf9a26345b0ae00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp37-cp37m-manylinux1_x86_64.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d8fb5d864e9ad7d352105ee2ed7c3484d701dfe20ebb2b546de95ad8b25fd189
MD5 94f2f8c1a6871425907f5b81a8412cc6
BLAKE2b-256 c411fd3d8f60d3b9edaddf1b9936f9f1cf38fec88c1567ded66f65795eaa8643

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 997591979e7695ccf8d54e24c1132ab65200d4acbd0d2ad9ce6353d07747d303
MD5 eed4d60658c88c6b95dfa6e576d64e0f
BLAKE2b-256 285e5f27ccf596eba163931675d36bb30c7d69e4143e697400166b3422ac4248

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 430.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21aa4a09e12fa2ecbfad87cf1a450091874607097965b5538dce40e35b59f1d2
MD5 cd52aff209c7446b856df3765564bd75
BLAKE2b-256 6f61c775de9f4dabb61fbf78a970ecab936a5d63750e994bc2a49c36c5129bd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 202.5 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f16ea0dbc506ac09abfdfe45ed6a756a52102803f091abf4d99031b889392a0c
MD5 64e29606cbe644ca859a7ee89b4c61c8
BLAKE2b-256 468515bc0a4b44ff01f45d7e7bc4c34ebf2b72cf3c234593fa866d86460b1c59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 182.0 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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b6f5caab0c676b5be5a8e74e3acb74ebc88bf7ae567c738243c4309673716b71
MD5 64d1184db1e9b74d1fc364ffa3e83a5c
BLAKE2b-256 32489b4aea09f8af6ae3a1315a28fd38cc36d61898c6334de315a988244a6f71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cecbb3fb57ad289bf774342db77f72284194b953a0ae935c657b7fee5b6d8c6e
MD5 7fefff3f4e710038e864237e5f40f135
BLAKE2b-256 a71c5fdf2c62559fa5abd85b3ffb6f4704009a6e1857eb3ecd7ff58598e7acb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 074b5048c7685ba5cdc02b36adbcba849225dafaef372ff56167e0a106a2bf76
MD5 39ec024bee8ff9f9f2b7ea6e771ecd48
BLAKE2b-256 680c00c960dd149c535f18391cc611d0e65f747c1dc73a73d4dd28bfdebf9755

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp36-cp36m-manylinux1_x86_64.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37f45aad7f6fa4f93f78f715644f138dbf6db10a7cf684e0698a951782b0a9ea
MD5 3128f1a857692cb677f649e969ce1d07
BLAKE2b-256 b40d9fdd131b78e3a01c85d9e850c5a24d3ebf85ff84768a60cbe2261cb82965

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 78b74ac1cd130b911f178a98d2a30d4a02b2245b6f688070b3ba85e3308d2efa
MD5 49d77f23b5b00f5f66b97ab015875d4e
BLAKE2b-256 0297b6ffb745c5945a4dea1ec9fbe6d27914a86d99d33c3e8f776284cfef784e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyzstd-0.14.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 430.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.58.0 CPython/3.9.2

File hashes

Hashes for pyzstd-0.14.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 028f001e26908c98e9c08df49717f674874f164e8d326f0a2966f0cbbd1e7c2d
MD5 63a7fd799f8782e5495b52af1d2c3ed9
BLAKE2b-256 d2dcd32e9d9d1c6ed12eb45348a90d1ef2cc50e8c747502042aad92689f0db03

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