Skip to main content

ZSTD Bindings for Python

Project description

branch

status

Release

releaseW

Master

masterW

Simple python bindings to Yann Collet ZSTD compression library.

Zstd, short for Zstandard, is a new lossless compression algorithm,

which provides both good compression ratio and speed for your standard compression needs. “Standard” translates into everyday situations which neither look for highest possible ratio (which LZMA and ZPAQ cover) nor extreme speeds (which LZ4 covers).

It is provided as a BSD-license package, hosted on GitHub.

WARNING!!!

If you setup 1.0.0.99.1 version - remove it manualy to able to update. PIP matching version strings not tuple of numbers.

Result generated by versions prior to 1.0.0.99.1 is not compatible with orignial Zstd by any means. It generates custom header and can be read only by zstd python module.

As of 1.0.0.99.1 version it uses standard Zstd output, not modified.

To prevent data loss there is two functions now: `compress_old` and `decompress_old`. They are works just like in old versions prior to 1.0.0.99.1.

As of 1.1.4 version module build without them by default.

As of 1.3.4 version these functions are deprecated and will be removed in future releases.

As of 1.5.0 version these functions are removed.

DISCLAIMER

These python bindings are kept simple and blunt.

Support of dictionaries and streaming is not planned.

Build from source

>>> $ git clone https://github.com/sergey-dryabzhinsky/python-zstd
>>> $ git submodule update --init
>>> $ apt-get install python-dev python3-dev python-setuptools python3-setuptools
>>> $ python setup.py build_ext clean
>>> $ python3 setup.py build_ext clean

Note: Zstd legacy format support disabled by default. To build with Zstd legacy versions support - pass --legacy option to setup.py script:

>>> $ python setup.py build_ext --legacy clean

When using a PEP 517 builder you can use ZSTD_LEGACY environment variable instead:

>>> $ ZSTD_LEGACY=1 python -m build -w

Note: Python-Zstd legacy format support removed since 1.5.0. If you need to convert old data - checkout 1.4.9.1 module version. Support of it disabled by default. To build with python-zstd legacy format support (pre 1.1.2) - pass --pyzstd-legacy option to setup.py script:

>>> $ python setup.py build_ext --pyzstd-legacy clean

If you want to build with existing distribution of libzstd just add --external option. But beware! Legacy formats support state is unknown in this case. And if your version not equal with python-zstd - tests may not pass.

>>> $ python setup.py build_ext --external clean

When using a PEP 517 builder you can use ZSTD_EXTERNAL environment variable instead:

>>> $ ZSTD_EXTERNAL=1 python -m build -w

If paths to header file zstd.h and libraries is uncommon - use common build params: –libraries –include-dirs –library-dirs.

>>> $ python setup.py build_ext --external --include-dirs /opt/zstd/usr/include --libraries zstd --library-dirs /opt/zstd/lib clean

Install from pypi

>>> # for Python 2.7+
>>> $ pip install zstd
>>> # or for Python 3.4+
>>> $ pip3 install zstd

API

Error

Standard python Exception for zstd module

ZSTD_compress (data[, level, threads]): string|bytes

Function, compress input data block via mutliple threads, return compressed block, or raises Error.

Params:

  • data: string|bytes - input data block, length limited by 2Gb by Python API

  • level: int - compression level, ultra-fast levels from -100 (ultra) to -1 (fast) available since zstd-1.3.4, and from 1 (fast) to 22 (slowest), 0 or unset - means default (3). Default - 3.

  • threads: int - how many threads to use, from 0 to 200, 0 or unset - auto-tune by cpu cores count. Default - 0. Since: 1.4.4.1

Aliases: compress(…), dumps(…)

Exception if: - level bigger than max level

Max number of threads: - 32bit system: 64 - 64bit system: 256 If provided bigger number - silemtly set maximum number (since 1.5.4.1)

Since: 0.1

ZSTD_uncompress (data): string|bytes

Function, decompress input compressed data block, return decompressed block, or raises Error.

Support compressed data with multiple/concatenated frames (blocks) (since 1.5.5.1).

Params:

  • data: string|bytes - input compressed data block, length limited by 2Gb by Python API

Aliases: decompress(…), uncompress(…), loads(…)

Since: 0.1

version (): string|bytes

Returns this module doted version string.

The first three digits are folow libzstd version. Fourth digit - module release number for that version.

Since: 1.3.4.3

ZSTD_version (): string|bytes

Returns ZSTD library doted version string.

Since: 1.3.4.3

ZSTD_version_number (): int

Returns ZSTD library version in format: MAJOR*100*100 + MINOR*100 + RELEASE.

Since: 1.3.4.3

ZSTD_threads_count (): int

Returns ZSTD determined CPU cores count.

Since: 1.5.4.1

ZSTD_max_threads_count (): int

Returns ZSTD library determined maximum working threads count.

Since: 1.5.4.1

ZSTD_external (): int

Returns 0 of 1 if ZSTD library build as external.

Since: 1.5.0.2

Removed

ZSTD_compress_old (data[, level]): string|bytes

Function, compress input data block, return compressed block, or raises Error.

DEPRECATED: Returns not compatible with ZSTD block header

REMOVED: since 1.5.0

Params:

  • data: string|bytes - input data block, length limited by 2Gb by Python API

  • level: int - compression level, ultra-fast levels from -5 (ultra) to -1 (fast) available since zstd-1.3.4, and from 1 (fast) to 22 (slowest), 0 or unset - means default (3). Default - 3.

Since: 1.0.0.99.1

ZSTD_uncompress_old (data): string|bytes

Function, decompress input compressed data block, return decompressed block, or raises Error.

DEPRECATED: Accepts data with not compatible with ZSTD block header

REMOVED: since 1.5.0

Params:

  • data: string|bytes - input compressed data block, length limited by 2Gb by Python API

Since: 1.0.0.99.1

Use

Module has simple API:

>>> import zstd
>>> dir(zstd)
['Error', 'ZSTD_compress', 'ZSTD_external', 'ZSTD_uncompress', 'ZSTD_version', 'ZSTD_version_number', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'compress', 'decompress', 'dumps', 'loads', 'uncompress', 'version']
>>> zstd.version()
'1.5.1.0'
>>> zstd.ZSTD_version()
'1.5.1'
>>> zstd.ZSTD_version_number()
10501
>>> zstd.ZSTD_external()
0

In python2

>>> data = "123456qwert"

In python3 use bytes

>>> data = b"123456qwert"
>>> cdata = zstd.compress(data, 1)
>>> data == zstd.decompress(cdata)
True
>>> cdata_mt = zstd.compress(data, 1, 4)
>>> cdata == cdata_mt
True
>>> data == zstd.decompress(cdata_mt)
True

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

zstd-1.5.5.1.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

zstd-1.5.5.1-pp39-pypy39_pp73-win_amd64.whl (168.1 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (249.5 kB view details)

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

zstd-1.5.5.1-pp39-pypy39_pp73-macosx_10_14_x86_64.whl (280.0 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

zstd-1.5.5.1-pp38-pypy38_pp73-win_amd64.whl (168.1 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (249.5 kB view details)

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

zstd-1.5.5.1-pp38-pypy38_pp73-macosx_10_14_x86_64.whl (280.0 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

zstd-1.5.5.1-pp37-pypy37_pp73-win_amd64.whl (168.1 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (251.8 kB view details)

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

zstd-1.5.5.1-pp37-pypy37_pp73-macosx_10_14_x86_64.whl (280.0 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

zstd-1.5.5.1-pp36-pypy36_pp73-win32.whl (208.4 kB view details)

Uploaded PyPy Windows x86

zstd-1.5.5.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (254.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

zstd-1.5.5.1-pp36-pypy36_pp73-macosx_10_14_x86_64.whl (279.8 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

zstd-1.5.5.1-pp27-pypy_73-manylinux2010_x86_64.whl (253.8 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

zstd-1.5.5.1-pp27-pypy_73-macosx_10_14_x86_64.whl (279.6 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

zstd-1.5.5.1-cp311-cp311-win_amd64.whl (168.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

zstd-1.5.5.1-cp311-cp311-win32.whl (150.8 kB view details)

Uploaded CPython 3.11 Windows x86

zstd-1.5.5.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

zstd-1.5.5.1-cp311-cp311-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

zstd-1.5.5.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

zstd-1.5.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.5.1-cp311-cp311-macosx_11_0_arm64.whl (227.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

zstd-1.5.5.1-cp311-cp311-macosx_10_14_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.11 macOS 10.14+ x86-64

zstd-1.5.5.1-cp310-cp310-win_amd64.whl (168.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

zstd-1.5.5.1-cp310-cp310-win32.whl (150.8 kB view details)

Uploaded CPython 3.10 Windows x86

zstd-1.5.5.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

zstd-1.5.5.1-cp310-cp310-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

zstd-1.5.5.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

zstd-1.5.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.5.1-cp310-cp310-macosx_11_0_arm64.whl (227.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

zstd-1.5.5.1-cp310-cp310-macosx_10_14_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

zstd-1.5.5.1-cp39-cp39-win_amd64.whl (168.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

zstd-1.5.5.1-cp39-cp39-win32.whl (150.8 kB view details)

Uploaded CPython 3.9 Windows x86

zstd-1.5.5.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

zstd-1.5.5.1-cp39-cp39-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

zstd-1.5.5.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

zstd-1.5.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.5.1-cp39-cp39-macosx_11_0_arm64.whl (227.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

zstd-1.5.5.1-cp39-cp39-macosx_10_14_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

zstd-1.5.5.1-cp38-cp38-win_amd64.whl (168.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

zstd-1.5.5.1-cp38-cp38-win32.whl (150.8 kB view details)

Uploaded CPython 3.8 Windows x86

zstd-1.5.5.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

zstd-1.5.5.1-cp38-cp38-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

zstd-1.5.5.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

zstd-1.5.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

zstd-1.5.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.5.1-cp38-cp38-macosx_11_0_arm64.whl (227.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

zstd-1.5.5.1-cp38-cp38-macosx_10_14_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

zstd-1.5.5.1-cp37-cp37m-win_amd64.whl (168.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

zstd-1.5.5.1-cp37-cp37m-win32.whl (150.8 kB view details)

Uploaded CPython 3.7m Windows x86

zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.9 MB view details)

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

zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

zstd-1.5.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

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

zstd-1.5.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

zstd-1.5.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.5.1-cp37-cp37m-macosx_10_14_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

zstd-1.5.5.1-cp36-cp36m-win_amd64.whl (236.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

zstd-1.5.5.1-cp36-cp36m-win32.whl (208.3 kB view details)

Uploaded CPython 3.6m Windows x86

zstd-1.5.5.1-cp36-cp36m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m

zstd-1.5.5.1-cp36-cp36m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m

zstd-1.5.5.1-cp36-cp36m-macosx_10_14_x86_64.whl (287.4 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

zstd-1.5.5.1-cp35-cp35m-win_amd64.whl (236.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

zstd-1.5.5.1-cp35-cp35m-win32.whl (208.3 kB view details)

Uploaded CPython 3.5m Windows x86

zstd-1.5.5.1-cp35-cp35m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.5m

zstd-1.5.5.1-cp35-cp35m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.5m

zstd-1.5.5.1-cp35-cp35m-macosx_10_14_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

zstd-1.5.5.1-cp27-cp27mu-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mu

zstd-1.5.5.1-cp27-cp27mu-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 2.7mu

zstd-1.5.5.1-cp27-cp27m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m

zstd-1.5.5.1-cp27-cp27m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 2.7m

zstd-1.5.5.1-cp27-cp27m-macosx_10_14_x86_64.whl (290.8 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file zstd-1.5.5.1.tar.gz.

File metadata

  • Download URL: zstd-1.5.5.1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.18

File hashes

Hashes for zstd-1.5.5.1.tar.gz
Algorithm Hash digest
SHA256 1ef980abf0e1e072b028d2d76ef95b476632651c96225cf30b619c6eef625672
MD5 479b302e5e269ced1efadad51dc3b399
BLAKE2b-256 bab4bf8c6a6b73c6b267a13df955f821f041fcc770b56820b135849f33e3b888

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c6ac9768eeb3c6b530db93de2fec9b363776075dc8a00ee4049612ba5397ca8e
MD5 cc0258e0cf8b30691aa68cd65d3002b7
BLAKE2b-256 a4f76f5d9350be2c3709a7f8a911f763ba645ff130b5a904bfff79370cae1e21

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 610928b888a2e7ae9d2018ffa814859d47ec4ba75f89a1188ab4eb9232636ee5
MD5 8b0477dc1b824331141fe8153cf80b39
BLAKE2b-256 f4f4fc09d90503a43ff71baba4670929c3c03c147a17252870e99e30e3de5994

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af52436a2eb5caa925d95461973984cb34d472a963b6be1c0a9f2dfbafad096f
MD5 3ae837b238760dc22c1215f96b3633eb
BLAKE2b-256 c2abb07a5f00673a5b56c789e4feba0071919ff84bd739742f931495fba0df65

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee3c9feea99c7f4ff43129a885da056b5aa0cde3f7876bf6397bfb9433f44352
MD5 1c736e5e3315339fdec924046042bf1e
BLAKE2b-256 bc26a8472d043a9f531a3dccb44e69266905804bb4671b48176d9e534f204c1c

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp39-pypy39_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp39-pypy39_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 04dfd9f46b0b0b1bc413884fe028b726febcb726d4f66e3cf8afc00c2d9026bf
MD5 80cf2d607d3959b353e8b01650608517
BLAKE2b-256 16dfee13ef4e6bef46bac31d814d2c7b3849b10f8b7f6a1dc0c8cfbe75090feb

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d9ba4f6af0945809bfa3387c6a1208a22937a876521b9ec347e7183d623311b
MD5 e95f1959b081db266a0a91c56fe4f4eb
BLAKE2b-256 6a89ae02b82f2a3fea651a439ac6a08f27ed6eaf58b81e1cfff960a1125332ca

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f4730737f63cf802321743ded6acc85e747e7f5587c5ba2e51a760bf009f7de
MD5 5633de387c60257d5080bede1febab5a
BLAKE2b-256 beb8bf454f7c597900a4039cd33507135fcc962cd341df56e8414600118f971b

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1520d23f24f26cdfbcdb4dc86947446b8f694838bfce728d7fc4b3492397357c
MD5 0b3f260b76d0400869220f6387cb84b8
BLAKE2b-256 f7296ea755d3afa6cbeab79efeecf03e43a69dfee5fa66136db734bdcc2dd288

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9f8c014395e89ad7f67ffe873c0fa1d8e9b4dea8b1801d24e8d9ccd8259858d
MD5 aa7bef50ee8b17ca671172b769001103
BLAKE2b-256 395e0f34cd1033cbbabddcf4fb478c1a4fee08ec268ad91830c3d85fc934eb58

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp38-pypy38_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp38-pypy38_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c42e630443b01a891277426365a51a2aa630b059ce675992c70c1928d30eccb4
MD5 7600afc22b34efad1278633dc896d7e8
BLAKE2b-256 51ec9b976b40e7001ef01b9bb44933432ef95513c13d75e87dec2600eb626adf

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 405c28a35756e57a434bbd7ed29dc5e6490cd2fc2118cbf78b60eaebd134f5e9
MD5 f7e4be0db7bbe8c915a7b38a96b4f409
BLAKE2b-256 18df6d48f84bd6d86add31284b93557d208add41e4c607d9389693d72fd436db

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5b060770d796e4c01f5848b345c3cea8a177ab4e7cd95a1963a355042d429e1
MD5 15b5ad0ebda01bc476c778144fb2390c
BLAKE2b-256 6cb39a61cf00ec2ae814785fb308cc6339a0972d2e43ee293b5fb5aeb8b8dab1

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d56dedaa04ab8ecc23492972b12e0bf8529f64c9bceb28c11f43c2369c9768b3
MD5 0a232a67fc231830c28a360b10b017bc
BLAKE2b-256 5ebb09b73f6071c708f190e3ac347d1d42a53519f60d46b5adaebd0f6760b3fd

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fea04805ef6e1cb93d6e5d6bbc7a03bc75a5c733fd352d5aaa81109986fdf1ef
MD5 2b66fbc5f00253f6a163a5472695badc
BLAKE2b-256 7063d2a0bd3cf1720a2471524ce36910ee3174f2ea20eb806379e5c3077b67f3

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp37-pypy37_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp37-pypy37_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 42ec0a4ae9bedd9909fa4f580f3c800469da1b631faeaa94f204e1b66c767fa2
MD5 c10a6a30e8693056dae0c6ebe67e24e7
BLAKE2b-256 4ad3b812cae617abeddbf690375ce69b2201ef35b681d70c2b4421a8b2dc33b5

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp36-pypy36_pp73-win32.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 894a8fe0228d5e24dc286a8d98eb0ce2883f8e2e57f3b7e7619ebdb67967120a
MD5 c080e827be2b7c13f9aa0770c8a965ea
BLAKE2b-256 443f045360aca530895bd43acdbf5df14da6743ca2a0647a5b301c77d186ecd1

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c518938b57a56001ee04dcf79a432152f5bd431416f3b22819ba959bc6054d89
MD5 cb5324c031e6eb9a20100707a19d3ecb
BLAKE2b-256 fb8e4b729f71e421eec5e93ad5966ae17dd3ab44c6b34a611bc93ce0ebbfba54

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 477548897dc2b8b595af7bec5f0f55dcba8e9a282335f687cc663b52b171357b
MD5 b4dd7655bea403fe325d1d7f056f910d
BLAKE2b-256 debf2765bc9aeed023b9f41d91ca8a67b569f5fcc346473f36e969793358b011

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp36-pypy36_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp36-pypy36_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0ea91f74869a3cdcb2dde08f8f30ee3da72782c5d1737afed9c703232815864e
MD5 df2eecad22bcfbb3035b0d870b7f7dc1
BLAKE2b-256 d81713d06d1bc5abdf2e0a3ff9ec30101a80bd4ef236395c8ac88cf428f02bce

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0412d666515e78a91ada7e2d78e9dd6b25ddda1b41623b145b99653275c7f3ce
MD5 ddc2273d0123077f5cc5a5e52153eeda
BLAKE2b-256 9908222f3f732c4af90239c0f09703d8b82089846451621d27194467f864cf85

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50d4850d758bb033df50722cc13ed913b2afcd5385250be4f3ffb79a26b319c3
MD5 ace524210617ac98d3da7f69a72d5198
BLAKE2b-256 503cd0064d52f83ef0b0927ca38a117df1dc413312499f409fcc6314208e2e7b

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-pp27-pypy_73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-pp27-pypy_73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c63f916732e3e309e49ec95e7a0af5d37ff1321f3df2aac10e507bd2b56fceda
MD5 c48cfce2f3cef4bdda8930f74a416515
BLAKE2b-256 e41cb86aeee12cc1edd59f5a2aae7c15c9651f92ff2de59f2eed9b54f3571954

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 168.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dce18aaefbacf8b133367be86beec670baf68c0420bfcca49be08dbdbf933db6
MD5 c4ad480a4b8fea4510b9be9fd0605c0d
BLAKE2b-256 af396314d344793ca78556832b281c4a4916362bfca0943ced3eff25221b5385

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 88410481209520298ec4430e0d1d57e004c45e0b27c3035674fb182ccd2d8b7b
MD5 eb8a3d1728df10e50000d28550f28e68
BLAKE2b-256 a2f3c7d49044609ad59bf4e09cf182215474b229128514885f1f0db82386c5a8

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edea52a0109f48fd46f4763689d3d356dcafd20ddf6789c559a1bd2e62b40a32
MD5 49a78d450461758d36c0f0ffa3782095
BLAKE2b-256 f62f3d346dcf2c525f1c3e4b0efebf653cc1da69f287bc4084391fb3a449f691

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ae2fd4bc8ea772a7b5f1acd1cac9e34bb9cd8fcde191f170092fdeea779a3a12
MD5 7b940d9cee24f479ff6693c87679fe52
BLAKE2b-256 dc3f0a00f50d1d30293f896a36afbd83de65efd59c023693ea95f27071508d40

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9ee83e0bcbfd776200b026b3b9e86c6c86b8f414749f58d87c85dcf456b27066
MD5 e1bb39fcf7be76b4e3d3d5c0a2085a99
BLAKE2b-256 280ea3668ca3147434fd336f66d3f28553e228a73ea6b736f0ad2e9920b7de85

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97da6a842ba7e4acf8bba7c596057143ee39b3c4a467196c2096d460e44accd6
MD5 49f098733d22839f6cdb1390453216ed
BLAKE2b-256 a52a65d09266af0c0a9b077148a6b596c8727de16ef174a6a840a88bc42f8956

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45b9c67989f50ba63ffa0c50c9eaa037c2d14abacb0813e838ad705135245b4b
MD5 7990b19fbdbd6bee97b3d3e2645cc540
BLAKE2b-256 cf1aec11fdf56b282ca627c979b5b0c9c2ef14b416c0b2ad4264972c6765b634

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dafd492fb8ee4ae04c81ab00f5f137860e7071f611335dd4cdb1c38bd8f11bc
MD5 5776bcdbdf112861fb0b3a53342c5be8
BLAKE2b-256 f6d47621dffe3a34a948dfa7ba40e77657526f967e3dd086608ab083fc8dd0d4

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3d15a2d18dac8bcafdde52fdf5d40ecae1f73b7de19b171f42339d2e51346d0
MD5 3c1701060ee8aa6c68e5c40703b0580b
BLAKE2b-256 9933a51e2e4e469af134d5a8450d59da05c34017eea9bb16d1d1ed7b83b5ed98

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 022f935a8666e08f0fff6204938a84d9fe4fcd8235a205787275933a07a164fb
MD5 2f4f9e5233a6b67b2810e4d5911d45d7
BLAKE2b-256 106f5b8a828394af6153ec08fd4814c9a4bbae9ec5bce3cb948bb0b9b6872022

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 168.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f5e6e0805d710d7509c8d175a467eb89c631a4142b1a630ceeb8e3e3138d152
MD5 49ca2e92a8aecd0561ad19f82abfa55f
BLAKE2b-256 b2c4b05b4cfcaed1f6241136f9517403bb948706d178b74893ea015d018c26fb

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf179e51f447b6a7ff47e449fcb98fb5fe15aedcc90401697cf7c93dd6e4434e
MD5 237c6568e8a7bed86c511deb6c5edd4f
BLAKE2b-256 59b0bf8b9e655c47cff2fc03bd07f449fb083b6fdb49ea4adf60fba5b3213129

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 530d69bea2791cde8afa7fe988f3a37c3ba37015f6a1d5593c0500f089f3090e
MD5 4519d4c45122c0dda8a1664706423e04
BLAKE2b-256 1df91815a63845046c63cb5c6960af0789605b011ddeb60cc0aa818588ab07dd

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8ee3496ed8fff3add6c6e658b207f18d96474c3db0c28ab7a69623380b1a0a8c
MD5 2ac15ec1a2962c1afdb8c993294656ee
BLAKE2b-256 809707a3f2bde9de73f7ef61a7797a965f2ec9809ed31aae80b8c6b8d5539365

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ba530c44f252016acc6ef906d7d2070c1ad0cfe835c498fdcd37493e4772ac6e
MD5 b5bf11f5aba4cec9781b8c916161b205
BLAKE2b-256 dc0cba2b43916084c43f509116dcb661d4cca8236b745caeb1295ee041ffcd7d

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f59cc92d71537f8082306f75aa403ddb4a4a1069a39f104525673110e4d23f7
MD5 fe08f815265213c39279709149e7843d
BLAKE2b-256 3b28fff1aa8dfbee4319d99a51d0f7c26c7af19b16c23dc7db406b2be6828f24

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9962714b89641301029f3832bdf07c20f60b9e64e39e8d7b6253451a82b54f5c
MD5 dd0f4713c6a838b56115cc1e2ebb2fd0
BLAKE2b-256 be7e031b0ca0bb69ed7a7d54775dedb2121da483bfca7910e2be4246104b6cb2

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 569f13d0c926ddafceebce8ac73baddfc2bd9cbbbbc922b6b3073338cc43dae6
MD5 83b3a5c43a45fdf5938ae3fa94aa006d
BLAKE2b-256 8bc0a62141e75beba1e80628a6c321d83c91b5a00ab5cc3ff00d6a6a24be70ad

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98cbee6c1b2fe85f02fd475d885f98363c63bc64eebc249d7eb7469a0ff70283
MD5 97a65b564806e6d53b8b178777171572
BLAKE2b-256 34fc7324340fac376e6bf0b82ad6bb2dc107100682e3709a05437a00ac1fce30

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0ab979c6357b8927f0c025ea2f72f25e15d03ce17a8a6c1789e2d5b108bf39ae
MD5 ef223fec56a32db1bf16812dd2a01afc
BLAKE2b-256 c1d36466fa91c2acab321e16c85c6b065405bfba4a6a7c113816931cd9f7f370

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 168.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f462e2ebf26dcbfc2c8dddd6b5c56859683f0b77edb8f268e637f7d390a58f74
MD5 54a66cc1f741320e27e8b9ba167d9547
BLAKE2b-256 1aed707ed4070063088ac6c68061908b717014eb4e77fbf72b11408c6df2f326

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c91cc1606eb8b3a6fed11faaef4c6e55f1133d70cf0db0c829a2cf9c2ac1dfd9
MD5 77e25bacecd9d884defa9d0a8ecc2422
BLAKE2b-256 1e1a14b3be56f67f165e71538a1386152e615f588d24c07e3b3a5616a7a8fb6f

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88b9a10f80d2b87bf8cc1a1fc20a815ed92b5eefdc15cbe8062021f0b5a26a10
MD5 8f1b9dd6528f3cde35bc7f7b99a4c450
BLAKE2b-256 801e981183513bd4abcdb426ef1e676a541630bdb2177d996161f75ad0c3263f

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 03444e357b7632c64480a81ce7095242dab9d7f8aed317326563ef6c663263eb
MD5 08a6af6d6ada9c07d640f3727726d232
BLAKE2b-256 c8985de848af37a5d65a44bbf82ef3d1f317bfb2ef268d5cec322f4e5752e0a2

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6a64e420c904063c5c3de53c00ec0993ebc0a48cebbef97dc6c768562c5abab5
MD5 47c15c73691ec0ffc7b0d85bbdbb7d17
BLAKE2b-256 72c34f7e673a994ce524ca9ce03aee874b57a327d5799cf27d966eb74a94f244

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0096c8ee0ed4bfe406bc961019f55552109e19771bfd3eb32d2af56ea27085c
MD5 7890ef33879070db89f59877cb608056
BLAKE2b-256 323130ae83f08914e2d15f9c858ebc550e77cbcd80e9cdb8fb2e7c6428b3f7cb

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f6e38f496d287020658c6b4cdb5e815ecc6998889bd0f1f9ab0825f2e3d74ef
MD5 cd8d8b6e5d63ef8b6ea3670ee7fa8d8c
BLAKE2b-256 567ebe5a706c9048b28a9749371dce365207963fcb003279c9dc31df28b48526

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a0f1527728c50b6aa8f04b47a07580f0ae13cfc6c6d9c96bb0bdf5259487559
MD5 0230d4b6f508007627c7036a7f96b4f8
BLAKE2b-256 f26ca70c1533565fbf7b8d010c1a5843b3399f7a68802782f89f7f6b375ddf18

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4ab0a5dd9a41d3b083304beee7ada40ee36431acbeb75132032f4fe5cf0490a
MD5 d156cb4b7815791b5282d10c9aa7e217
BLAKE2b-256 c462ac4a06fd2f39ebfcd308c658002228ff9bb3e439f57cb455aaa66e9aa721

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c0dab132c1a5a7cc838a7c3e4e380ad153b9d7bd1fadafabf6cfeb780b916201
MD5 857b960797dab65cce97707b77d5a362
BLAKE2b-256 c1f2c3d421c2c90e6bc6cb4c23ca6efac2c9bcdfda17faa27fbe3bf4679c6594

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 168.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 627f12cb7035723c8f3d8d4cefcad6d950ed9cba33fd3eb46bae04ccab479234
MD5 6196a485b4d4de582f5d2ecc83d0581a
BLAKE2b-256 1f8061e6b77f23885b7a3f777212a7de72aa274f4b2af399abbabff3a1a268c7

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dcaf44270ec88552e969be4dd3359b34aa3065663ccd8168a257c78f150a356c
MD5 d0c004c6890b1a52d6f36ec50ad5be40
BLAKE2b-256 965d4f98a2a4cfc66a9af449e4e3cb6df2d80c6b40d670e37b0fddffcb0eb309

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d52b6932cab5419c434bccfea3e5640e755369fc9eeb51e3d17e15bf8e8cb103
MD5 484742369c0d48c3cbf00e808ffb0899
BLAKE2b-256 40475b04dd08b0c17198c093622d28927a732394a0469cced365e4a20f97f542

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 883c6d3b6f5574e1765ca97f4b6a41b69094a41be56175552faebc0e0e43b65e
MD5 ad6f0b64fbb744cba507084f4e9c9e6c
BLAKE2b-256 a5695481b61cc7abfff08df7d029eb6cac5c10db394e77268ffffe291c81707b

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 58e554e91e0d49f4f2b2df390cdd0f64aa9b6fd5f4dcb208c094bfd079b30f3a
MD5 2042cad881cb36bd9ef6cdce9b5c45b8
BLAKE2b-256 2d784670f25d0430dda8ef36b81ae7187300db023612b0ee09b0d1223057d41f

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e05f81f346213b23ed1b12d84fc1f72e65eacd8978e1e88facf185c82bd3d053
MD5 401b789e9efbba795c819a6d39566026
BLAKE2b-256 35500d7185bb530ca48963f65af1d85909004c6d013ac5d796b4af0fbd2d2d49

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a89ce6d829d515f272fddb3a87e1a5f32cc0f1a7b0cba24d360c89f4a165b74b
MD5 7bccc0ad74129ed7aca3818f8fd1464e
BLAKE2b-256 1cb50df0b8728886bb3758abce7d5f661f088d849df48a2c06e1cd95d33071b1

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43ec66c4c3a76351c672c6ef9f0ff3412fca9ede0a56d18dddaf6418a93faef8
MD5 4f183903dbc1731e4d2525d69d0144ee
BLAKE2b-256 fcc6a43a72a6fc93089345ed39ddea62c2f9fab340eaba4fd2eea9b3247381f7

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0c87bfbfa9d852f79c90bcd7426c3ba46cf3285e6984013636d4fc854ba9230
MD5 0680035eb3b9ff0880f99c46893e8769
BLAKE2b-256 7ac5cb3476e783f17e645b0bc35259398b54ed38088672f449ad75f746a1dc4d

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d3ce2cb310690994274d133ea7f269dd4b81799fdbce158690556209723d7d4e
MD5 6209934a83a2ad92dd2211e1d3950c1c
BLAKE2b-256 3819912b44e6ce720ac8e4dbf157fdb4ee0397b9f74042e3bbcc540d9ddc7366

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 168.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 91366e36773241cb4b049a32f4495d33dd274df1eea5b55396f5f3984a3de22e
MD5 a6ca9144406f27ff6ed9c57e42742202
BLAKE2b-256 e3c02926c9e5b9ab981c1033fd02a907b6dee0d34e88e95e46131702c71e641c

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a1c269243a4321beb948635b544ccbe6390846358ace620fd000ab7099011d9c
MD5 421f50595ba6a4b0a5f481722a9f531a
BLAKE2b-256 041dba98ffb91e904891696b21eaef7d67fc6b29b4988b41f51d6db56f008520

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e6a15fa4d2e65c5902ab2a4e41279ac126cb371ce6c3c75ad5789bb20dd1f54
MD5 32f440e07259fd20ad6838549945b7e3
BLAKE2b-256 519bce8652ad4f91f6781307ad456c8d4ce20b184c4bdd0521b3f1c1a4044920

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 12bf8e04add8bb84f9fe9117f3de6d9394eade6a5a82fe4d6bd95914fc6ef423
MD5 e4b1c655e3727e0b62ef103ddfef9686
BLAKE2b-256 bf570aaf844e5857c8504663ffa014a8123a07cebb5bf3f8dc4e36be2b402516

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bddc7e3c3ce31c01fe1edaa7c03c0b9e71eadf4ce1609746d32f86d95a0449e6
MD5 203c18efa688521bb223f0f726d11274
BLAKE2b-256 fcd0d22a476801ffd54d3afd06c5a7d0847fbae3f52b58a432ae2be6b665ef26

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 687f9e03dc9f9b8803840425bb23bf6bc700888b4860afcf43c4f238102752d2
MD5 00c878306b5579294effff96fff96820
BLAKE2b-256 9431e3f4f509ce0dfd61400ab569b3fc74513ea5f9d6cef661fd6bd393c01bd4

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2ece3d20ef357370584f304407fbd1e4ff9c231209320e08a889b8e3725d56e
MD5 46d4e859ce25ed72f3a0f419f5ce9c15
BLAKE2b-256 b2fdb44dd823538923824a44315c9aa58fcf008ad197a937fa59fae9d1e4eecd

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a649daac9c8f1b37d29f2b3d0a43f134061659b54877fe4b0da6df2965dc91f
MD5 e0b4d21f7f6eb5065e02b7e423f7a65e
BLAKE2b-256 4d9bab91fe7adb84b6f54453efc94203342f1a06caf48043ad92fab96db3fe96

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8bd6a9050de8bbe844447348372ca17d01bc05207619f6a5d448567d111b5cd9
MD5 325e46cb6b09eff271c977464f6084a4
BLAKE2b-256 0014136ded4d155f279aedaa8820522097aa233086f0c253dfe66107055f5862

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 eeaff418269b41eee8c7971fbba9d32d07d3f6aa26f962a72aff725071096a1b
MD5 1521295ce2d898c63228c5fed0041dbb
BLAKE2b-256 f1f99177a076a12b9bda24cbd5818161805f9aac76e68ff096ce28d4c2c72dd1

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5531b683539ae1f7b2ad23dacee8a73e5d7eaa6702ea8df5a24bd3318647dee1
MD5 1a9fde74bc9cf699c85e36b7289ae58a
BLAKE2b-256 10b7d14efbe8222be2f1d2989f67a6227f8d60d1d8ebc42884801ef57dd79cee

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a37cbc0580fdfd66c8b3ec65f9af00a4a34e9781b54dfb89f04d301dc375c90a
MD5 f674290618b3abbf015f1c73151f7fc6
BLAKE2b-256 ff58fee1ca1cfd93f00999a7fd4405e4fa5daaadb0b520d54714884fc5b43b87

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a53860dbfbea281eb690ce09cae28967cf1df8e6d7560e4a8bf5b9fcb258147
MD5 247d066d5f2ac2137353ba4bcc42317e
BLAKE2b-256 f4280c089c8f492744e9b96951497ef748f69be8f1b102dc7ef8022c3620d6e2

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a871df41b801a260cc849c2c76f300ebb9d286c4b7a1fd6ce45fe0c91340b767
MD5 66763144efcc6156979b321d6ba8b8ec
BLAKE2b-256 557e6fbbd4632c207a40f5ba4c7570322d2ee0a4685cdf811976f15523af550b

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3f0ff81232b49d7eb4f4d9e6f92443c9d242c139ad98ffedac0e889568f900ce
MD5 0d22906beae7961fed3ac2d36824b2f5
BLAKE2b-256 6318213d794c21375917fa9ab598cf878c07e14729d7be86cc923ffc3c28616f

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zstd-1.5.5.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for zstd-1.5.5.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4bce254174ef05cea01021d67e18489d5d08db1168e758b62ecee121572a52a9
MD5 7ebba0e59cfe7a91eba9712d381cc9ca
BLAKE2b-256 c6fcd03774378b6f768b45bacd8473fdf72ddb79beb2bfdb7b7a7325a631a589

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 384128f7a731e3f45da49976591cec03fc4079e70653df10d9ea43a1d3b49d50
MD5 524ab3a3b2c69e82597a3fe6da28911f
BLAKE2b-256 d675db66ca96d6dfaf1e9309b1670466a609f41287d499671e1414f18082e5f3

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 608414eb75ead573891d97a1e529848b8f31749d21a440e80838548a19d8c0e6
MD5 ee18e80b9e12e1a1a52d3e633e87e10a
BLAKE2b-256 03404c67caf4c90ca72c21d6f297a37f3f488878226cf3a6d3e2acdf39588056

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 634dc632f7cf87e95dabf74dcf682e3507bd5cb9dd1bcdb81f92a6521aab0bd2
MD5 f9f5d402d00a9398252e5efcef8e2326
BLAKE2b-256 ccf6f2fc2eebe17fa4606f036241c46e717e3d09006b5e84653f9f7dddc5ac83

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8403fe84207d8b0c7b17bca6c4caad431ac765b1b9b626ad9fae4bb93a64a9d8
MD5 cc61173fedc22c91bbb6ed4c5d506c0d
BLAKE2b-256 8d2a6b4462097d7529449ca7537e76d4b908ef3b94137f519e263f0a641c3b6a

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 45ccd45a5b681088fca1a863ca9236ded5112b8011f1d5bf69e908f5eb32023a
MD5 de4afb46cbcd338697a1b4cde9c4977c
BLAKE2b-256 0c224e534290ff388d529e480e2615e71b39f4f2959976d0c9c0397ec81be4dd

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b487c2e67ed42a4e0d47997d209f4456b01b334023083ef61873f79577c84c62
MD5 64a3d8e8a21a056174c198ea97122515
BLAKE2b-256 88ff0abbdb468154d346f301e75698da400e84ae59d632cc75387fe0d66c6155

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 86496bd4830cdb7b4b05a9ce6ce2baee87d327ff90845da4ee308452bfbbed4e
MD5 403f7d93a5e1c606a4ea9aebdf82bfd0
BLAKE2b-256 0807477ec11ea56437f103732b7c7d92faa1781cd896853f89f104a25ebc42e4

See more details on using hashes here.

File details

Details for the file zstd-1.5.5.1-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.5.1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 555779789bc75cd05089c3ba857f45a0a8c4b87d45e5ced02fec77fa8719237a
MD5 b46df0a5e5134da870f66fe441fbaa5e
BLAKE2b-256 d9cb28679127ea1efe57d0c3dc7aff7a9006bc6636effdaae4998a1ecd1ac4bc

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