Skip to main content

ZSTD Bindings for Python

Project description

wheels for:

status

cpython 2.7 x86

cpython27x86

cpython 2.7 x64

cpython27x64

cpython 2.7 armhf

cpython27armhf

cpython 3.4 x86

cpython34x86

cpython 3.4 x64

cpython34x64

cpython 3.5 x86

cpython35x86

cpython 3.5 x64 u20

cpython35x64

cpython 3.6 x86

cpython36x86

cpython 3.6 x64 u20

cpython36x64

cpython 3.7 x86

cpython37x86

cpython 3.7 x64 u24

cpython37x64

cpython 3.8 x86

cpython38x86

cpython 3.8 x64 u24

cpython38x64

cpython 3.9 x86

cpython39x86

cpython 3.9 x64 u24

cpython39x64

cpython 3.10 x86 u16

cpython310x86u16

cpython 3.10 x64 u24

cpython310x64u20

cpython 3.11 x86 u16

cpython311x86u16

cpython 3.11 x64 u24

cpython311x64u20

cpython 3.12 x86 u16

cpython312x86u16

cpython 3.12 x64 u24

cpython312x64u20

cpython 3.13 x64 u24

cpython313x64u20

cpython 3.14 x64 u24

cpython314x64u20

Release 1.5.6.5

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

And you need to install libzstd developer files at least version 1.4.0:

>>> $ dnf install -y libzstd-devel
# or
>>> $ apt install -y libzstd-dev
# or
>>> $ apk add zstd-dev

or do manual installation of zstd from source.

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

But beware! Legacy formats support state is unknown in this case. And if your version not equal with python-zstd - tests may not pass.

If you’re scared of threads you may pass option –libzstd-no-threads:

>>> $ python setup.py build_ext --libzstd-no-threads clean

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

>>> $ ZSTD_THREADS=0 python -m build -w

If you’re meet some cpu instruction errorrs you may try to disable built-in optimizations and pass option –libzstd-no-use-asm:

>>> $ python setup.py build_ext --libzstd-no-use-asm clean

Or add more speed with option –libzstd-use-asm-bmi2 to use instructions for new AMD CPU. When using a PEP 517 builder you can use ZSTD_ASM environment variable instead: And ZST_ASM_BMI2=1 too for bmi2 use.

>>> $ ZSTD_ASM=0 python -m build -w

If you want bo build smaller module by size try to use option –small, but it will work slower.

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

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

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

If you want to build with existing distribution of libzstd just add --external option

>>> $ 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

But If you want to force build with bundled distribution of libzstd just add -- libzstd-bundled option

>>> $ python setup.py build_ext --libzstd-bundled clean

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

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

If you want to check if build w/o any warnings just add -- all-warnings option

>>> $ python setup.py build_ext --all-warnings clean

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

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

If you want to treat all warnings as errors just add -- all-warnings-errors option

>>> $ python setup.py build_ext --all-warnings-errors clean

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

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

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, strict]): 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

  • strict: int - strict behaviour, raise zstd.Error if threads number or compression level is beyond limitations. Default - 0. Since: 1.5.6.3

Aliases:
  • compress(…),

  • dumps(…),

  • encode(…) since: 1.5.6.2

Exception if: - level bigger than max level

Max number of threads: - 32bit system: 64 - 64bit system: 256 If provided bigger number - silently set maximber (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(…),

  • decode(…) since: 1.5.6.2

Since: 0.1

ZSTD_check (data): int

Function, checks if input is zstd compressed data block, returns 1 if yes, 0 if no.

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

Params:

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

Aliases:
  • check(…),

  • verify(…) since: 1.5.6.3

Since: 1.5.6.2

version (): string|bytes

Returns this module doted version string.

The first three digits are folow libzstd version. Fourth digit - module revision 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_max_compression_level (): int

Returns ZSTD library determined maximum number of compression level .

Since: 1.5.6.3

ZSTD_min_compression_level (): int

Returns ZSTD library determined minimum number of compression level .

Since: 1.5.6.3

ZSTD_external (): int

Returns 0 of 1 if ZSTD library linked as external.

Since: 1.5.0.2

ZSTD_legacy_support (): int

Returns 0 of 1 if ZSTD library built with legacy formats support.

Since: 1.5.6.3

ZSTD_with_threads (): int

Returns 0 of 1 if bundled ZSTD library build with threads support.

Since: 1.5.6.2

ZSTD_with_asm (): int

Returns 0 of 1 if bundled ZSTD library build with asm optimization s.

Since: 1.5.6.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.6.5.tar.gz (649.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zstd-1.5.6.5-pp310-pypy310_pp73-win_amd64.whl (160.1 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.6.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (198.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.6.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (249.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

zstd-1.5.6.5-pp39-pypy39_pp73-win_amd64.whl (160.1 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (256.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (238.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (271.0 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl (198.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.6.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (249.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

zstd-1.5.6.5-pp38-pypy38_pp73-win_amd64.whl (160.0 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (256.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (238.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (271.0 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl (198.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.6.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (247.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zstd-1.5.6.5-pp37-pypy37_pp73-win_amd64.whl (160.0 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (259.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (240.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (273.2 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (247.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zstd-1.5.6.5-pp36-pypy36_pp73-win32.whl (203.2 kB view details)

Uploaded PyPyWindows x86

zstd-1.5.6.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl (259.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zstd-1.5.6.5-pp27-pypy_73-manylinux2010_x86_64.whl (259.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zstd-1.5.6.5-pp27-pypy_73-manylinux1_x86_64.whl (259.0 kB view details)

Uploaded PyPy

zstd-1.5.6.5-cp314-cp314-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp313-cp313-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.13Windows x86-64

zstd-1.5.6.5-cp313-cp313-win32.whl (144.8 kB view details)

Uploaded CPython 3.13Windows x86

zstd-1.5.6.5-cp313-cp313-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp313-cp313-manylinux_2_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp313-cp313-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zstd-1.5.6.5-cp313-cp313-macosx_10_13_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

zstd-1.5.6.5-cp312-cp312-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.12Windows x86-64

zstd-1.5.6.5-cp312-cp312-win32.whl (144.8 kB view details)

Uploaded CPython 3.12Windows x86

zstd-1.5.6.5-cp312-cp312-manylinux_2_4_i686.whl (259.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp312-cp312-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zstd-1.5.6.5-cp312-cp312-macosx_10_13_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

zstd-1.5.6.5-cp311-cp311-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.11Windows x86-64

zstd-1.5.6.5-cp311-cp311-win32.whl (144.8 kB view details)

Uploaded CPython 3.11Windows x86

zstd-1.5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zstd-1.5.6.5-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zstd-1.5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zstd-1.5.6.5-cp311-cp311-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-cp311-cp311-manylinux_2_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-cp311-cp311-manylinux_2_4_i686.whl (259.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp311-cp311-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zstd-1.5.6.5-cp311-cp311-macosx_10_9_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zstd-1.5.6.5-cp310-cp310-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.10Windows x86-64

zstd-1.5.6.5-cp310-cp310-win32.whl (144.8 kB view details)

Uploaded CPython 3.10Windows x86

zstd-1.5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zstd-1.5.6.5-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zstd-1.5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zstd-1.5.6.5-cp310-cp310-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-cp310-cp310-manylinux_2_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-cp310-cp310-manylinux_2_4_i686.whl (259.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp310-cp310-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zstd-1.5.6.5-cp310-cp310-macosx_10_9_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zstd-1.5.6.5-cp39-cp39-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.9Windows x86-64

zstd-1.5.6.5-cp39-cp39-win32.whl (144.8 kB view details)

Uploaded CPython 3.9Windows x86

zstd-1.5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zstd-1.5.6.5-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

zstd-1.5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zstd-1.5.6.5-cp39-cp39-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-cp39-cp39-manylinux_2_4_i686.whl (276.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp39-cp39-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zstd-1.5.6.5-cp39-cp39-macosx_10_9_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zstd-1.5.6.5-cp38-cp38-win_amd64.whl (159.9 kB view details)

Uploaded CPython 3.8Windows x86-64

zstd-1.5.6.5-cp38-cp38-win32.whl (144.7 kB view details)

Uploaded CPython 3.8Windows x86

zstd-1.5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

zstd-1.5.6.5-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

zstd-1.5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

zstd-1.5.6.5-cp38-cp38-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-cp38-cp38-manylinux_2_14_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-cp38-cp38-manylinux_2_4_i686.whl (276.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp38-cp38-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

zstd-1.5.6.5-cp38-cp38-macosx_10_9_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zstd-1.5.6.5-cp37-cp37m-win_amd64.whl (159.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

zstd-1.5.6.5-cp37-cp37m-win32.whl (144.7 kB view details)

Uploaded CPython 3.7mWindows x86

zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

zstd-1.5.6.5-cp37-cp37m-manylinux_2_34_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.34+ x86-64

zstd-1.5.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.24+ x86-64

zstd-1.5.6.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

zstd-1.5.6.5-cp37-cp37m-manylinux_2_14_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ i686manylinux: glibc 2.5+ i686

zstd-1.5.6.5-cp37-cp37m-manylinux_2_4_i686.whl (259.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp37-cp37m-macosx_10_9_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

zstd-1.5.6.5-cp36-cp36m-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

zstd-1.5.6.5-cp36-cp36m-win32.whl (203.1 kB view details)

Uploaded CPython 3.6mWindows x86

zstd-1.5.6.5-cp36-cp36m-manylinux_2_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp36-cp36m-manylinux_2_4_i686.whl (259.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp36-cp36m-manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

zstd-1.5.6.5-cp36-cp36m-macosx_10_9_x86_64.whl (257.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

zstd-1.5.6.5-cp35-cp35m-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

zstd-1.5.6.5-cp35-cp35m-win32.whl (203.1 kB view details)

Uploaded CPython 3.5mWindows x86

zstd-1.5.6.5-cp35-cp35m-manylinux_2_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp35-cp35m-manylinux_2_4_i686.whl (259.2 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp35-cp35m-manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

zstd-1.5.6.5-cp34-cp34m-manylinux_2_4_x86_64.whl (245.3 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.4+ x86-64

zstd-1.5.6.5-cp34-cp34m-manylinux_2_4_i686.whl (259.1 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.4+ i686

zstd-1.5.6.5-cp27-cp27mu-manylinux_2_14_x86_64.whl (303.5 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.14+ x86-64

zstd-1.5.6.5-cp27-cp27mu-manylinux_2_14_i686.whl (276.4 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.14+ i686

zstd-1.5.6.5-cp27-cp27mu-manylinux_2_3_i686.whl (266.3 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.3+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

zstd-1.5.6.5-cp27-cp27m-macosx_10_9_x86_64.whl (258.1 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zstd-1.5.6.5.tar.gz
  • Upload date:
  • Size: 649.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for zstd-1.5.6.5.tar.gz
Algorithm Hash digest
SHA256 86e0dae4a67f53fe8ea99fca7ed3218103ef2a2ddb27e9bdb4851a117ff56412
MD5 31bdc9d869dd04f507d664e5eb0351e1
BLAKE2b-256 9b7034cc1b927f1b0987864e556df2c06090b4a7923c4e993af8f2acfcb8e594

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 20104376c7aa58ab1b402dcb7536274eb495af5053b489303b63a124e2f2e1f7
MD5 e0cbce50cdb1ae94567d19f3a2285c33
BLAKE2b-256 ce36882f3940b556a17ef74b145e6696793440d58f58d94f6866a314922f21a2

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5ada353bf4fbf2593ff13f07b9ee887df921f398bb0ad7b6d660c95defb69d0
MD5 3d29559c3d4f2a4338f903fad257169d
BLAKE2b-256 ac57205e5c9e0b50c25dd679a82616c3a0cf2e76c3c611a0b6b0ea647e0577c9

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 47b4d306a33289e875fd142913fdc0cc55d0b460f98b1f70db61dbe185e2a478
MD5 f1e57667312a14cc200902858ede4187
BLAKE2b-256 fdf456f64bb2045addc8bc732de66eca38e8462c976ceb82af8bbb8499068750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0ed44ef432653d3ae02aee71d86dc7be2e233e636c0860b7d39da86bcf94dffc
MD5 9447146db51220a9f391fd21770871ad
BLAKE2b-256 ad6a920bc08836f1a7bba5178c8b93307f3af641afc52f222834f11891c6a004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 031aaeb526fe1ec1dc17ab98835623a6d99cf50ab376be4a035549f1699ec8ea
MD5 924b00000626facb16eee7828c6a3481
BLAKE2b-256 22840db17c56f830254c484e2332ee4e86df53a3e605178b3f74e38f830db91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 bb3048d8061ade804c8117397a5b34bed89396f4a062dfda8248c99dfcf1045e
MD5 81a26ab9156c4c91e4cbffda222ddea5
BLAKE2b-256 7944be2d8730cb10aed3d174ce87a2750b652d2293131b9eebb7cdf77bada5b4

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 2d9f0bd981bac883f761eaa5af3ebca9c6815899513da088e26fd23b540d4423
MD5 49feecbd65bf53d4a84b85940855cf66
BLAKE2b-256 368e951670d77fb6818725c91c8fc88a7a8962a19989d0f6c380bbfe1dd7d6d5

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5ab164fa6193588c1c442b61a02da4f9f01098e9306863722268e47af21260
MD5 644bc6126880deeb67529b688c56c66c
BLAKE2b-256 334ace617b9af482d76d072d0a73a6dd7883e46012a76a5d5601753f472db6c7

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c694b1927d101a8226b2598bc563bff86075cfd29a0497e76e12ab8c77a2edc0
MD5 6de361387000e8d81c3de10caa534295
BLAKE2b-256 b7d00d35781cd36fab45c7bb10c330bb8a191164e75f9e2abacf5409c8c611e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c6f4deed0c9a4e7fa6164b729c418e46bda76dd35c2b30c3266f020869c6bf39
MD5 65001c3943de5c9d5d5a2e4c66feafbd
BLAKE2b-256 c2bf05e58e71272f22441d2b46d599813a6eb87eca79ac36cec63892ba49cf34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e404eba4b277ad2813337067c87e9f3004561c9efb224b4a8fdd174cc70a6459
MD5 e7822024e66fb74eff8556fca7e961b0
BLAKE2b-256 9e133171534df210aa7b5d3f76652394358ed1714a06647a3838ed4226ab9536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 0331592a7993368d9f98cc1174eb628665f42e0b447a1d29dc289e508d25be0a
MD5 59d7e9d73b61a453525c574e995a1bd8
BLAKE2b-256 d42aeab510853f9f6fb720275cfadc03f9b6c09b8f337c4d4680c06337c95f1e

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 c6a41ff307deb4203fa6f081c29cf251612fcf0070c232d913ae46d64803ebe5
MD5 253479d3a2c5daadd21412267fce7d4b
BLAKE2b-256 654d0e6e24401513c410d8742cac76035d2ad9ae30c31e9c2fc7380c21f481fd

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e261be671411a7962f523f5a3914fabec31c2d3cb17549ef4fdb5b13fa6114ef
MD5 180bb0e769ba88e62a55ecc41a53cb09
BLAKE2b-256 efdd4978c81daa80f0738d3790a21843a180e513830a0b6ea7385d15ff148d3e

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b544cb4feca8e1fbe306056100ddf2c4d3f2c1393ee208c1c0ca2ab845174eca
MD5 76e62c2bc546edea9d8409349049d3e6
BLAKE2b-256 29f6eae13f7802025a6f5c825cbe009c8bd837c21144f9b97a19ba420458b4d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 229aea17bbfcc5526f12082850e9608dd97d12cd93dd5dc4082d14fd6d511480
MD5 c5486d4f38c05fc6a4dc1a9ef07e6c03
BLAKE2b-256 51ff38240e296b0914a3ac6b42e1f174a4d6ff28a6b925f15e6cb693eb37f318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e98c8f638c002b56a989bcdbc6e5efea254c85cf8e1c6edb254ea4afad08423b
MD5 513f920405c2f9752f41acb8cfe7e691
BLAKE2b-256 88fab5b60e9a5325195e71a3a37597f6b993ca3d1cea49c2da276a442382804e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 12a244134821f1a9f3278c66c1d9bd776b0fd9504ac11e99c5129f630c742514
MD5 33eff7d6c2b166a6613cc768a4677731
BLAKE2b-256 436b208e3891c42abd3a6c06f6462fca1c61df86ef7f4566cde1a269af91ecef

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 3c66525976ad75f4fad1993b8d5e9ff46c7794f676519d2bb458190bc6d76a88
MD5 3757bed252c4628a97ace64f104a9518
BLAKE2b-256 87c406d461fffd6ae11f05f988c1f2395889c7e8bc3f1b1d0f3b8ff54d8d008d

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5349b2a9f384a0b20d1ead82355275e59140db123396f04067ebe83039c81b35
MD5 391bd650251ba16966869f81d5f4e5be
BLAKE2b-256 cfe3748535c657fc26b9510b8afb8132fcdef674c4e9dbcee2e46e6326231412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 203.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 1891de0e8e743e9ee47c14a045c045a9e71bb187a3859e55da3515fd7631d5d2
MD5 c9e7fe0ad02969da0745790ae96d7c1f
BLAKE2b-256 8a097c241dbfb8af13f56ab746771dc0af8d51234da71c6d1bbf6c4d9c434d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 635360653e34e87d51d907d0c44a7ff5a327a455e5ed7c23148215e548226d7b
MD5 9f854af8dbf4addc0d15a398e42c3bb3
BLAKE2b-256 d183743b2a528480add9561eb78ef073f857a9cef00e23d6318b6fceb74b9f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cecf4f3bfb5ea5acab53e8711d8333bcd1141619a85886188bc357d624584b26
MD5 803c4d9aaf1d406fed51ff0c01332b95
BLAKE2b-256 50738ea0189144a14d79283bcd0c4affa774f69ad010ebaab249cbd0e30a1e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 47faf9f4c6e7861a2e010ab58371a919f66b1cc2c6828157d07ea6f91a762775
MD5 8158d247522dddacd4082d3d16af3a1a
BLAKE2b-256 b01d3c2fab8495ddafc5b517162bcf628868fa8ad30088607af8ec0e210c4d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 17d16bdf79956288e221f3a8c5bbdd707111a9933c1028a16898716dde14a444
MD5 69931b56e89a72bb709bbd9a632b9a59
BLAKE2b-256 65a90122644d94d0082c080afc18ad18d4bb3ef6de8a14dbe4f8c4f20e0f1fee

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 faa2cc4219abc293c4485dad39a9c3017ccb9b7d4d7cf752d84f059b57fa6491
MD5 fd55b82f7e250d03e6224879f4acc9ab
BLAKE2b-256 2e715f24ac55b24c9d870d62dc1bfce20b0640870a15105dc1a025576589a4d6

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.6.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d6ccc556f888d6794a5070c39fd58d435a0bbd5980f44e4a60e61499efdcef84
MD5 eb3f95d22d05846e3bd0fd0b46d05b6d
BLAKE2b-256 b7c5b1f2ceac56697c9a3c8c8793926e821de010d3c6f4300c45650274b995de

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: zstd-1.5.6.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a46f324a76c9b7ec1f0840c05afe9fa0e20ed7c27d6a653c9eb501220c880f64
MD5 27f7ad103bae35950bcf95b60b8e460f
BLAKE2b-256 4cf16f7aac009fa4b951f67ff81509889a05c9307768ad5c911995f9d3ea2943

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 43dd281602d5952f9523c3bb49c784d399c532eb8a803a5378c56cf7895deacf
MD5 275fe880a8915fe38341b08ad1012b89
BLAKE2b-256 794c0edea4efa78b68a7793b415ed4ed5b0d57c70a9f64ebc125400a87b21eae

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp313-cp313-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp313-cp313-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 912733868f7274079cfd20a36cdbe2f6a6c49ef11e9e2ba4894cbf047ee57414
MD5 ddfdc34c4a87ecd8a069a75dca492ff2
BLAKE2b-256 d393feb2af76312cd47cbda29ca1bc290b1ddd6d10dd60a7932aadff1e8bd674

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dffcd2f55a8185a82e98ad03b2b34d2f969d5ad91042ec77894653d88fafb8fb
MD5 1eb5a41ae90da9758c9312bb9141c171
BLAKE2b-256 278470a1dc080eda5e96e45c27b9a4c2126f2e2634ef24298a2e34713336fa18

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 69763647769e8a9960ce5449dcf84da5ec29c55494ec0824ab21cd656294e67b
MD5 81b915c4259acaf15261cc3b34aab26d
BLAKE2b-256 41253d186efe62645d850c4b58b1e41be3633884ad75cdfe2aa5b4a6be3e4a86

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zstd-1.5.6.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 754080ba6868fa04c62ba6b2dd3bdfb25b1c347588e69986ca854c507112d631
MD5 e94014d42692d49c7aa3447f3a4080d1
BLAKE2b-256 dc99d40503cd86009511aa250ff1ceb2138ac4c2cf328f7c69b65516d9405ca9

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: zstd-1.5.6.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 844631a94d07214ec0fd45adba1db8ebbfe893252824dea60a4ba84d058a279a
MD5 f7ffb64db73194d6137caf23b578aed7
BLAKE2b-256 ed598ff232f95ec053ac768f401bb7d9a158b789b34aa40d124f7accb5d9dc99

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp312-cp312-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp312-cp312-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 e268c794a45f1f086fe320ca53895e143b0b403029a0fe03288cd01117f0c1a8
MD5 026dcb27cea6e4e82ce0f61b5695c30e
BLAKE2b-256 2a4e35bc3b4d7c59ec90afb366137665e5f0ef88e5bf136929bec495d5b9c3d7

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56b3e22148c16e83b8606f910ff0f9465a0f7586171caf7875c8ae9e3a17516e
MD5 a2a07be6147b28caf115d813f5d132fe
BLAKE2b-256 3776fd0cbeb39ee00396fdd263f2475a882f46d0338933a12c0d5e6eaa01ebbb

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a1bce1f6c41a32cbf1fe9ca3a79779dbd4ce682af8c1b3cf55552aee26fe038e
MD5 7985bdf5693d36eb5eaacd68a204f274
BLAKE2b-256 9b7b537a6d05a12ebe243a5d5001162d5a58248f6f15ea763d7b0607a8ca75ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1091acf4a33c7758ce213587e1473ceadc98e6008da7a73aa6d99b7e093b37e
MD5 7f42d02963a1e14fa5835e7a48196a6e
BLAKE2b-256 622d444c6e530baa5aae539b364bbcf823a4ee0063e12141860e70a387dc34d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce1702417f0d5983e28ca01edcbe53630397122afc967145baae597d2d49ce5e
MD5 a1cbbff73a2aa25d633e842f93963307
BLAKE2b-256 55e3f2d4e1b1fdc736da0b62f205a21052a55ebb3c5d4c937063e1a3d818d003

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 554d4f32250bf4bfac33ae175f60f551862351ad5b2d0971b16ba316cac96ce4
MD5 75059406f92ecce2dcffc82695a5a1ae
BLAKE2b-256 be3c11b7dacfd948858c4a1bb0b8db4b1c669590798b668543b60afd4d1fc222

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4006dfefbaddbb16d6457c56e38c477314528469b440b62babdbd783491defc
MD5 3b37c1cc469801a447ccce9d4decd2a3
BLAKE2b-256 4d9ca5784651b09fd4f4d442a90f7e74cd7e30ead465939d18f072c4d597daca

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 014149abf7f7e6adfd4036e8a5c53d0e467bef157a6d712ca1c1570f3b3d518b
MD5 f3de75a90ba9350b1058d23d8309acd1
BLAKE2b-256 34647df941ade3e2db2afdb06ad0b379aa42558a56908e3cbcd3a1f5d20ab720

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 38c9a46f4cc154840b4280523806699ebdea408a06e92cd2bd430106190a8088
MD5 58f34dcce34f4a7c7c00f036384ed5c9
BLAKE2b-256 82a88b88bad8bd208e54d15513e401bea5b5d436c5c7c7d55bddaba3e358f1a9

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 62057c8c84456da7ada8579b9778b374396391ab9092a7592ee71aebc5118eb5
MD5 831da3f6bacbe9ce430444e4cfbe96eb
BLAKE2b-256 75c140f6b0159b3b308488ac811664ba12f462123ce07d99693c9a4a469862b6

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 7a129eccc6c38a710f184b5b2527b832c75e83a21da5cba2af958315abb77996
MD5 bb29935e62e6641b0fb8b6ffa3c82e8d
BLAKE2b-256 142bf4b10bbfe592c2a20031d2b4dccbee627c5d9ed3d8f1811eeac556fa7041

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 c0e42289fcc798d5fe182d13b3c70484e12787c395ea2d541867743665d4d56f
MD5 65eb8d451ae31aa18ee5a3cc7cc85c0d
BLAKE2b-256 75c0e5c96ad9aafbd68c7a104977aa206f83e080a3f34311d011c68a55f5b26b

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7544a4ce39f5dbdb8c5892e3636e6440f1560c1973b4313f8ad3c6f4af135694
MD5 25d88256e5a18ca8a51fe0990bc26c71
BLAKE2b-256 95942f7933006bcca4d5edc1eeed3e801b8fa8b6a7287dc075eac507394e1144

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 9f3d9c88353b759c40de6d5288fd0c46bcd0c339f5e3812f217cf47e25d8206d
MD5 b1875648fef0f0f4813913d57dde9273
BLAKE2b-256 5002d4c566520a919f941ea31e0de679020b41d0199e778bf7a1ea62a129602a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d36511a892eeef4c591ca3c435bc639e1d280cff0ff39f204016a34728a1350
MD5 3b9cddb0fa2bd4a6d9302120bce381d0
BLAKE2b-256 61479d1fc85c9bbe9ce5644bc16854839b4a74958dd1e172b21991fb966e6d42

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5aeec1e9d607d4e7b9d6ced9d48a3f2f9bb8b8ff1ae779c3f552b2dfc71e040c
MD5 cce7bfa4b7baa95ff0d15e7e54d97108
BLAKE2b-256 cffce50072f08cd3eca464cd1924bf0072f8b4794b31276a330cda23225d99f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 17ad26a83df8edca1198d95e0d820c7c219f94995d31f1c6ad7b02436e46318a
MD5 ff2d9961044c4e0ceaa06127688854e4
BLAKE2b-256 a2370979b17fd8b20301e4c6bb69eb75ee818dfda1bb260cfdd57ca61c3b865e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 508d09c398c16a5d2ddab33472d17092e8344dbc698879586424d53df7a6206a
MD5 192f6218c22678e462eea0a1320df397
BLAKE2b-256 14111bcab4357264e337b4da9333df4ba6690c34681534434560355a18742af2

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebf44b82f5f2afbc5c4c01f25fef32ffe9666397e578d5d269f4c622d060758d
MD5 c2544f80a84fe423607c7036001bbd4d
BLAKE2b-256 302652b731241aa56e47956604cc621e072a9213e66bf53061b0ba4553b01eb1

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5660e3271b9baa07b5b43c17af96caa465803942152d330e65570810f54e9e0
MD5 ef49bb36a5e271f714144c5a341d34c8
BLAKE2b-256 23cc6de19d789e3e9492865c45539e00d19d1f3873fee23b1d32bb61adda9f1b

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a6e0a4ad5eb50b9523559694bcb967cf9e82f1be8ede18021ddd6329636a5d2
MD5 e5d5e9a37760b902c7dfd32ccb340479
BLAKE2b-256 c9660a6f22bc942e5a4d3a3dfde9cbae508c5a5468935b9af0deb4933c9b8547

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 3f4219d578fa591b7ddbbefc41a993c983b45682dac0f08b066b7edb656ff7d3
MD5 001e4a564db0364144616b5af8c01c15
BLAKE2b-256 8c939d0969917f4553ea2aeee24699b2eade9ba2dd589b56a15847c8c9d82ff0

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a29f52a6f9ad083fab50e0136ad878b2d70f8471b3f6d613f8094fe664abc94d
MD5 3657b2165245bfa2ed5ad0def0b277d3
BLAKE2b-256 b4839b22b95ff1ad12d226c9295d234d841a290998f509eeab67b545ab7ad7c4

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3b9c4e3317063360b407a4ebf1fbf57ad58cbc87a2dadc50eac322c6188f630a
MD5 b7cc6ead8e3d289d962fd15564ef7d0e
BLAKE2b-256 14a6e580fcbd02da951b90c8d40dbcaf743231cd94c1f3ad5d2dd5d23378c31a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 34549dd65897db0f09ea5816f6007b646077973395add27dec08d8f0a391d9c0
MD5 ccf059b7c0ea7e3010e85f6a6b58a203
BLAKE2b-256 6cd117362928ed3152afcec1509a564830f29f22069c4aeaf0d4280dbd1831fe

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 dcbab24984623d3bb101bd7ef291bd4e630912d7b13e789c5479dac0472cbe4d
MD5 3bd3927924cd99ad74c238c2f57c1ab6
BLAKE2b-256 018071d0819f321295d3d971a66d7da9d5a80eeb3730aeb1e1a20571639403c7

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 c01fd2e6beb4ad8822d86b1cfd5780acafb0024f3c4b790c8b41d3ae59618c73
MD5 efc9355234cb2244c926ee2fee71da18
BLAKE2b-256 f4663af7695f75b377623e8674f16f5ee352c92d56ed28ada90df63d81bea85a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 338e571833832dc363fd29c83dcdc0bd36ac826d14391d1b19cfe5d88fb649cf
MD5 32e7110fabc8be78a502debbd767467c
BLAKE2b-256 c6a9293f58c66e813e3035106f93cea87884de825d04dad611fe6481e6a66434

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca21239d7baf7462f08c5571e76c9038dfdb8d3f078f7b65f41693efd569b9e0
MD5 d4bc5c2a3f756ca1ebb2001906531a01
BLAKE2b-256 a8c19e78db0e55274d3448ccd3230067bafe5c3023ecccfcc793fa408d9c4bc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f814842c3d48b4bb90af83251ef770b80b00faaa69b7503d8541c43000cb771d
MD5 38d90a4d8a6b17218d85069011bac007
BLAKE2b-256 52c3667fa0c3b08b62c7da10703c33010e3c1fc145aede2c3470372fe132da49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e283a03c4eaa8efb67849d576d1bd6f52420a36bbf67eeea791ce50f44292b08
MD5 872db7d102322a341bfc37451c5f55a2
BLAKE2b-256 5382452f663626d8f2b992e3db334f287cfd4342250238ccb340563633415631

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f28dcd6d5c0ad206c4a9fb3beae14eb6cf0e80076d0420eb1b440a68ce2749f8
MD5 2090da9cc4ce1046e32e2aa58f2a090d
BLAKE2b-256 4d55d4dd2af77267725b22090c9e17a96e1fddccb7aceb62867fc1432e0551d9

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61de77d0d7fad1eb324c268d46b71bc5329615614d9b42adbb5341f1b97096ef
MD5 e942c523231f8838f134b68751111b4a
BLAKE2b-256 c741213a6f95ea2cf706bf4b131e13827b84af02c92d112d225ec6b621ea260a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3caeef24a78168ddf31e2915d68450efc69a9ff61f22f82a55e7fd49989a22ce
MD5 099295de73cae87e538967446e2d652e
BLAKE2b-256 d73cca5946a0673abd917c12f8156e069fa06c73cd92bc60c2d53fb41851c067

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 dfd912eeda276398e96b4ec629d17bc5a271c85c37f0c0cee7000f32a88cfc26
MD5 f26be0bf08067a9cd4137722bacf1296
BLAKE2b-256 770cd53287816efe6c50ceecfae8e2fa22fa2984c5ec5f19444c76d7848bcf35

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 665542a30bc70671db2bdd21c4e0c2bf6fc90386644701b523070e7a8afa2309
MD5 e2e0b50912d5537ff7f0ca58ed0c1f96
BLAKE2b-256 71a5cd9d51b4d63ea73a1cd8c23d37ee111a1d4137702ad5eb8892051bb03a14

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 d78ccb328740a2748a55fe5db9f6efacac7cc8f3ab64289aa273e4630f3543f6
MD5 684df3fed19d6d45fd300abe9997ae1b
BLAKE2b-256 41ca6b08ad5db6c706f1af0aff135f5ba09adbe6846d4fa5bf1290cc54c5bf88

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f5a6045403d04e9b41074b130633492ea2acbd8e5762f2d48f5449ae9f55f69d
MD5 080ad016a92fd26fcf4ed0ce50d417f1
BLAKE2b-256 12de71c17ae9fe37445018b28cf69436a7c8bbba270f25af56b6449ecad969cb

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-manylinux_2_4_i686.whl.

File metadata

  • Download URL: zstd-1.5.6.5-cp39-cp39-manylinux_2_4_i686.whl
  • Upload date:
  • Size: 276.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.4+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 ba9ef089b31d1639c063356b8bc602dcfe2faa0674fb2ad9c6a28f1d092481e5
MD5 85048105d8d172b4ebb06c0b860fb9b5
BLAKE2b-256 cf179dad4bb7da2c114c7fd746bcb43f77efad459a49cc67af4b94298cd3da0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7d377fe13b82aae20c461c42e8ddc78353eebba12d82194a41448efd77af49d
MD5 fdbb733bf0110e31e753dc0a768f37ae
BLAKE2b-256 0e63ac2a79edad2f35e27d97e53d4a807cf01f76a524f83fcc69450f6675df6c

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2c04fa0d698494d59a1e44e45b79b769d089722f7d08f6ff40d427e3fccd6ff
MD5 81d5a73e2abcd8d78c161a91df034e77
BLAKE2b-256 7f76132cafb9a1a7652aac450a2d87968739abe1a6c229ebf3a3765cb397432f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 159.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4cc8c75fc49d6a58d24e1376e8dc2999a3881b8b4812b41ffe670fe465d24798
MD5 c0ad331aa937cc8713080a7bd9045116
BLAKE2b-256 aba4159026d22e6f3a14e082faeb814d89b588130cf14e83749b9a3ace0e7e37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 144.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6f90056f6244f041bcd20d75a180a0695e564f2f54c465534fd41b9b0baebc99
MD5 7c52ffbac662524e1854cce8b8585af2
BLAKE2b-256 6eaf7b8cf0c8cadb17c48c09307eb268810dc0029413dbe3bac702a0ce9f644c

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f37e56400c76abfbc041120fdba7514b4f1c1e26fe130442932e691e8cb0a730
MD5 644f3e13245c516e9b4bb534c3151b61
BLAKE2b-256 461353bdebb02ffbd8cce048c50dd25599c26a97d5e47b65c252ec7a142d9e23

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7981739fb1e9bf31b503e131b8a013aa5f13cf48c0ee6b9ee59af81d260899c7
MD5 f24c430ada3e343011439c5046c21822
BLAKE2b-256 4c4294e1b8e66bd7edb1bc4af0dd1e852901661200ba62f46300dc0e2eef7070

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96bb7d2b2cddb9e964b4372cf040416012a031a075096fa4e1d3c57a7049fd6e
MD5 7d722a4c7e3c4a7c6ec2d0f3d9ed18ec
BLAKE2b-256 9429faf5fc81f30d0886ad0ce795f9773e5d78ded2e138065a4c32aa4e0f49e0

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 063ee0c1f5e8766d1ca1c952488e40068a88457117095904a8fd999c48d54880
MD5 fa886b508cd8acf5fb4f7712a7510be6
BLAKE2b-256 e4dc7be5d5ea257e691ef6999a8c80b5937edcab6c6e60e835bf6f1792b3eace

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 46c5226e65206587485edb25814b3d3841f1ddeab6a623981497b2b4456a48b1
MD5 4361a6cd5ae92cbfeb2de265ca9683a1
BLAKE2b-256 a7ff42da23b8e74336e5e4fb947eb5e69dfaaf5c4c06dcbce96d8b326c177f27

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ccfb814430782c95137330c849bb0ef025224e4b78c1ad6920ed0b4b42373158
MD5 13613f3787de4b473dd8858858df9bba
BLAKE2b-256 5d33ffcd87506f01df70c1406926fe9c5ea3f617e7248ba6d142b7170864c982

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 db3d8661e29aa56253271cbbed1aea2501e3b5199267ee065450f2ee29d14afd
MD5 97331f7ab197a3d4644554da160f9610
BLAKE2b-256 9b55fbfa88397d650b3c147166cddb547e3db118eebb9b85b7c295eee92fb77a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 8baed3cb5371e56ae1cb4292d10da2c481c5fe13190128ef2f3637b30c42d224
MD5 9ce87f7b86f20cdd9bad6269915baa5c
BLAKE2b-256 2d321bdcbf0adeba76cfc2c4ce4ebdf7752426d98aeda37ae48aaec8b1732d6c

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-manylinux_2_4_i686.whl.

File metadata

  • Download URL: zstd-1.5.6.5-cp38-cp38-manylinux_2_4_i686.whl
  • Upload date:
  • Size: 276.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.4+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 ee5929ace93cd5ed9c7a09c535bc57d0f5158436573b17fa4834880204d49b8e
MD5 41c6531e0c4677c81b80918999b05c03
BLAKE2b-256 d156596be3f0d51317229595d57a744617d9287957cad54d2977567fbdef2493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbfb19e382eab82c17d18c2b175313492883b7baa014bb0f285f279c89b217e1
MD5 ed30b93c6d4dcb87fe3ec3915c848e6e
BLAKE2b-256 1f58e47f8716056277a604cede581336ea30e045abbea520bc9d6e809be31191

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f0f0842e917f091a2b2d929c128bfe211d94d8c77e1a02edcc9eeb818e55dcc
MD5 652e362573ddde87da1207d48556316a
BLAKE2b-256 fb2672337f5f5208378a7490cdab90620692218cfa133c1ecfb599858fb6f965

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4efde1127a8850b5df9d8c77866ac8904bbb1461c4b3b98fe26a94837d705378
MD5 30ada75bac6edaeb93b20f8cce1f11ca
BLAKE2b-256 1890e2a48dbb4db1137fe6e90b014c3dabd3b87fcc06ca81ffe245f19b913b67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 144.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ce11748797e21188b1117ef67964ba2e5c07007547634e923d9b3dcd07fe4eab
MD5 1ebc75fe933040f94af1dc31ebb1eeca
BLAKE2b-256 000d9cd122696edeb01d130d1677c1e0d4a05c430dfb56e36da9ac693d130ac7

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d9e52c13c6ca8e6e5ae081259e89d51733d424e84ca1eb94f050e50e9b26325
MD5 813d869768ec3a11ab06aede144fd46c
BLAKE2b-256 717433756065f9c1bab0768997bd59c3e6f1bb458f7e4112147cb5cac8669592

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fd7323678845736d61f6ad6dae31c6db4c806d5f61520b048cb8507b51ccfb6
MD5 fbfa3df011a947719bf2bb0bf2541755
BLAKE2b-256 fed9e3944281b8c910aa68751e35fc948a3c14572c489391513f319f5a02b451

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d22897798cc867d7d798d6f2acb6fa9217259e580c184cdfe242252f176fc9c
MD5 da92856801a4ee436f9fb82dce8ee58e
BLAKE2b-256 6bbb12646bdbe11886a44723b7c2e2be42bd2d5a07e9aeadf1031b4728103b18

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8e621e4bbc1447c301fcce5c015f18c37d39b7ed17cf4ad57e06156f0b44d323
MD5 131102014fc1abe50e5407f1cad74fd0
BLAKE2b-256 4340dc2d8c9c4ad803cb036b7429503331816c8f754612f7be4a793ee4b0da17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 c29800fa111c7fc033be41bb21e4b15eb86ac151e73ce8a2a1067b85db2c63b2
MD5 fdd5ed38b32455eca9ca2009cbb6df48
BLAKE2b-256 a0ce5b48470a10438f8fa846244c3313b3405077c6ddbf93312aa2237300dae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a5927ece73b244c622b1951fa7860d9b1ea44bd716b3cd499664cca6b05d4a8e
MD5 42424e8261ba1fb7c79d2cc6f33ddf3f
BLAKE2b-256 b4ec582e9110a6e7f6796a7d90cc1b215b203a33f3f43e1486050be7f5e5292b

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 4ac61fd413762c97b9f7a41fcacbdf21238290229d10ff2f4d01cb25b0bacaf6
MD5 ecf6cd1724d64398996c7531ca415e36
BLAKE2b-256 a9133a0633fd6f17bb2630077247475a763f6e48e266a7ca81c727d1214b708a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 5e1aba160d482fda344466bb99cba56018e6dbce6c69e49183d2d4b175de76ba
MD5 84a862c9ddc5dc32a8df06f74f1e7851
BLAKE2b-256 8e3f023a279ef0c58018b7a2f14ad9bd497b58cd8c871d670c6a3b1bafd0b51a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 d30dd82467df6e3b8bda24a4e13d552ee5e48836b3d435a9d65c51a872295d36
MD5 c0fd1a1b08009c9cbd3e18b5d9f0135b
BLAKE2b-256 902c02e87a2c1db420c7d74bcce9b3bf4f7ae53970de738dd78caa342a5fcc85

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb6b2d82057e792c7493b1756fe12ef4126615a9dc24403c0e4927619db89d43
MD5 59fe0bdfcce073360d78d44b0782220a
BLAKE2b-256 b2bb6180613bb6592c1833d8007c91ed8eeeb2360a8d18b0304cbad9967e92a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 59f476f623dee3d915eefdb81cd1ab7577d9b91c28a44cc7260feb6565f516fa
MD5 edfa3d60c5a879e794120f14093a1d78
BLAKE2b-256 8719ecc2a4547b3bfbe42f38f7ab4b62aac441f2af2214679aef387c5a28698f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 203.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 79d3615e18b7006306875b8515de8f496f2d3789ba75a4c9e967af94282330b7
MD5 9f254ba2b3247387e7f3870ed8387105
BLAKE2b-256 be299d5af8e45d82244eb1a22b97712128a3858113c8173df27f0bffcf877409

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp36-cp36m-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 cd5923d7ef54f06314e7fc5bac28991e8f45a63210cdcf709f17cc50aa225e69
MD5 95af6a03f5fdbf24243cf70704b8130d
BLAKE2b-256 f80ed7a41e9dcc96d68c18779ce270b1222a12b9237fa04e1d9beeb9be4a5d61

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp36-cp36m-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 dac700a6b7fe083b060afc7e5edbe7fbdd9252b3e92bb9b9f702fe530502267e
MD5 234a577d9d9ba1f1b6e7f3236bcb9321
BLAKE2b-256 faa2c03b73aa1524eb8541ea80c0fe14fdfab5e9e99ea53f3f8ea96d53432918

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75cdb63ec2ae873bb35c65a6347ecd40cfc063664e12871412f5ba2887fb0f0c
MD5 2e5c70a3a313d01eaff63eed47cbb228
BLAKE2b-256 fafe8e0279c2b3f1faebcc747535ef73430b40df62621848670145f4a7f62ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c43e8b65a80cbbfd17a95643e721e98aafff7d1b6fbce4b45e25b05235bb6c99
MD5 9d81aa34ae53275e41784435881fa01a
BLAKE2b-256 19857d0e523a913fe8547e5093c0355cd61f0c600db43c9731e2f82fc1948d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c77909451296d441b847b69e4f4ddec563a2d63d04355c5ae81cdf037b320448
MD5 773b81e8136b31d73307f0a0c2c7689b
BLAKE2b-256 a23891995e4f547f832f2a7da1b34617e0d17f3368874c68b80fb6ab8ef215aa

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 098ca4fb75803d8213ad6fd0c104746a9e73aa1256faaf97d5ac686bca3a5211
MD5 9053fdcd9a1d75d569a0fb6514e2b746
BLAKE2b-256 76128ce8e96c49f06d7eeca7fe6a0a542f0986af21f4da53e1a25c5d9469703b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 912a77b65d662b7e9c0ed5d27791c3866e508e2353970ba77caad5b5d74eeb0c
MD5 2326e5b6bf3d4adbfc4bcdc5da85015d
BLAKE2b-256 14930ea387591b8126f8c154d0ac71fc4ff374c7d4abfd831eecb66e8884a8e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.5-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 203.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.9

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b423e4cf10106e632493f208fbab67ca5f0fed78e5b60b6768d747c51b5ce97d
MD5 49b006a1bfcbb326624c9e097959443a
BLAKE2b-256 95d6fa1bfb99504378654a8838dd84b539a83d635f59f1f2604fab8c06a15592

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp35-cp35m-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 71ec5cc4b1deb9ba5282a0d3afa1b8010adb52924a1a2e3cf251de03ba3a1595
MD5 a28979418d07998af3a3e948824611b7
BLAKE2b-256 e447ee80c60e449cae5d1f6d8d36d58c0862b49516f1b9a2aacb61d27adcc52b

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp35-cp35m-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 4d1b12e62203d858cc262068ebeef6b4bf43ee1a82e29958a8b21942df2958ba
MD5 e0c99d534223fb42a28ec5b0e8951743
BLAKE2b-256 1404f29a6077fc8094675c599fd131c6eb989100a76dedb5ce9c495b000e9d24

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1803d7c51cc9e37cc6662840d226727142fbb4e7e8d7fbf8da01ee9bd316730e
MD5 e0d80eba91c90dc6338924a3b15d6249
BLAKE2b-256 69e3d8e7fb871a90f50d8a4e795258ef6b93e76d3ea97a345a7de5d1c8f8df9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 02aa8b2646c73c09f09a3208552f4210b47e262f20989dcbf2c6e4e2be00a655
MD5 36637128382e4dd08a4629936eb8ac92
BLAKE2b-256 3d3202c90ecef8e4377c8c3288915fc39f056f14768af6cd9165f529544cf912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 75c3f13bfcde5ca77c9203e8fcdcb270800c501283c744d10cb3b32fc1766a11
MD5 74370c6f0eb033a1788b42c24389b577
BLAKE2b-256 f70fbffd5928ffb0730ac93608db8af77b07c5183faec46048a099c26d38e24e

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp34-cp34m-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp34-cp34m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 c82725dedb6bb8d2a34ef148f58e2c216b6109591add580aa5860e212d177dda
MD5 3a698341f5067d3b36704040df2e340d
BLAKE2b-256 849a7f6d7eb269cde7e998241974b7cde49263998efc16631f90b5c620d34e99

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp34-cp34m-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp34-cp34m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 ee164440e671cfe88be4eceb81166ed32def980927b67b56d5f874ff7fb1faa5
MD5 9c4de00c6b5fdca88c2b7f1a2df4a920
BLAKE2b-256 436420f6fea7387d88f5808183b6be2062620a1b2dc6fb0a2c6bf211fabece55

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp27-cp27mu-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27mu-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 dd70462479c2d27ecf3af516eee099ad902b511072f07c52c53a7919c46ad004
MD5 fe74d9af461b790a2c20aadd33511915
BLAKE2b-256 6fd699cb46f28e8ca42c50cbdcdb90ea71dcdd016a539333e06f3cb88b33c590

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp27-cp27mu-manylinux_2_14_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27mu-manylinux_2_14_i686.whl
Algorithm Hash digest
SHA256 196069e5b33eba6dcff8d6bab51e26c666bdff780558bd046b9f8b3d8c924ae9
MD5 3cd702f10f20023db204febbf2169485
BLAKE2b-256 5b3327fb87eb354cce902188fb1d43a9d3b657eebe07acf6a1538930f3868c78

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp27-cp27mu-manylinux_2_3_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27mu-manylinux_2_3_i686.whl
Algorithm Hash digest
SHA256 ea74adcc545c33612938f27819dfe87a7b9b2f7f88d1c1d421f9f62e3a5e7c1e
MD5 399dfa0b71012dda366eb22582fc124e
BLAKE2b-256 d86e3397e2407ed16bc8c376fd462de158bd1ea123a68bdf0502a9a9b8b9a199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee22a372343c6daffc883ee5a8fedf0ef2866e8e2c8d127c0c5f7073a56b0fb2
MD5 9ded1f215634d037340d535138aacc12
BLAKE2b-256 bf535ffafc4f1d6806d3a82a43a3c32a528e24cf82952cd939846d1c166a643a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 987a2fbbd4899d827c4d008be73d7be924adfe743d6c6ae10d7fb2b85746aea6
MD5 ccd6b4690c106944a5fdbb0e5eebd194
BLAKE2b-256 463f790cf598132cadd34d95c85c470ce97ed07b228cce3b50c1d027c03b1c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6320f1a2546e5bab80855915828c600b04af01c2eacc76433992e87e85b05396
MD5 abd351d851436530dae03c9ab569ea67
BLAKE2b-256 6b5deba23c96cc0c53f52c69e5f93399d3900c8bd97b73aaf4db17d056612897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e01ed774a1fbcb2faa42e7d2b42ac9b67914a1853cb7c481c4d7b78e3681718
MD5 b62343a2ed32baaa25768a157c8b1462
BLAKE2b-256 d913ea5e86c53ccc0bebf473131e40f500c30e6d750632e0482c45bf41f09c8a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.5-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.5-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ae411e403146450d452529cf1419b56a2d1cdcf33e23bfb4fe5afe32c50bb65
MD5 2419ef630cee1b215ea742390deb05ca
BLAKE2b-256 baca4819e5093b4cdd3d0bd7f970f2294f8d7246c2e323ed6a56c8644ff42452

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page