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 u20

cpython37x64

cpython 3.8 x86

cpython38x86

cpython 3.8 x64 u20

cpython38x64

cpython 3.9 x86

cpython39x86

cpython 3.9 x64 u20

cpython39x64

cpython 3.10 x86 u16

cpython310x86u16

cpython 3.10 x64 u20

cpython310x64u20

cpython 3.11 x86 u16

cpython311x86u16

cpython 3.11 x64 u20

cpython311x64u20

cpython 3.12 x86 u16

cpython312x86u16

cpython 3.12 x64 u20

cpython312x64u20

cpython 3.13 x64 u20

cpython313x64u20

cpython 3.14 x64 u24

cpython314x64u20

Release 1.5.6.6

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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

zstd-1.5.6.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (249.2 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

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

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

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

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

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

Uploaded PyPy macOS 11.0+ ARM64

zstd-1.5.6.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (249.2 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

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

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

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

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

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

Uploaded PyPy macOS 11.0+ ARM64

zstd-1.5.6.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (248.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

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

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

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

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

zstd-1.5.6.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (248.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.14 manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.14+ x86-64

zstd-1.5.6.6-cp313-cp313-macosx_11_0_arm64.whl (208.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

zstd-1.5.6.6-cp313-cp313-macosx_10_13_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

zstd-1.5.6.6-cp312-cp312-manylinux_2_4_i686.whl (259.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.4+ i686

zstd-1.5.6.6-cp312-cp312-macosx_11_0_arm64.whl (208.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zstd-1.5.6.6-cp312-cp312-macosx_10_13_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11 manylinux: glibc 2.14+ x86-64

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

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

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

Uploaded CPython 3.11 manylinux: glibc 2.4+ i686

zstd-1.5.6.6-cp311-cp311-macosx_11_0_arm64.whl (208.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.10 manylinux: glibc 2.14+ x86-64

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

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

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

Uploaded CPython 3.10 manylinux: glibc 2.4+ i686

zstd-1.5.6.6-cp310-cp310-macosx_11_0_arm64.whl (208.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.9 manylinux: glibc 2.4+ i686

zstd-1.5.6.6-cp39-cp39-macosx_11_0_arm64.whl (208.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.8 manylinux: glibc 2.14+ x86-64

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

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

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

Uploaded CPython 3.8 manylinux: glibc 2.4+ i686

zstd-1.5.6.6-cp38-cp38-macosx_11_0_arm64.whl (208.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

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

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

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

zstd-1.5.6.6-cp36-cp36m-macosx_10_9_x86_64.whl (257.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.14+ x86-64

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

Uploaded CPython 3.5m manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.4m manylinux: glibc 2.4+ i686

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

Uploaded CPython 2.7mu manylinux: glibc 2.14+ x86-64

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

Uploaded CPython 2.7mu manylinux: glibc 2.3+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zstd-1.5.6.6.tar.gz
  • Upload date:
  • Size: 649.4 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.6.tar.gz
Algorithm Hash digest
SHA256 822c4b6575dcd30691ebde6545425b51c14ec1b2e519f684ef4b0d0616921088
MD5 9d0064386b35172e50c52f11fa82eb7e
BLAKE2b-256 f418049b600d2948365da1d4fb6b2eb80332ba375b337a4439546c36031a7d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 22ff220179386432eb1adf2d82dc2963ce6ad24c4f389bb14c266c341eee79d8
MD5 a13f1572fbde7af7400645648cf32d55
BLAKE2b-256 97eb315c0e3b9d4d37e7737f29b52dbd94d0ef670c1f561fd31a438f4abf9021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3a71fe124b81fb0cd9c6be56e32e48a1ace3a679ffbf8552e783a573bddf81e
MD5 db5707bdb0e2745080b83286aaf4e485
BLAKE2b-256 b0b322cb33c77db31f311bac3afdfb2a2a4633ebcb7773ddf0cb7b885db9841b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3319e87b6ef80d5546430c382aabbe8868379c558c382c8b60f0158f0c36c9fd
MD5 6ea709b51c69a9c70756ea5837432a79
BLAKE2b-256 4319aac27694f847a5d696cfefdea289d783003756394231c1d20ce309e0b66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 81229d714f8ad7c9bb41e6e419c0f85e3e728a7e3b3ff2681e409cd3441bc253
MD5 3a212dce4df2a68544bd5f61c5be9fab
BLAKE2b-256 6763fc965dc8c5ed0a7ac1a93842430ba097eb58f7c66ae2f388269d12e15dfc

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 9c2b149ff5d9f2480322da249b2b4d2494ec3471c8ab5cc1abc377924e02ce5e
MD5 18a0db3eb061a1b499bf4d88a2ce7db0
BLAKE2b-256 7ed8c602c5cb54fb48e090b03a757754dc6835f3878ee05c932c7bfa26cc6be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 799348412bdeaa38d2d851c9c5ac01b8f661fabf26459077cca8d3c591d0757c
MD5 966eb9e2565ccb9d5fb8cdc23d7a010b
BLAKE2b-256 910aa9a1e727cc5a2b10921caf3239aa0e6b966fbc55b05499fceb25705b12fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a3be461a03982b53ab9b5a3090311ec9bc2c746f3729317e871d4fb5b2bf3b1d
MD5 78cb99c2fddae33c8b3208e4720c412b
BLAKE2b-256 873e3ee9990c9c72692d558c6454993a9863d591a3f6f2f611ab1d6427e086a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16df056b86970c390a984bcade4896187e84f6df56ec01e912680b0f27469f44
MD5 df9820c9697eb4925301a1a6952ec8aa
BLAKE2b-256 8afce3392a4bf5b643953602477c45415a9c9c6c5a767ee7a3e42b76034da821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e686d7b60b33024188e541e5e15c74562fcde5e4711eeff555b0ddf891e905a
MD5 ab00aa64c1bfb13c87747a40bb2bef11
BLAKE2b-256 45478b8bad41acbd08d761655633af760334f258fcd7c42c35996231be91a200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d560aaa5d54dae2c8a2ab73dabc4108aefd7a621b96936425f6a9c48ccb9d580
MD5 12a0ed916f64e4787033aac4bcb43ed4
BLAKE2b-256 9ada8717dce50eba418f7a018c40902ccc5a5007de8062bdb6c4cd81c63531bc

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 63a274b6b1186d53995681a9e8f9d70b8c686494f1710e4e57e1d001c5ca1269
MD5 5e312eb2e68dd0a45f5230614bb6011f
BLAKE2b-256 de3336f5cd0350c30e720ce951423008c44174f69b9c9c52ca274c7d971b33d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 4728fa5311ed2031f3fd305d105c809ffc61df9490cd1a758813339e75f6cd0d
MD5 f740b45773d9ed9086ece8efec429cce
BLAKE2b-256 e5d3310dd99e89ca87c2c5126583c051610b2716b0eedbb8f921e9ecdee2ebd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 cd0ed40bccd8c82104240e68b829ada8989c8eee1ef8db408d40212a71f80e83
MD5 ba3a5558d489e7b29abe30d92afe1d75
BLAKE2b-256 7aadc5eae8cbd689ad4695ff545a670f6140a64579fae2ce479fad38bf0ec260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b59f5f91f829dd1b6b84f10f2d639eaaf5100791aa4e1971517b12f1a5575a17
MD5 ffd71e941624d6f2df9f1f34a7eeb074
BLAKE2b-256 560fe2173764dfb6d0e0c3d38c23a05bdfa156b2b64fa4b8a00db8535a194ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db6285a76348d775d0eb8639d8ba33efad36aff37717bcdf052a9493f73a81ad
MD5 350910abee6ea48983dee6569680c626
BLAKE2b-256 6bdc52cee2511a696c85d4dafeeef622401f00e6f4e30a86d20ac76c14e6daa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 87c4e5777fa4fdc3aa909678552ceda4ca6a70c219a7c3c33e8d82b55f7fef3a
MD5 c1748855265764bc9df666e633fdf155
BLAKE2b-256 3611fe8f0f6aa7256ebb156f879c066a82d8edb4fd7bbf72dc7dc09c33adefe1

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b4534c2fa6e386f832c4413412b28eba0e28ccf7fc1c8bfa20ed369e16710824
MD5 c77e87d54d80aeae68207c2802fa1584
BLAKE2b-256 a611401c5fb747356365737280b2ddf7ce1fba43bd6d8da948def6f5ff5b7c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c377ba0ae3be52f5b91e8a11ccac719a137a219c8ed70ff9915819c82cdaadde
MD5 c5d70f6e544fe4218a93b6df1e272fb7
BLAKE2b-256 cd1d74976ab0624e713c7e81de966cd0f51d4f9dcef69571453e80d700ea3178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7a9957759b0403e8d7e37f513230359e630a69eb6766da0706db54df11993667
MD5 8b5ddd0372c027973a5464ee1e05f26b
BLAKE2b-256 a93bd831684259f2553b7ea4cf45aeeb8a86d79b3854de0044fe2c1e8001719a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cef2b7db5d240e1625202fa997f3fba9bec8fcdfc582f187dcc6f1dc775a9506
MD5 a5fa6e50f112bcb7324206c5a1a12a2e
BLAKE2b-256 4237154d2d5b7f87358d98b29304b966c34bc5798cfa8b4d4ed83d0068ed4fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 843e5f363b69ff7ac2e9809cda0cf67a0d34a56aa60e77ef5e44f4d3ea51d416
MD5 ad6ce9703ad5e0f8f2113a89cbcc8d49
BLAKE2b-256 95901c059e8d5f19358c5a82133ccd2fe8c2f5f646e651643ee21d8f8c153351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 00f6b027ae5a210f25b0957e93de8a99a9ff76ab9ef0d91560b55c446a1ecdd5
MD5 b71bc9b91edf0f852c204b7aa97f0a2d
BLAKE2b-256 4a293ed4116b859af9b82462230dc72a5a859125f1fcd6c1bd8826ebf4888312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 430af373a9bc5c5eea3c31035c2730f45f72cfb14906101ecb5fa38f4da946c6
MD5 96fd41d2e0055ff67f2c585aabb55059
BLAKE2b-256 77063253d6fda9acf587b5bf5b354ed1208d12e069dd8cb164b4724d77fa04e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bbe505184e6617918689d7cc4d8d3c11b0c3fb68c483e99ea09c68066a6c5aee
MD5 a94ffa32b3ba09d1842c12260ec02f95
BLAKE2b-256 3c9b10c604eb8625b140f3445f0884f6d36732fa88bdf9c469b1eca62967a345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 857f3a55841bc9ae4caacce49205fcdebac0a259eed3251e3ea84b3ad3e0c628
MD5 905e47dbbfd3d01d7cb9c9cfc967edd3
BLAKE2b-256 be086f47aa5196846e89d81f2e02278e3fb3d8b4cf1eb6544c12a670ea6c046a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0b23e070da44dc94b015f306045dcd7c56fafcb380c98e76e09527e7870b6738
MD5 38f2453e4d3e6dede123cf707d060ed7
BLAKE2b-256 4dd040ae64a3c652e1a05391c5d79a8b99450ee531af24a581aac152551003b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 564dac02bc7a8d73f84893ddec4be1b58fc5c719e77d96db9a446fb66f169461
MD5 579b99b295674d60c4631b647045b3b1
BLAKE2b-256 a84f0d9246c136f8d7facf858b1bc95bcaf44630b703d31b78e5fe96d424be3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2b9ee5f6e21f481f86f597e22bc1de1bf756bbadf109c7c29025d00dd099a2d9
MD5 e5a799bc495108090f54a9c838112302
BLAKE2b-256 7d301d655fdb0940739b9c918c66d7a40f1fd69e939b528f90962a79a22f625f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp313-cp313-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 e6be32b525bc897974ee9d227eea0c6915865fb238517b3858818c9c0950aa6d
MD5 c93906849a881f4dfec4babdc6a0c3fb
BLAKE2b-256 caa26c1adfc58d493009c87461f7cb368508b2aba086a2b42e2cd75cd7e15f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd3fa560999cdcafa62ee94714016c9c456d9fd527cdb0676c548f3fc679e6f3
MD5 fb5f2ad35ecb8d6d82dea2c530b1f3c7
BLAKE2b-256 77ab07e985a6f34c142d33568765aed6b9dcbdaab687a84e74a31317ffdc69f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 409b66c240bedff65173d77f23166e306db963c0d4dba49795aeb7562e7cb636
MD5 6248999d372beb38d6fe92db2e2bcf13
BLAKE2b-256 76fb3549b3502060ac7f30e385d06a0009b53bf1138e565805dd5b4e37020eb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf1a29d512497904c7b33eef7bb4ed52915976ce19cd95e696c27d0d46902c68
MD5 bb2dcf87889c3df745aef73835b820fa
BLAKE2b-256 8de40f1b8f49193740dcbf0b37e7201bea69834286de66d6a4efc3cdd7301784

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d81ce23a29ee8c88069c24940871f62aff97393e6758e86457580649c4d860b3
MD5 f180c17a102dd5e7c8911f56feba191a
BLAKE2b-256 37c4d426bed69e38ccb5ba993464c183175458a4cb582c7b2739266973c18aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp312-cp312-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 bd32af9c2a69d46f74fdb5fdc07b7727d3941b9a6e1f5484cde457ff87f75fe3
MD5 22140556cd0df17f25b3f3f93a476c51
BLAKE2b-256 439138c30a7b8a3481fa1986a47969b83aa6048c790fb37337398a037fad53cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1656aaef59618a5aa857ece2ee6d5477dd28603d3eb20de96a248caf2ccb305
MD5 96f1b9df9f442d0c00ed4e50610be317
BLAKE2b-256 db8e3f24e7a785227cb1f33097aeba17df57c686d25bfb07208e5b874559a571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c960c16cbb76a6db373b91be6d7119557c0d43e19262c0b4c23ac1df571261e7
MD5 20cff524f6c05bb4b2c7f86770891c12
BLAKE2b-256 c1380f158541112a111ab91df5d85449674c981ea09d7757150f1e4e6b0a0664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 72d20ac19fc603c2a00090117b37e4ec955bd9905d2db1755d774e1666731537
MD5 a9f4350671d4fb0af8bb4ebf8591c8f8
BLAKE2b-256 2eea6e6ca121f9096fa7b0cbc5dd9b73a37babfd5d410bc6d6f6f74256e0fd03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1116c267fa744c2daf90bc76006684d2c42a062cddf4d99b311163f445369bba
MD5 7364eb1caf9e4bd5f400747943434165
BLAKE2b-256 caff4483079c6eb855bcfece6c615fa999e93624ea23dbed587f98afad76ae06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30eb085f88f61e60c73f9d11113c20f070295e22bf35fd51864bd3ce625d7256
MD5 49c9fc2a3f93ad6e5883e65fcbed0ee3
BLAKE2b-256 178aa6f893241f11f238aa31b4e113b8f148e32247572e682c7ec607e04abbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a460199a067e615c223662f06613fd6c66c7cd9cac0b70c55409e85e9c51033
MD5 5c6f4fcc529b14bb97d8d43a3ac1175c
BLAKE2b-256 aef4a392f735b32ae6e325074670cb1a29d389ea83b1bef79afbab2c16b68f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce60da3454cbebe2bebf8aa62a01071b4c16d0567f147e8a1341728860ea9b39
MD5 0d093551a2ea16e5e3f0af0a552b735a
BLAKE2b-256 19ff3551df116249cefa58c5551df856ba924f2ed0bbd36cdc628ec82ad70d34

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 378dd424a4f985f1d4bfa8193a67e0b4ae2009ff9a5d63803f1640c7dda5eed0
MD5 f250fd9fbf1636f9e1683081ea47227b
BLAKE2b-256 e229cc018d5e42e547e32d9d97e457d4c4b4a22ac4796e8cf7094ebe7652ceeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 32edabb3e87e21744bc2ed8af8b9cbb819368c67dd2fd8dd92dd2b0867fa1250
MD5 19a9ed0e511bbeee1b54c9dc9d24e573
BLAKE2b-256 3c736acca7f3e6cb5f9346bef05a652ffb9d9780bb6ca7dd1f5d62d96484a7c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 e66840c71055feda3c4586b704c9896875424b2b3c8c410cc49141cfa3b38266
MD5 a9adcb8ba86f311ef5d5134110626b55
BLAKE2b-256 715e1e9b4435ed4020308217592190172a539c9cf74ba35e8ab3a5452f4656cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 180ed22aa90eefd9ed2f01aba36499c8aeacd7248d4c604fef224e81b1be8cae
MD5 2247856085e79ae2a82a7d887a3dfc6b
BLAKE2b-256 bdb4c219689b9ec16a75d1a1cf5b396fc0ddaada850a0813b497cbd91267404c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 885bc1ae8c84534f048a8ab406953811805d94b79d6df0a976712c53bc3c0fb7
MD5 de132efa9d7f08c1cee2135e80104331
BLAKE2b-256 b07900a749e37bf499ed997e07e06e10a2a6629fe5ef4960e5fbd0f5e80f669e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 754d6902f5d29d2227cdd57df0b717800c670a022dcb924b3254f1c9a529c323
MD5 180f63e9ff63cef83d0de1ca80ee47dc
BLAKE2b-256 4d2491969b747de9dde083f4db0a36f610f69b8e4d1012d5b17fe7952e375f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1fbdb84f89a20fbdcc340a6570bcc12f62f5a5ec858ba109186d8631130b88a1
MD5 65f07dc5274425afbb94b3460d2937a5
BLAKE2b-256 7f6226f82c0b63597725d29e08e06b07934165e76ae361f3d1db4ee968345a5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b1b34215a09db02135363190c12e1425a0d854b5855c97ac8dd1990dd6f8eb9
MD5 306205e4f2fda8d47a38712b25d4123f
BLAKE2b-256 b3113a89c34e5a00a9945a25decef367ec0efb016996dfca51e7f7651fcf4d4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ae0e0e17bbbb96f02a52dd1461fdc8bdd74149a5022e1ec6eea95cd3c9200508
MD5 4b4cc99688d45def2769ece7c96907d4
BLAKE2b-256 419ba4388bcaf260cd4d0c7b111d4a8176551d5eb9ab6a29dd25597b3cedb2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 071171d9603b6322ccde88ed45c95c603cbc38744ed40ace1c47339bdc968269
MD5 e356970d2d15331fbb5298b1b10a529d
BLAKE2b-256 e7cbe2321cf982655e6693ccb967bb55829142b297c4be0166d73030008c402e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5445da737fba9bac70808776e5694c1ee8a8e0b3eb72f35d8c55f299b00700b0
MD5 84f05cc08eebe61657578ddbb3b5e901
BLAKE2b-256 80ac72d7a1725373de5a6c95568fc958b6aa1786abdafa7285db8a49ba9dbe95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb08ccf9def6036ac5689f52f74e42090be89b341137058744d36d8078d3e55b
MD5 b26a6d575334b3e0e9f0d434828259a7
BLAKE2b-256 a7d001000e359fcf91ae107e3db54f368ea4a1c58219d363f622ade927b40539

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 782db80494e64e9196a894aa59859dc7618e6aebfa97d4f82a86997f6567aec9
MD5 c4342ff8ce8d457f0b1268e04124e4f0
BLAKE2b-256 b0de61114d5b3a94f575372b2948313e06803b2ae6ee8fa279f4b1131b7d514d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a73e4d780f85732a5e4c178a0274fb8e6c651b1a32d5f736085f473b1d467bfe
MD5 979d635fd89d1f9af08973c157ef17c5
BLAKE2b-256 a307cc4405705b3fbbe5450a7ae739ca822090eb01d612ce8c4f38a13d4e0048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 2431da65ff0053bbad72e095cfe1574e09bc130c74ad4991658aaa05532c43bf
MD5 69297737b903aee7ab1c8a3cd4308082
BLAKE2b-256 cce30f519fba256dce8bc09453f43d659714e12366a9d7dcf4728879d5fa4f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 0f342ea25801ec07538a12ae061e228a303783f4bbee6510527d6e1540860c28
MD5 a4bcd989d2dd9746fc300e44a4865748
BLAKE2b-256 ac094c8c7174b5981c1ea4ffd8e895d09fccad6fd39df94b97956dc8ec6e42c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 02b6e6955db8d2dd45d79e22b4b7361d065ac26303fcc3450ac161e70707ea31
MD5 5d89403a8527655c80bbeb9984399dae
BLAKE2b-256 d4ac52c441310b2e58dc83b28b1ec334eecdb1643f0dcfd3e7568bca6e6215f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4a6dc2e49f944b0c27a77d808e35c79dd3e6f190ef4b34a4aa4d82760d6039c
MD5 84621fb3e2f52bdf51271d2f692bbb86
BLAKE2b-256 7077366f8d436708c41f3899dd1eb22726ef3b8885d82d261a1b7718b20b5060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50804de951b7555ebeffdf5b078c5195637d489e0e9c1bc4601469ddb1f1f91e
MD5 6200adb1f13930b89dbff40a5cd26bfb
BLAKE2b-256 dff2deb84e3226d8ceeb492e635242aa9c56dbfee1f63e8f00d42a4863562b29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4ee5e6d72aa76033ca1068cc5809f23d7bbb3cbec355adbb4e77d51154df1655
MD5 c506a42f49c82415a07097bd56f199f6
BLAKE2b-256 191910c07a670928fc127c87886321e5f0c1b38e84ab9e607aca57181877ac9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7ec639ef1f9401867d7cefdb9ff8f74f29047b66f1b8f01b65944219266b6555
MD5 98d4c7691abcf3177908db84e9e20cda
BLAKE2b-256 10302ac318750f2728975faa29ebf00e34cab5377d9fd00e6b09f74d6fe7f2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 945b4f52d51cd9356ad73b41a17ce616a95298c113731b5842684904c31c8c62
MD5 da3a25ec317d2cf0c3b1c8f5d625ee0d
BLAKE2b-256 3d0c30fc2ce7e085c3e9dd232e1a5e5d07f0e97363ea268453e69d349e476f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3794a6a0f62a3774a46a4b4403d91f7269a65bf753da81d7193ea1265c39fb66
MD5 e4450f8899a0dc9766f8f6528398d80e
BLAKE2b-256 ef6203af6895f17005fd40936df290091ccd90138b42126cefe38d2ee7eb5d9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 453db892d674b3597a21b45b57cf3780c2806e19480e60937308c57ebd17ed8e
MD5 276affa8ce8057ff81a4a46c9c054e56
BLAKE2b-256 baaf79586b67395fc84088107d0ccb3e5468116c8efe9e7320a6ea933d4214ed

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 168278996fe4e14e0b267294424991bfd071f2fb789f83be360c3af1e31947dc
MD5 c1475eeaf9509de8f32471362393a8e7
BLAKE2b-256 e7360e317c9756387a057317c9c84c9728b210e1bfd1da25003f3294d07c2200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 4907c7187c2431ca17e239bd7e2d4b606d0b7b40aced320ea383e500257f37f0
MD5 52f64a0cb4c0ce0d195657c5b26b4f63
BLAKE2b-256 2e1a2db17712d6ba846af06fb13c80fe900203ec977ad7c2b1f7fd2effa7c54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 5d4721d974fd6754b49f3d88eb459bdc8129fac76d4bc16165bd09c70f8515d8
MD5 a0dc7c6e069c165bc53eaa536615ebb4
BLAKE2b-256 4a10ea0fcbc910bb9eea5c4ffad439919d290f5d88347271db018e0305891742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 b0d81d4f1e52c99df8e75f6ad5601a49d318f00fa2ecaf4ccb6613b91c564707
MD5 2460f19f8b094472eef8f9747bd030c3
BLAKE2b-256 ba2f5d961837f2fbf3ef370ee0be986d66167d0afabea5a9825772029a351922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aade23b07847ad25781f015da5e8b42514f0c182536c5cd83e7de3f9296c56ca
MD5 0d9e97556c7c16c4368c00373df95a1f
BLAKE2b-256 8434801f7f36679b4587db589ee4b28808f1d248a824b4a0b6294208482b06fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f0ec8bc4a132b1365690535c7d37bd2dc57b437a5ac5432bf1380edfbefed9a
MD5 acdcfdb22fef06ee6b00f9d7801d2546
BLAKE2b-256 446233fdc2c4d199a33f6b3059d5e4b130fc43dd29a0df817eb62778e0b505a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 22533fce2c470a533a2ce43e1b3e6e322c7ebf5108ce982a8e6c9828e414b96f
MD5 079ae304bcb4c37a935524da98a9900c
BLAKE2b-256 efee568cc6c421f2e00d06563e8d23cb1e806b7e3a6fb5d9f5ee3b4fcae45a0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 76666fa5d659f424d47689d63fbcce662f4631ac2fd821f4e300c331dc992c4b
MD5 a7a6fa229207560b37c8fb33b4920092
BLAKE2b-256 ca61b032e5f70d7e077fd0001d341bb780a26172da3c877e1c7c8518961b4cb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf02fdc39d49c317ac8534ec58369d54f208ab3e9cfa11c1da06fbae3bbafea4
MD5 7db3d6178238b6695c6503525d083168
BLAKE2b-256 431cff35d02263525050994f208869900e91a7544072a5d4e00068a7a71dcc96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d63b917696d2e53e88e547d10300ba2eec5114f728d5b391d05f9c2d57c1a71
MD5 5b17b9dac770264e262c5b5d1f6edc27
BLAKE2b-256 bc02cbe559d68273124cec30352bfdab05155e2f6eb168a4375f4487fea88a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6f481c11b3cc9961bdc08a146af1a318fed335af1e25a99e0a805f4ccdfe21b
MD5 e0272901b010aeaf09224ab6609590ba
BLAKE2b-256 3c9b4e9050d0f19cd6866e61841cc56fe237f83d7fb38ec5aa0de0785c258280

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0705658cf5ecc29dd2e512fcd21ff88c4c0607e41861cd916a0ab36dbde35ed6
MD5 07db74f40873890788c2645c7e73eb79
BLAKE2b-256 5e61c4f8adeed414391d22afb41eb47ba000923980ecd53dd65af1ff064ba2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 1de482f9f149ca6243b9d72a1ef02d71f3387fc89278b04a6ef91784d59c1d8b
MD5 6a6d0a130fc651318eb40b7068be7a18
BLAKE2b-256 97aa4c1f54288f31a8144c43c0bc40da3af608e77c61cd372d80be86fc554183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 f5c96c22af018b7940cf64da1e8a64b93ed180121422fab60d17eae5a6de5895
MD5 29f6ade17faad4e725eed0c08937dc5a
BLAKE2b-256 0515578a507f07a2c3e5bb6d64eee4bdf73606a01c932634496b10d3de9b30f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7818ac3e9e40317999feb198e6e85e7209381bea117f2bccd661575ca3e9ec4a
MD5 027b933d44be5b838ae2907ecc1c109c
BLAKE2b-256 f3740941a6e33d74e0e454c5f2f2fe7d52886894689333ad32dda3b0a10bc461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 3edb2acbd8b322a091b258904412bdc6c3cf088b206b5b411e3d6773f324a3f7
MD5 d6d3b622fce38a468cd109303152e5c8
BLAKE2b-256 ef636d11eea638089709ed0e3dcf17b26d5eddf11fe01a14148af6e9be4f0933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf83db57bf2020ac609f65c302ddef3a46285157bd7ecd8883e482e278ba0b06
MD5 9152c0b4614c6f0677d020365611c25c
BLAKE2b-256 fe6785563f409d1ccb064d430f96d509a877aed5b195e26e6afb33f5b7a57428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb06076c3806df09c80cf81591e23f5ccb13c0c4db1eab882eb7eb8a50cc2efe
MD5 f60fe852ae80815ae49f6a750ee483e1
BLAKE2b-256 27448e40e2acafbd0e7d95480a973c22b3ac5cde600d7ce58de84dbcf0dfa0c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eac3bacff89f7266e1a24c32897a3a8d19543a41d1986d4ac721de20ce161157
MD5 ac2667ea6e2c1f7a73fe74496b971e41
BLAKE2b-256 0a5f3485b53028c3f1113c4c11625c89f028e3fbaad830b73fe9eaed4535a27c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6e83eff7da9568f2e334a78da8518aa7aabe0f2ba7a4badfe92036dd1cd8c3db
MD5 f200e38f0ed93f0a9c17a2a288e02aa9
BLAKE2b-256 731c2e0a83df72106467e8d01b2b07054ef613c9c98ca8db085fb4db1f89d5fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 567b18eaf06b4d983db8a14f7a7eae01370f0a4f48c02da5d546af0e42d3e84f
MD5 a765b89fbf256de6b69968fb5af945ee
BLAKE2b-256 08dbb516e2fbf6c61a3e211a9b009940a3d31bcfff0a6e46cbe7c42548483266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d076bab25f2bfdb0b9c2cf786e4a18d6ec2b36e1525c4881007de1919f9d9a90
MD5 f3cce1238fa6dcb2eee7d999a88871dc
BLAKE2b-256 47200715914bcc1c3ea85d2e53417edd67ceeb6caf0a0bb1149c3819fe03eb33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec7bc851756d06ed259a9632b53b3510fbcc742280a2d8be8073aa622d500637
MD5 b6402a0281f1b053c6c964103239fb07
BLAKE2b-256 8b7426ab6c6c989e52e2e6d2fb72ca7de32d028ade1875fc57685709ea7c1b8c

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.6-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.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 5890e3b5a7c7817f6a29db953b24b00d41d6754d4b7222484a85349365308655
MD5 870ec4188582b3868025398ba38232c4
BLAKE2b-256 b9b46220a8130e135e3734c6d91c919359edae2a42f0334893345c7634dd75b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b2c5d18cad1f3f7e6651aa709ba34dc3afacc7e84593bdfbdc2d11dfe2c387f6
MD5 380ebcd9368ba1698b4bb4c2f15da209
BLAKE2b-256 fbd189f56b6520fb2bd27ac867b7842ecef21769b86b4f3ab551fe698646ce6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 93c901bcc5b04c267a30931dfc03f79c6b26b0e81ccf184e19ce262803a1d006
MD5 d7c6ebfa414f3c7591280802ee484411
BLAKE2b-256 9251717b4eb65e90e7807437ff255df8511f5911cade80af76497a6dd8dd4a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 b4a74b5afb7d33e4c79739f71af12bbbf74cbac09363c8e85b1f8f7921e2018b
MD5 c5c2d1c71d8d508d186326545edc2cbb
BLAKE2b-256 85ef541a475fd6385cb58ed9c9ba51b15d87eb18c6f0da7789614cf2c0d66359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 653a9fd53aef8506336d42e56ff5f953abdd1c83fb35ae47082f9a2c7b138a85
MD5 3cb86ec8c2c956845eef8403cae5edce
BLAKE2b-256 b28c10683b4a30d22af6367d1b7959d613b3d63bf0c739462c6e55b068690f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf624caf6fde090c1eea0db2accc57a5cd4933b1f31a653ada3aea4d3461fea1
MD5 2b60b7d4e83adbdf20aedfedd0f640ef
BLAKE2b-256 44376790619e2cb4c96e76e85c96e9323bb050228d99fdfb7ca563fd539cfa6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7835e28be5c659c53fa369662053834fb76f7a36cd8df41958110d4cd9d9998b
MD5 25637f6dc86008aabb929c40f47619ee
BLAKE2b-256 79d2ce5d84822966d822ef72704f16ef3f61a8505a6a4eef618d243243e28396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 97a716b8d65b679abb87a0a50e8bb646c412fbb5aac84d40497907a8b50877da
MD5 c4bc87ce73da1bea01efe3e21d1f1d12
BLAKE2b-256 f7ae991f605794495e912859e7492bca79de8da4259c370fe3a15963681a3f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp36-cp36m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 82bfd575deb0af132c5ae505b16b37c2ed00cc6ce7fcda4395b7c41084bfbb82
MD5 87f8c52daa7cda01d5db980b29db6ffd
BLAKE2b-256 ae6cd9118910cd352ba2caedad19060d8118740c64563a70e8ea5be995331cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp36-cp36m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 089af6e70bba8ee88015bb4752314687b503c08c71b0266f7cddd6e8f0335018
MD5 4dd908cdcdeba818025d09c8aed7259a
BLAKE2b-256 1237d26b2cecac73aa45233338ed779a1593365c2e9a4827f906706c33a1a16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffee2a3cb4be4d74cf08875f1ea7dbaa6aa56d2a6ce6141d678cecd1ad76f7b2
MD5 f41e36f7cd1e14db75716a064267e768
BLAKE2b-256 4cd75832d79f8401cae2ca702429a0dc7a09dbeb3bb94241e65fd58924e49c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f72931313ea491e4b10b3b6252149258075e5a11c2a77fcc9dc371ac804575b6
MD5 13c8f88b4d4e1113e1ad5625279ebdfb
BLAKE2b-256 9c57fd6ef495e50feee509134e4f9f8173b9867a6cf2fe271b315f5c9be4c64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 591920ad06037803b14422a4bdb3ef50436b2fb625750d9984c25a40a9a32149
MD5 c55afcd2aec59e522b83e643be1ff59e
BLAKE2b-256 fc0d26ef2b041f426a28f05415f777c99adc3f08741b0101937ff650a41dd81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68e024604e7df3e87943515789eac6429adbeeb5f8354395f9c3bc1eaab238e3
MD5 d2419443133ece46729b706d306516a6
BLAKE2b-256 49326bf3e4223b6a63d8dc1bde2291ee17b70f64d3d3a376da7f6902fcec3ee5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a92c8435ccc4ad1b169b2dc006bc0a7d026ff1f3045de7d62aab71f4b5c72d06
MD5 8afcaadc172c56e07eb56d88bb25cf17
BLAKE2b-256 04ac69c5770ee890647f9396da80658ffdb14e7a11ccf0df26fe2db652911f63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.6-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.6-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c37e79313e9f70dceecf50ccf378b3d8f1201e05ad08dbbe560c963c569c70e2
MD5 4c7e8100d301bd8ce89ce0f0a99d9145
BLAKE2b-256 fd939e8f602bbd4fb8add65000d71fb4baa431dd6e9ec485574d3f5dda939cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp35-cp35m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 dcc9f29fde0da8aff7f79b55cd738d2408fc263d5d6d50267e0c56287fd13f5f
MD5 6b6e4351689cc0868bdeca1761e834af
BLAKE2b-256 adf07ca879b4e5f3260c9c59c490c72be3508ba30cbf38d884ca1de6c3887b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp35-cp35m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 12203da9c674ffeccfe83b010f99d6f31625c50620b37780dec9695503556d19
MD5 c1d3a3e458b28c5e693d105a633b7c6e
BLAKE2b-256 d7591cbf5ae37bc77f59ccd044caa7e85fb1aeb640cf33c97036762270fe2039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9319c8aceddc35cdc5e31aa49485610446f545983e2d2d6e073d226b7d612ee7
MD5 b6efabcb2b550bef55f264e07fd65aa0
BLAKE2b-256 edbcbb2bd0c7572fe4e3c0d9ee7de52592061bccdb94dde9899f5fd582230af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0b23259da33a6b6eaf9d92714973a8457d8e9d253f6bb0cf1fb8e0f22086bf61
MD5 96583824fb4068c434ab6707bacb98a0
BLAKE2b-256 31caa132456ab64724f6aea9592d179a9f0c1c7009fcb722f9c834f50ffdc873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 138e99e4e306b50e63f4a64542433eaaebe830ac0ac3023203a9f6e387027244
MD5 5feadbfaa5ab410417ccd7dfbdf92d8d
BLAKE2b-256 37767eee6b000041940b71e1cf1223a09dd5fe48975147c0bac3c5ef337574ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp34-cp34m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 d500455ef739622f000b09de0ec44e8a5890e2ea2209cecb4c7247594c96961b
MD5 e5da5c291e9a4a46903ea9110ea7f918
BLAKE2b-256 080c7074bb0046cb98a69cddfb5376dabf276cf07549f3f01d829ed5d2faca0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp34-cp34m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 e7e738a110447bd3b7656922b16eb3d6f7665eff0f970bf152d69a700a4eaf26
MD5 bd400e3124bb6aff0bd36050df57e733
BLAKE2b-256 a359c133f3219d809d52a07027ed45d969b3fc1e53fb36eb2e37e5704f552488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27mu-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 505251cfea059b5ecd36ed94ed954c5b255b71caa060142caed783f64a520f65
MD5 47062d54ba0beb0bc93cc73597376967
BLAKE2b-256 dffb944cadabe90cd152b3b17ae323072b05d35b275d7fdf41f99ddc28f789d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27mu-manylinux_2_3_i686.whl
Algorithm Hash digest
SHA256 c963a410098863d59656ee419d5e8aef3ce78a03f0910200cf37338012ede188
MD5 12a0d0f3c6b000a3c0e4c5a994f683db
BLAKE2b-256 ead3eb42cb100941d294ea3fcd517433ced3c67617080ec3ec453c73c738a98a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 563fe4a140ad03fdf1bb11db16e812981c24ca7f77e10d035f5f7f94ca204b5a
MD5 9fe32d11f48a21ec82383308bfdc1e01
BLAKE2b-256 27b814693cf09ff57f52da542f58fa4d3cd0ccfa4ef2df63a84d05abf69c7f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 30c41003db353cc986ac7c2f9b36c9adff984863f000ea4d949a82f35a6aa02f
MD5 91edf2ac9e02e6ccde2bb4ebd50f1ee7
BLAKE2b-256 3ff4646f57a615cbb92c96a516c59f96a8d62efc40ac943d5be47e96bc46b7c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c3aec55007b3df7fd479b1deb0ea20eaab33dbc15bd17d85e7800c226d1d8ad
MD5 c1f5f045462f90e7fa05c1ab2d0bedf1
BLAKE2b-256 c84515d484f89deef34bb4903f86664fd92fc0c7f7c264137f0ab3346458a906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac1430413934f75c3aba36e2ffc056013510e939049ab53814523a33ce33cd2e
MD5 9413aa02b16433304153ee13bb8d8aa7
BLAKE2b-256 df155bb3fd5bd682f20a19c2d93c4cb445acf705b62c66e4baea5c048dc43a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.6-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63f881f77fb740b87ab9d0866cfdd1f7feb09d5b63f65493f03130158ea36541
MD5 7016ce717a57153aabb95d2508d16472
BLAKE2b-256 fe0e9a952654ac2f2d2acece2b066985cb92f3d47aa3e737e830ec0c98f40657

See more details on using hashes here.

Supported by

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