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 u22

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

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.7.tar.gz (649.6 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.7-pp310-pypy310_pp73-win_amd64.whl (160.1 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.6.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl (198.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.6.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (249.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

zstd-1.5.6.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (256.5 kB view details)

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

zstd-1.5.6.7-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.7-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.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl (198.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

zstd-1.5.6.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (256.5 kB view details)

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

zstd-1.5.6.7-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.7-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.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl (198.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

zstd-1.5.6.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (259.4 kB view details)

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

zstd-1.5.6.7-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.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (273.3 kB view details)

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

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zstd-1.5.6.7-pp27-pypy_73-manylinux2010_x86_64.whl (259.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPy

zstd-1.5.6.7-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.7-cp313-cp313-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zstd-1.5.6.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (209.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zstd-1.5.6.7-cp313-cp313-macosx_10_13_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

zstd-1.5.6.7-cp312-cp312-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.4+ i686

zstd-1.5.6.7-cp312-cp312-macosx_11_0_arm64.whl (209.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zstd-1.5.6.7-cp312-cp312-macosx_10_13_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

zstd-1.5.6.7-cp311-cp311-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zstd-1.5.6.7-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.7-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zstd-1.5.6.7-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.7-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.7-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.7-cp311-cp311-manylinux_2_4_x86_64.whl (245.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.4+ i686

zstd-1.5.6.7-cp311-cp311-macosx_11_0_arm64.whl (209.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zstd-1.5.6.7-cp311-cp311-macosx_10_9_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zstd-1.5.6.7-cp310-cp310-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zstd-1.5.6.7-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.7-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zstd-1.5.6.7-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.7-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.7-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.7-cp310-cp310-manylinux_2_4_x86_64.whl (245.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.4+ i686

zstd-1.5.6.7-cp310-cp310-macosx_11_0_arm64.whl (209.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zstd-1.5.6.7-cp310-cp310-macosx_10_9_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zstd-1.5.6.7-cp39-cp39-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

zstd-1.5.6.7-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.7-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zstd-1.5.6.7-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.7-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.7-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.7-cp39-cp39-manylinux_2_4_x86_64.whl (11.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.4+ i686

zstd-1.5.6.7-cp39-cp39-macosx_11_0_arm64.whl (209.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zstd-1.5.6.7-cp39-cp39-macosx_10_9_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zstd-1.5.6.7-cp38-cp38-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

zstd-1.5.6.7-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.7-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

zstd-1.5.6.7-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.7-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.7-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.7-cp38-cp38-manylinux_2_4_x86_64.whl (258.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

zstd-1.5.6.7-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.7-cp37-cp37m-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

zstd-1.5.6.7-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.7-cp37-cp37m-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

zstd-1.5.6.7-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.7-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.7-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.7-cp37-cp37m-manylinux_2_4_x86_64.whl (245.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.4+ i686

zstd-1.5.6.7-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.7-cp36-cp36m-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

zstd-1.5.6.7-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.7-cp36-cp36m-manylinux_2_4_i686.whl (259.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.4+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

zstd-1.5.6.7-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.7-cp35-cp35m-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

zstd-1.5.6.7-cp35-cp35m-manylinux_2_14_x86_64.whl (247.8 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.14+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.4+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

zstd-1.5.6.7-cp34-cp34m-manylinux_2_4_x86_64.whl (245.2 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.4mmanylinux: glibc 2.4+ i686

zstd-1.5.6.7-cp27-cp27mu-manylinux_2_4_x86_64.whl (246.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.4+ x86-64

zstd-1.5.6.7-cp27-cp27mu-manylinux_2_4_i686.whl (263.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.4+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

zstd-1.5.6.7-cp27-cp27m-macosx_10_9_x86_64.whl (258.0 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zstd-1.5.6.7.tar.gz
  • Upload date:
  • Size: 649.6 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.7.tar.gz
Algorithm Hash digest
SHA256 b3fa8f6bfb5e116b950ad633edccae4f65055a213ab4c00c1d4397f4b257b697
MD5 99b3697edf7cfa455da09e3d124e369a
BLAKE2b-256 92a75f4c6c2a62dd88f58133e333af1c251dd08f98d48445f650889d85e43b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 95d1abeb4e68f82dd591c2cdd6658ec120521c0a1433643f5b209f2d0d27fa58
MD5 301c13fcb1d6692d5b336e302012959b
BLAKE2b-256 1da135f8c2f3a718cdf8f1e3318a29f6f691ee5d83bfe4df38c8b112649acd82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61e2fa10380b4b0fc28927ca2ae7fb3adf4fabcb2270f0b5f4c19d5be6af4890
MD5 c749dc50818e26986866b124bb4b7319
BLAKE2b-256 43fab10f7cb4856f7f16914b99f6e02642f20ea025c17aed9abd732bd7829994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 38044c539b2bc2bbc1a220a1dde5707ba76459aebbb9f90635b053d34fe6d09d
MD5 f826eaa311e4ea32030448e9076d13b6
BLAKE2b-256 de38f80f5a5ccd1793869a043da59bfb0566dafb35de147b17d9f28e6d2163b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3969a590c91a220b8a3661c9873317331cb17869c8ee7416eb49e7bf4a65e86d
MD5 73a9ad1178e820ff7c817780afba6224
BLAKE2b-256 235ff2d5ab3de4c1e8dd5f326aaa5859646643e8c71cd707b87f1eed58ee79fc

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 2d17736f22bd6c32d0faf59b4349ae42f679ce5dd65e87e5b9d4f55ded42d5d5
MD5 81352f2491412e38e10dc3e3fca2e2a0
BLAKE2b-256 ce5257b7bfd2b4eb0e184743df1d54b7af841c56924f94573ad1b01371bae1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 40e9e1efe4dec682388ff15577dc7f20b60bc1d61c1e6c0983e18100868a5ce6
MD5 042925c192e711cd9ac6b0b37066c881
BLAKE2b-256 7c3cb5b2664cb87ba2b8829c6fbe742b41f0cc112285b4f2e56969fcf4066673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 c4482db818dde7307c159f1e4651ae91f456d565266f75185bf3f36bc3fcce11
MD5 00281c0b630dd0656dfdbe4b10a96bfd
BLAKE2b-256 3c5670140d946965f81264749fde3d5d1884f7fb375c137797dddda1b5670fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 962a957ecac7b37691db1a74a1145be3c61caf53ab5aa5a0efa499c4da7f83f4
MD5 d1886f7a33e66f8e78805333fa3aa12a
BLAKE2b-256 feb70e9c4e9f1dc4f883eac3707404bc02f1c1feb2dd4fdaaed34138f8efeaf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9ce9e30ed01b9b068290654956731dfc1cb001fa14f74a69e5a73c2ecb05e294
MD5 ca04b061c40f224b1d7f2571e7075008
BLAKE2b-256 8cf3431e701ee4f31dcd35ef9af4af5ab791b9c63150210b0022bcc0e5f10475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 94ada11c185146691e4f087208de52198b454df896c4ea53affa5e141e566a01
MD5 7f989a4ee7f57d0927b963b05c37d221
BLAKE2b-256 a2d9eefcf6431f23f9fb2ae637c34a65f997f0578569aed49a87f9a3fbffd449

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 bb5d334a520c3c6ba55ffc20183a954cb6f381f962533407dd03b48b1cb3b7c8
MD5 d211bef80d5d4045f27a3c9379857b79
BLAKE2b-256 22d35a4373c4a6590f9526491f2d946252511b513fd4099b64823aaae759913f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5280481f5c0a7d69d8cf53b8ef4662253504821a9b3bbc805603ebeee27b92a1
MD5 1fbc30385d025250bea6625f2819e161
BLAKE2b-256 233189259ea67feb3e76f3e60500598e8b86dc62263d4cacaed885d804a27916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 85ef25a742aa7ade9a188adb372bda9b83bad3967597b7790cc1b1e256a78e28
MD5 a054afe7f114eeb93b47a53c6aaad136
BLAKE2b-256 4077117dbd413a4220b23c5ce19bd4d9f320a30b113f18f95206b933b21b02fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8d7952bedf71e2611bc302d272baa503f32bb3dbc8c2d2bf94ece99237c359e
MD5 60ec1ffc249efc24d7e19de7a0239584
BLAKE2b-256 d5a98f8b049a316e6a0746aa34ca8dbef26cadadd01c2962db29c2a86ac8dd3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 096d1cd552fd444497fe0de3a56895f3ad7deceaf84ee76b4b567dfaa378a85d
MD5 7a9611b0b2c51297ea32d5b4b9e1f3e6
BLAKE2b-256 cd4fbfa87e1d1127057f5bc03fffcfb26ee5339192f71da753aeb988c78d3326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ddf3192dcb503fda5b1dce4ae2f75f53229db0fd67ea7eadd1f1e1facfa4a5a9
MD5 3024b329e9c8f50b4ab2a358ccf11d36
BLAKE2b-256 f7ba748d71f4c720c7ed5677a4ba9fba3cc433b95a560cf99bcb795811651dd5

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 ac9055e67bb15e37787c9903c398b727cd4e48b049e78097ff111381c7ef6a50
MD5 5d9baa0e4206638283af9ea9dc84bbc1
BLAKE2b-256 21fd7c154b71da562153df821d1b22c7cbaac93f3a98ccfadbc40bf4a659d79a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 4b268320edca6347e536b4640b4108c0b9fe534207b8b16917ae464b62770543
MD5 5c2f4b6e96edf9a622c7b630ca09d464
BLAKE2b-256 1bb588772ff8bd7403384f9ba2221c239c4e635b5a014a15c9b2e94e56aaf3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 6071c2c756222ef648e744bdc71222f8f348a17575f54cff445b81e4dc84e665
MD5 86917266d733e4a778827a5a4b834bd4
BLAKE2b-256 f632088f4f6d9335be920b963e4c0ff57b39ba20de0d9bf577169ea0460f3430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ac1c5dcdb3ddc1d83eca4c7433661020ca6cf4bf804b1ac7492ec4a9840b7e3
MD5 bb31b294606714fd63c9d4c834a2b2a2
BLAKE2b-256 38bbbbdffcbabff74bfa1a0e55e4caabda317c0aeb05a982699a86bf6a298824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 276fe40913fed9dd25d6e4ef996b33b86c7cefcf76c2c3375870528e53fed2a0
MD5 d2e8701d8b6eebed4c42a97576d26829
BLAKE2b-256 f23fa14d70e9b58aa435cdc5344837cffc32d26def3cd0ab188eedcbf35bc9d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cfb2f782c5e7e9aceffe7626e036f10fde76c27742d1a67f3a9bf68dce14af6e
MD5 0525ea25a889031c675e930c3a6c31f2
BLAKE2b-256 e0cb4a97c9f6690d52298dec47d032d7abc505822b8f6970d3e9b7df1864727a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4507a906b3fa92a63620193b58ea74f2b217b8c94f380989e2560aa8e6f1bf6
MD5 7a84d908f36d159886612db634ad60be
BLAKE2b-256 d299db3563bf48b2a7a09ebe682648953163761480a95b84a0000b428d55475d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f5810562b0a9ae9adc10349ca49fb9c2d6b3409fef6fc06a2170e983b48a872
MD5 3fbb51229ed7f7b6f091bfdfd7044c4a
BLAKE2b-256 c7015be5d250977f84d6ec0d8fa5ac3db6974be5a3981b40fba3d2aa8df649b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 810b64bab8c4223ac65e69fc3f0440f4b531b6f85c6ef26c28d38132e604ebd3
MD5 21411724320ebb80ba5cb72c3fcd2257
BLAKE2b-256 8baeafb0fb8bdf2141d7926ec04e57dad5d7293885f947258565abca4d699feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 48b6031d6a0c0382f3543895f9876d4582e801033a4715c29858815ba22c7d02
MD5 b7371bb044112265ba2a1a0fb3d4b30f
BLAKE2b-256 9963d42b5af1669cd39545b39bbe0d0cbbb34f6f5cf36661eb529c3a737afba0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 160.1 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6658f5b4650e885181db4f23a9eb43f342a8a68aedc2490f7f0b93f8ffa3f90
MD5 eacec1ae9c884cf5d918919f28f1b76e
BLAKE2b-256 b3052a63c4e33cc0d8f741e381024e0f7c974cd0c3c888bd09da2acd7721f937

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fd2b83dbe62e2ede13d39c7b52a72ea7a0d98f7fbddddfaaf6c6d598284a0483
MD5 f9de7cfd10bfbda110a43e91a1a22799
BLAKE2b-256 ffd5d79d2a648f9dd38ef01e07c735812188ce7e116bf2ec294474a5cbd197cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp313-cp313-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 3824899d171f2ce88435e59fbb05505515aae5e47861fc4b1b04b93cb4c25f0b
MD5 086fd21b5cc0453bd72a23c2f8306d3b
BLAKE2b-256 e5ca404a8f64cd29cb2b3103a28ae85f426f2efa5b3a31cf3479668c273f5f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b903ebb449bbf38c5c444e9685150f6683e828f50be420e184cef5908399df52
MD5 814fe03c5a41f9d4c1c7cd5344d75dd6
BLAKE2b-256 cd1e2e783d0d0fea753fb79dde1096abb0e7dbf9d5dc6b08bda3bada9112f1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b605fdb2eb0695778049062d26105d4cc55e49f97e37fa4cfd06235ae08f1f5
MD5 db0d20f85f51dc5693b41b2d3012f334
BLAKE2b-256 0c27d5f9e66e43a2d5a3a8b91ebf03d18b4aa4c0e1aaa09b37e69a7ab95b4eef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 160.1 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef6d543208ec11891a2655e38b39cecee0f20e85d34cb3a94b98444908e7e844
MD5 77e2b6181b879a5a1cb9a1e9a69f6b75
BLAKE2b-256 5a6a9b92db285ef15b51a1e62662672b1ce3c30dbc20aa75c233ca60b1b4d1f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 284df0a2bba3a26eb49388a251822043afc82369c7116b11204826258963a675
MD5 528de5b6978193fcbc0f3509e1a2f846
BLAKE2b-256 652446598527f79eff47fcd860d743fd7a517f1a0db1e017b40fdaf805fee34c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp312-cp312-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 f23f19592f1602932f284d82f9c8e4ff28e0ef384077ab4c2a8d80f888f729d0
MD5 58cb3ee937d698d4dfc21f33d90725d5
BLAKE2b-256 8f5c22af5445f65c684e86a44a166d057bf5ce042ab809998fde52d7a1a12417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b40aa76745b5fbf2217a94369dd1bb017467acd5f1af802ab7d61ee2c3671e59
MD5 299cdd8c2f586ee463f91be604a0bdea
BLAKE2b-256 33b1a07f2c7197d0cdc5e4902b369e313c1859bca942a276003c484b6c480cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63be0e292a0b09177595674492387bfde0df7dadad72a8d98d09fc71f40899a1
MD5 aa46d79683a7fb52196ca0ffd536e4aa
BLAKE2b-256 bd74709140155d6e225782f539185b078329a620c9ff47cebff8c83c26678d0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 160.1 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d559b3c8ef94bd313306fdb1cf5d0bf0159e4dbddd02170f84f5f56811d8a21
MD5 e160b30fc66b5c047fea8e886c29499b
BLAKE2b-256 c82073af4ee27fad89fcd5c28a8ca840f9b2333f05cfc7e9a5a3388e043a9e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 524bf8017ccde72d056251a15154e0e474fcf1568f80cd45ca4845b71483fb83
MD5 b8173eaf92ce0fe84dbe2ad45c7f1e07
BLAKE2b-256 d6240842eecdc7f82744cc89088dd088aaa20489350cf1af3a18f93eb5991ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58cf8372acb391813de57a8ef1973aa4679843a21d5e92f3b7f397760be993fa
MD5 6a946d1df77ba42faaaa2fa8c5a58182
BLAKE2b-256 b3f33a85b68d62b9161f0174a76c7158126ce5f0492c4ffc79ebbcd630312c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7682d8183290354e268d27967a383f3c681427288cee2de073c0ed56585838f5
MD5 4aafcf4ec68d1f5f25db3e0e7a7af458
BLAKE2b-256 f0f7f7dc2465b0561d9c7c6cebe0c7b7b3c2138ecb9760cfa364c9485adaa3f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1bb169f99b44401eebbe558ff53971cdd93a7f408120ea243bcb53f70cb40ad
MD5 7beddf8cb1b5796b2173abe33c4e4aa8
BLAKE2b-256 12d01b35bd9b97f26a6aa8a9dcf5640730a4ff95c1e0c432cc37cea949b0f5ad

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a2f3bd6f79e9629561204f9f449eca6a259705442c8b968d187a5a3de461dc5e
MD5 2993875102b2a013747278084fb0a6b3
BLAKE2b-256 82644a97003d859be7db0d344be9f891200e91d1023ac99da74660ee6ab093f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 d3e4fbce0953917972768b0d8bdea59795e9b22fcf7ce730e67a4f072b4330e9
MD5 888521fa91c9b078f297cb4a1de2e3af
BLAKE2b-256 152b6429ba768476de3fa6fe7ca873f6743018bdbef14d51abd20c52c2f345f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 5bb52fa9a37159b4a3642da62b429b26ce58993f1dd98006581a7589940b8116
MD5 b0c1e6901878deeff36f1423c37dbb6f
BLAKE2b-256 16569c0707a8303cccd93d7edca439de8e2c1f165830d855c86800550fb833c7

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp311-cp311-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 785a7c82f54ad4e300879e5a33bb86e3eb97b0f678ee4fc31e0b5ec14693c5a5
MD5 96588b74aa27b54b8300e02fa248b654
BLAKE2b-256 cc0ad8883346be117a2ea69519075e9268d36466058d659653583073bcf02b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 6272ca99303b7858837e4524b2373080bdafef7b1366852d29245805c8fca9ec
MD5 dd6244dd6b69a2eb08da62e0297c8b35
BLAKE2b-256 ae4958205e8d8bb1696b8437151efd6f3d87387191ec98c25df7da664b79e440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f84483bffaa804f1fbf3a4d7504f0c3d804a3bb015938346bda1442f4931dc
MD5 7b3a1e328bd8cd5fc0fdbc357aabac4c
BLAKE2b-256 77c7e4d9862f20c90154789ab7a5b46999b4ab2f371079833ef0e75c3e224ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee151cc25ce718f083f026ec896f40fba86c9bc8815f9cbe65f8590fc81f6e5f
MD5 96f02b26e04298e37048dd19ad788e35
BLAKE2b-256 56c8f6469343feb0d95f9966a7fbe127542fc343f9f32a6555cd49d08454e1c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 160.1 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9a1c02f75de4f9e20ed304bea024a74aea53736e3dc9be547832273a07d0a2b
MD5 ac08c606d8181cd33495216b9a1cb902
BLAKE2b-256 924a0999127fcde0ccf8dfa63d20ab1e56033258527d0f839b81f325f2f1c11c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 24a8af38292c01cb1242d3d0e37bee487c21c1a694aac2556e1ebe05bf7ef840
MD5 177d8c8c0396d913a13f9094c5c92e52
BLAKE2b-256 6348a815134f041282c8f8097fcef7afd27d8ecd37c5611e4179a5f664226577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b5fabd0616ad5b2f7440adf78d9b8f61fa937df152f3e1470096b491ae8c7a7
MD5 6ea4e9c426e38eeaf0235a2d530095a3
BLAKE2b-256 4119a4c3598fb3b6f65681331dd048b70f69dcb2198aa018c1d7ad4a039e20cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76675a75382589120073ed8d5e390c7a62abd66fdbfbeb205dadf065a95f1f29
MD5 f9b6cc0c6f86c8ab5d8a2f9087061c7c
BLAKE2b-256 56d18ec0b0f8a9c6a45a4ba09ae0bf81604a9936c33206444c5a4de9bdd7a31e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b99bedbede3d4f1946137a4710cf40d2ece6495014cbb15e641ba4e15b7a72d
MD5 fa4a625830e66877e14c52b935f54508
BLAKE2b-256 acd16002a07762a17369dd0f9da851d995ad389eeac2db9a7d06eef0d1a727de

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 4bb87ba5fbffec01feb4d1e29202279ca620f4fd41118977c03d324fb44ce348
MD5 af9564d28878eadc7df1cca38e5e23b0
BLAKE2b-256 1b5669b5ca85462dee8f0fd313efe176b2591867fe42f73c8925babe4b032a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 e27301a94f23bd10db3cef6b2c9a3aed08601dc5aff12cd87beb842f17314d1b
MD5 72d5dd1212c0a5a0b10ed5c54745548c
BLAKE2b-256 79c1d3351559167482d66fb2428269c269d383285a6a8b0f2772146b6e4da683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 540b0aa080f01e9cc19f8f9d01472968e9a54f0f2a9034adc7ed939e616ab8ae
MD5 50b67f2838923a4348588d9b9b379773
BLAKE2b-256 e2c2c8eb0ad5f847b6bc80a556362df732dbbf241cf2ad66cd6015cdb1d92a85

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp310-cp310-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 e536723b7d4aa9185d57b4b33a18775b6ac5c3d47bf02f6ae8dae7685726c4ff
MD5 2f187ee5021b14ed60e18c4ce7c0ab87
BLAKE2b-256 70e636cb79fc7c1b9e0201174628ab43b7636d9d26c8ebccde03241c85ee56ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 8fec74516ed95cd3a961f0b2c787d26f394313554d2570807159a19668c63b24
MD5 a783fd899e95f10e193f182500abe3df
BLAKE2b-256 5c5251608eabc22b7166201b87759a415ad3c054c0f2f10cbda7e32618f0ea7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e0cc85d3d5b5cb05b21031c71343842c13946126734b71e71a123d35a62dab9
MD5 55dd3586271daf53cf64f4328ffac111
BLAKE2b-256 83db94b8aa947015f3a6319fb680125dce8af34f89b3e7e9fb71380895163644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60a2b68ac60e25a4587e49017fadb3ba99934e2afc97c2298f31b22a3737c6b0
MD5 0dc1b570583bb19d8932bedd1f71ea6b
BLAKE2b-256 fcb437d54cb46cd3ee1680d8464bd343ca372a58d243ff9132cb65a4042df3a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 160.1 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0df299adef48ad55176d135e11a25c9ed973da20c23cf82b74206d5eedf6e959
MD5 2b4c1ef9d7053b2572dc86aa4ceb5941
BLAKE2b-256 8d814661e3d38bc2723c6058180b5cf02088546866b509faea2f84a5c346513b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ffef97137864523e59bedcf5d1af9109b143bbf9a8525592d17a7d88ed106435
MD5 e11161d326559aa762cce2b0af1428e7
BLAKE2b-256 fc214a0313083bd75fe27eac77769d0f7bdeed7ae68b3f35b21179814cd05694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 107c00ad66437314048879c3ee79596806a8635884110b56a878ccca2ec39646
MD5 9c56c363cc06d1a21718ef5513364805
BLAKE2b-256 703a06157acb188ef6eb2e75096f0ad84fc3905eeeae33ac68bec5c3512f1b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 020f6ef47f08f0bb2cf2ef00ce237f3103a3bfd670c43db8f3ccccb8105f1bf6
MD5 d9e1d9bff4be04392b3f1b78b462bff1
BLAKE2b-256 9ff0b8ff9e9feff0474565cd4dea0a73836ffb725c386dccbbf7072c15d3c11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9df4211a12f4c8c2c93f0a719bf0dbfd58cc00f43c2be50d6be625f9f5213a6f
MD5 2a65bca8f571150e8c64c30501c35d47
BLAKE2b-256 378b57e13a29b3d4f67b1ce741ebe6362aa748258d2ea6f9ce1cca4b26a6d724

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d641779c8ac0d8dd0888c83fc2f2b6e1519da8381eb318a7523eae1f43e79837
MD5 d2c8803ad9bd6dfa28e90139da8b20c4
BLAKE2b-256 38b33734182b59788ebc3945f4cf6f46b4bb639f3c00e1ced36e0ae1cbd7b1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c2d9c40577438c9c5ccac142b6f0e6e41867c01cdcffb1f82a670cbeb0ef8e04
MD5 55115d8f0a42de5999ad67c538e883ea
BLAKE2b-256 0d334d7aeda838a7006766c7ac6dd82cce9b3812d20eca32faa7e3e9fde66098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 bc69a72eb4af89070f9e253f995b7199053fa8ca26ae4d3b797ca07e445b8c3c
MD5 1f677a1199a096dca315751b1b141fd5
BLAKE2b-256 9f88cdde778dab15f5f0e49600f05f6d0ae409e76ebd4713fa801a542b256388

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp39-cp39-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 3c649ef2f78f27905ef2bc8034a5626da751870bb2e4f376a753cc93519f008f
MD5 bc7b3d00699a56060ad61142cf81e3a5
BLAKE2b-256 c05aa88e9dd255bc8686ecbbc33b7afc72be54c727b11db422d8225eff2833a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp39-cp39-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 0d5efd9770134b4297adb8384f2a824bc26837d577086d891908c577c03b86c5
MD5 5aa45ceb8f18fe9862e2bc77f80bc5de
BLAKE2b-256 2914fa46b1d94f48be1c38e719e3ba0b4f2c5de21d718ac0b13800ef26cdb11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 889cf91e0c5fa804cbc9313e9d5a8b1334a46894668b8fd0c1b75377f5eb7e82
MD5 2dd16b2006f3a2e77898bb726b510897
BLAKE2b-256 761c92cc58682034ee045f8e09c4584f2095e2c84ed4782335a7a3f2a5c57788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 052c5edf5971c02aeb5ae115d1f084a4951230824012ba261190f324736daded
MD5 59621a2f991f5e364668fda142f82d62
BLAKE2b-256 e97f05c44851f21dc3ae104cb22fc850331784de5cb93ca31838547e4bdfc366

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 160.0 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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ac9b361794f151484e687aaaf40f92bc0b6343f359102b5fcdd0b078fcd42226
MD5 9774e9915632df32e98172f50639bc3e
BLAKE2b-256 334ba66925a793f1879d718c45b0a8f8f540cfddffadde17cec8ecc1f6b7f1f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b2d25fbc6291a7205944f6d0ffbfa04c148fa758d3932081186eef84ba8b144f
MD5 bd0e09dc7cb064d18354bfdb74716b28
BLAKE2b-256 4efd996451663d4ab3646e23b82afd19ffa6be36e801c3142bbafc54210441b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 994ef935ebc630ec8c64e308ef92ed9460ac2a18c8e15c96d08f273696f639f2
MD5 069d39caa91421b28ef3b5756201c765
BLAKE2b-256 407713544933b9f58d28fbb23dc68d8dc14d8b3aa0f000ed40679fec12eb0e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbeaca90807f0c72a0f269f6e6c94c493083e0fc271d252272d3541af61d9224
MD5 784c614e484262023e80f03859a6a10b
BLAKE2b-256 e7a3a8b2c985132561a4fae044b9c807d51fe89a9db44d2de5144a9548cc87b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c8cc758ca3fc2a4de1e4f985682de6c9322b93b32187d780d83e41ec83c6a20
MD5 bd91506cb78654f6d97e504e79f5bc12
BLAKE2b-256 8e0241cea1cace9dcc39823fe500e912d56e44558d5918483a96cb4cee5e073d

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6911b3a7c609b57c2f45b90e94d5845d5eb11261b9bba2690a9dde5f5286736c
MD5 f6b1fd69ec6f19c617dce2386f07d164
BLAKE2b-256 f816aa455cee0c9e398db19c629b79bc6748c7f0c5dda88946799bb09495d75a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 57fbbae3d5224dd4644703595b83df6075b21d9fbbfd7891ad3ca405814a7abe
MD5 e739ce4f96be6c4312433e5818c8de53
BLAKE2b-256 111128ca2fabdbfca8ccbd75f82d6ccd9d97bafa44ccebf4d29c59897ff84209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 552cad182762f0d952f0a5981d03dcffe0654948b5bdec86c085779b79619f51
MD5 4fd6756c50059c7303f686549544bbd6
BLAKE2b-256 f20595df25f36bbadec1638861e16f0066fcdc828b12c50dc6c791666b530192

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp38-cp38-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 32bcc2826d524bff61207da32b2c3aa137aad4298e98f22f686b4edcd2ca0606
MD5 826ef0884166149842d54b495109be8b
BLAKE2b-256 7df7407ace0e003a9eaad86d5c171b2051648f32ef18acecfddaddcc38f6db79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp38-cp38-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 69d3d89465b124d7ecad1feb6b1ff2abc2460ed629d9d3356b7875e2c707ec11
MD5 3bdd14ecdec40419212a0a415ed9931f
BLAKE2b-256 d2fe95c032d212c2ea50a40823174c2b31d4043291965b9d0ebf8c5d36aa44af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae28acd5adec2aa5468a7a5eced6ecac8cf5687dd6bd7b95af14128af4427daa
MD5 cfa740a9fc15994df6ed26a274c8cf42
BLAKE2b-256 6d03e7934235df1e43a50d5ddf42ac008ffa72e21a0e1fbe34f1862bc5424c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e889093fde19e4a502f1527d74bb3127bd5b8eadb7275371073dbfab73e820e8
MD5 e9b28d54227d47bc615f58c2145e8c77
BLAKE2b-256 f1aa01c0c5123e04314a7fc4c53dad9c106b8bc00ea0bb5c5d8956ca9e6e64b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 160.0 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.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bb2f1346833ca24fa6b2c6213989ed3597c924e109dad2a45ef8fde668ee2991
MD5 3d666373126f8b29a9830da8c49eb9ed
BLAKE2b-256 62b70761d8a59df96893cb757f4f6b4f51ccfc77febc9890b358e3236335e79d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a74c7a0b0bef3e36987ed0a2df2a38e24d5041b753f8114054e1ac9c8456dd01
MD5 8f5c7e2eec3d31077af00b7255b985a9
BLAKE2b-256 f34b7b558ea8e9f082a6da73b24c4a76b091f21da2dc9ade2b1b0bed6a4aa74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b938d8dba7903175836b2024d538ba43bfcf48294e1832e9a3cb8736b48ce275
MD5 ff1bd59aa6f16bdc2835cd51a422e446
BLAKE2b-256 ba34123acde176824a839271bb332d62306b51f5659ac870f23e813a12e7c39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e0d33e100b9772beb43edac3a42055f11105edc5c34e6b9b468310a8c4201f2
MD5 b81d80b030a954e4718a018862ba4f43
BLAKE2b-256 6daec00e377e24a10901beba70ef46967852a64139b8e9885045fb498856aacb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5371a17331e8fc27458b23ae97058913ccddf9c45533f3b0b1c4c1a2112151d3
MD5 53818c4de45aa6e70f25e76e1ce6f4f8
BLAKE2b-256 d63a031d2036af288039dc504076545507dafb549b18f97777783acd36834c18

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-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.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6bf03b529510f475831ca5d9e88838d01cb4bfff53722fee869388466ceddc5e
MD5 85f0afa80e9d70190528c3e0f1995e60
BLAKE2b-256 b4a9ecd4f4f552f2f85cd018c8c77e81762b91e39023f21bdb9aad20bd16c45f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 f8ecd167066c50c729119a29063d634a5f625a8f2d9bc2235a4dea382e265ce1
MD5 8c63de3fd3f01a8a43a00f1de8f4f33a
BLAKE2b-256 2e749c55f1a1f7cb73c65755956b1c3398961ce2d037f51ef81c9c1f98b5312a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 8a2985ed549df388fa7f4516b78ebe0c35f3959651814bbd783783983f9fba5e
MD5 6f4b8ca7a7131f357e09f882d45c9ff0
BLAKE2b-256 80446a7a2637452ebc6a5cbe055dba6e4ed3e970814abc2a16d1644ed9a7471a

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp37-cp37m-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 2a46bed908432dd321719b11ae794868e9af317e764f2a9464e70c46f36122b6
MD5 40e4ad016db8653547fffa098fce509c
BLAKE2b-256 238d21d4948121c995798da7a3c1e17c5e914febdfb42ec248e33802ab145c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 9fe3d4d29fa99ea11cc0dc7b2b82b97dafd693d6c2e732d98a94edbf708f3978
MD5 947bd673afe9af5e237ce2de986994f1
BLAKE2b-256 2617ac5dadc7c9851c92408d60e3778ff23395e4a6810b918e0899e6b524f8a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6c3006180b7aba2216c78d9fffd375127945282c85360c00224021b8e2d51aa
MD5 992532af75a340474344e652e74a1279
BLAKE2b-256 77a80519d8d15030d8bdb4156c85ac642905a6f574a13356726413ad134e1c71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ee361dc19230c12e40fafede6ee15087091e0842cb2717b79f10e6f14d409ce2
MD5 b4552e425071363e564530ff2f928459
BLAKE2b-256 be70fc4ee9e719863839badd0ec63ae759ff5c16515e098747a43a9b3a041535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8c7d7573e99c86abb2bfacf396c2af3fda990c34cb99dbb263d228835482f2ad
MD5 725e7ea889be063c66fba91f75b87163
BLAKE2b-256 470c925141d6e29105fddc12832ebaae80144506c4db54154280f783d53b8f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp36-cp36m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 577f30e0f6e88cd2163bc13ae319ac2af44463b2526cf6d39db672a2a9bfcc16
MD5 3aa5cff236dba25e47683d58563ff548
BLAKE2b-256 bb864677743097dc6dbd45f9f524c4a64d6168d298418cbd38863a653015d92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp36-cp36m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 10f8a6b722b4948a5dde799b61f887daa426a430660d128a89033b1a440dbc7e
MD5 75cdb909adae7b9ca29599e6aed38bc3
BLAKE2b-256 d131b8f1c8e1f5583bd950191093d54c9103b79f8a9d6680cfbfd396ee9423e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c81ff4b13695272dd8512f2ea658cde6ade5d3ba41a923b74781c05a8bed47a3
MD5 6571407f2bcd3cb1fa6f401725ce8dfe
BLAKE2b-256 d59297ca13903930130c98be3f00441a10e8303f27c29a196cb21bbf201c8a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c44bac0a62cd0bc9ed2d5139491fe62e1510fccbae5d8d4a58e84c8fb147d0b0
MD5 e8cc8b77c97bb693715838a5f1f27082
BLAKE2b-256 50d769209666d00ec29540863231525d784ace304173b7329d6331b940455fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 841a038441cfa5de224e90a2f0975fc67b7f3af31b8f599a9e617d6b8cb2b550
MD5 27e7f27f815efae5d3a751123224aae4
BLAKE2b-256 620bab49870d06ee6529463637040afe0cb6ef478a16e1c4c4531e9de8cdd72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 116e073b07d3a85edc665f3fa1c07838833922e6f05314d7fd8ed1d7ff1c6998
MD5 81cd9dfda0739d606f17f20d5b531102
BLAKE2b-256 762acf07c6c4f9cda2a48711ee011687b046f9f1351c1765d8aa9c82c133ff49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 abfd747ca4d67cfe87bf9517420a1d8525b52dc4f1c0290394390dab544767dd
MD5 9cfe359955e500289c189b804b0a270f
BLAKE2b-256 42eb8e5add8034ce2cd6d2a845f069d4aaa76430a0e668b13097b3f0271d8a91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.7-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.7-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 119705778f23564ff19a9c758f5b6433ee7952d9e01494f02cf306580ded7304
MD5 1b0cd61cdfbc4ee6decbc6e748122644
BLAKE2b-256 28c87771297a37c48c8e725a96a1dd87ae163069c77b52b61c8bb20ee9135292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp35-cp35m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 4d7c0520ec42b38c63cb09c7ac774a1b3eff05f5c07ad4204b85f8beefb389ee
MD5 5db347f56fe2c74a73373f47fc3d2c4e
BLAKE2b-256 0cee836477f15083b4d78a12567eab6f9994ebc01cf5cf111689dc7d29e2d3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp35-cp35m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 85708a3126a44d5a9e527f9b4b22a818a20bad9db7996af343d05ea92d64346e
MD5 b6b7b00c4f0e2d9b96dd8dbe7ddfebdb
BLAKE2b-256 919021be40ed3922767dfb22e83162e4a76a1fc795903967e78984e4c2143aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cc8ee78ca40b543b2cdc791e67ac07fd8c34a46220061f0cbaf0f447450f15e
MD5 c9f9e3018b5c7ea0a7ff4df4599cc5f3
BLAKE2b-256 d2b803a1d25b4acb2bbdb81ec5afff5ebef244daf1d4f2c2badf56713088abd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 01ae79da90adf8c6da7411a1463c1d8bb7b2c26b63cd749b3cbb14e9a61d2ae5
MD5 97402282a7a41d616841a8e70df0df0a
BLAKE2b-256 9944756db12b42d878a153124719a64c91bdff99215665533a284f8be17b2980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52c9d348d1f3ddfcede9cbb8e2652cce053e6fa070092d2e71f968ea7eab60d4
MD5 fea2b9aa2bd4b514d31e7516a93b07e5
BLAKE2b-256 22f11776d0eb2641854d5b4db172b95f36c8482217c395d5a36e3a7b84be40b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp34-cp34m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 8d719dd0bcbb8394e05d65a1c3d667ea7ee22ef8a91d24d871ac1fb63612c0c6
MD5 3d91607aa3011d6cef7e3b44338f581b
BLAKE2b-256 4071154231d08350ad34217a9b26c8a57e06f368c817d82c0f9ef28b433ab732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp34-cp34m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 4437fa33ea65f6ecd2a18ef1def3a054238d186e6de585211ff8116d7147bba6
MD5 3306b2d64279069d4d99c94ff0ac6b83
BLAKE2b-256 c14cde02ae3270529eb49414a77e04531008361a434676c36fcf1c0100239f8e

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp27-cp27mu-manylinux_2_4_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27mu-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 57d417c48f839ebfcc84405870067f35bad3a2cefd2dc4a79b3365a186804139
MD5 7ef67aea3d7f2bc22e342d890d4c15d0
BLAKE2b-256 19ad75127276fe82f24d7cb3c4bfd048ee2877144598d5bc4db937632f227efb

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.7-cp27-cp27mu-manylinux_2_4_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27mu-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 58296ab5be53ed230ad2611c07494dba19da47e14c645f4952781428c00d6b15
MD5 b569c07cfa0eba8fac8dd39fd80451a4
BLAKE2b-256 9ad1f7d34c7c7368cadf7f55f66d5988b3108f193139c907b6c79be55f7f2239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3163cbccef2934359d71bb7dc5acdafe3a82af6a5aee9cc60049abb945300ab2
MD5 a3944087da0b36f8f4ed9ddfde92dcc1
BLAKE2b-256 7656d2b653021eb33904920d425344d8cdf1401f04854cb149bdf39286e95b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 430b24d17df7378a13817a648def6e69a72c457546e4acb00cf9dbcfacb3e3ec
MD5 5d397386a96fbbba74319bb9cf791ad1
BLAKE2b-256 44a6c1ce2a52d7579aa2f17e40d9909a0551678741f77e421e2375fb314f9b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c08078a080aa583c4819ef357f9681df51d2fcfcd5497cf710e349083bccbd0
MD5 76d68b97fe3ca8cafa57fee0778be22e
BLAKE2b-256 082409c1308b33d15201f43a4bc88294115eeb433fd29ead1933d3a539c80799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ec8640435d52e1513c1c245767d55d31f15bef36762fba734b60758ac1b8ae3
MD5 430eb4e74669b1d5a78c81626a0be7d3
BLAKE2b-256 526fc54ffc84463d982a3fcf7ea389188590bd86dd6cd77eae0dded6d41968c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.7-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37f3eb313944052366759f57c445476dd1256a301b700e8074ceeae90825ea19
MD5 4b190359a76d4863765a20e4cb405c25
BLAKE2b-256 fd0fa038d7b704999de60d1819a3fa7433a92a716b3533cdf57e5028750c1e69

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