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

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

You need module setuptools <72 to run tests:

>>> $ pip install -U 'setuptools<72'
>>> $ 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.

And you need C99 support in compiler (gcc >= 4.8), libc >= 2.14.

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 want to enable some speedup (maybe) you may try to enable built-in optimizations and pass option –libzstd-use-asm:

>>> $ python setup.py build_ext --libzstd-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=1 python -m build -w

If you want to 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 faster module try to use options –speed3, –speed1, –speed2, which corresponds with gcc options -O3, -O1, -O2.

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

When using a PEP 517 builder you can use ZSTD_SPEED3 (default), ZSTD_SPEED1, ZSTD_SPEED2 environment variables instead:

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

If you want to build even faster module try to use option –speed-max, but it will be optimized to your procesor only, similar to gcc options -O3 -march=native.

>>> $ python setup.py build_ext --speed-max clean

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

>>> $ ZSTD_SPEEDMAX=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 you want to build with a lot of debug output to stderr just add --debug option

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

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

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

If you want to build with a lot more of debug output to stderr just add --debug-notice option

>>> $ python setup.py build_ext --debug-notice clean

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

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

If you want to build with a lot more of debug output to stderr just add --debug-info option

>>> $ python setup.py build_ext --debug-info clean

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

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

Some python builds need to force disabing LTO, so just add --force-no-lto option

>>> $ python setup.py build_ext --force-no-lto clean

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

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

Some python builds need to force enabling stripping binary of the module, so just add --force-strip option

>>> $ python setup.py build_ext --force-strip clean

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

>>> $ ZSTD_BUILD_STRIP=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).

Support streamed data, since 1.5.6.8.

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, and returns: 1 if yes, 0 if no or 2 if it is a stream data.

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_default_compression_level (): int

Returns ZSTD library determined default number of compression level .

Since: 1.5.7.1

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

Since: 1.5.6.2

ZSTD_is_debug_enable (): int

Returns 0 of 1 if module built with debug output.

Since: 1.5.7.1

ZSTD_is_debug_notice_enable (): int

Returns 0 of 1 if module built with debug output - notice level.

Since: 1.5.7.1

ZSTD_is_debug_info_enable (): int

Returns 0 of 1 if module built with debug output - info level.

Since: 1.5.7.1

ZSTD_is_debug_error_enable (): int

Returns 0 of 1 if module built with debug output - error level.

Since: 1.5.7.1

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

Uploaded Source

Built Distributions

zstd-1.5.7.2-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl (315.5 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp310-pypy310_pp73-win_amd64.whl (166.6 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.7.2-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl (315.5 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (218.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.7.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (262.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

zstd-1.5.7.2-pp39-pypy39_pp73-win_amd64.whl (166.6 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (315.6 kB view details)

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

zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (292.0 kB view details)

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

zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl (315.5 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (311.0 kB view details)

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

zstd-1.5.7.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (218.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.7.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (262.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

zstd-1.5.7.2-pp38-pypy38_pp73-win_amd64.whl (166.6 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (315.6 kB view details)

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

zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (292.0 kB view details)

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

zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl (315.5 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (311.0 kB view details)

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

zstd-1.5.7.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (218.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zstd-1.5.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (261.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zstd-1.5.7.2-pp37-pypy37_pp73-win_amd64.whl (166.6 kB view details)

Uploaded PyPyWindows x86-64

zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (318.2 kB view details)

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

zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (293.7 kB view details)

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

zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl (318.0 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (313.7 kB view details)

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

zstd-1.5.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (261.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zstd-1.5.7.2-pp36-pypy36_pp73-win32.whl (210.2 kB view details)

Uploaded PyPyWindows x86

zstd-1.5.7.2-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl (318.0 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (306.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zstd-1.5.7.2-pp27-pypy_73-manylinux_2_14_x86_64.whl (317.5 kB view details)

Uploaded PyPymanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-pp27-pypy_73-manylinux2010_x86_64.whl (305.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zstd-1.5.7.2-pp27-pypy_73-manylinux1_x86_64.whl (305.7 kB view details)

Uploaded PyPy

zstd-1.5.7.2-cp314-cp314t-manylinux_2_14_x86_64.whl (302.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp314-cp314-manylinux_2_14_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp313-cp313t-manylinux_2_14_x86_64.whl (302.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp313-cp313-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.13Windows x86-64

zstd-1.5.7.2-cp313-cp313-win32.whl (149.5 kB view details)

Uploaded CPython 3.13Windows x86

zstd-1.5.7.2-cp313-cp313-manylinux_2_14_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp313-cp313-macosx_11_0_arm64.whl (228.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zstd-1.5.7.2-cp313-cp313-macosx_10_13_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

zstd-1.5.7.2-cp312-cp312-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.12Windows x86-64

zstd-1.5.7.2-cp312-cp312-win32.whl (149.5 kB view details)

Uploaded CPython 3.12Windows x86

zstd-1.5.7.2-cp312-cp312-manylinux_2_14_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp312-cp312-manylinux_2_4_i686.whl (322.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp312-cp312-macosx_11_0_arm64.whl (228.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zstd-1.5.7.2-cp312-cp312-macosx_10_13_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

zstd-1.5.7.2-cp311-cp311-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.11Windows x86-64

zstd-1.5.7.2-cp311-cp311-win32.whl (149.4 kB view details)

Uploaded CPython 3.11Windows x86

zstd-1.5.7.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zstd-1.5.7.2-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zstd-1.5.7.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zstd-1.5.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.6 MB view details)

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

zstd-1.5.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp311-cp311-manylinux_2_4_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp311-cp311-manylinux_2_4_i686.whl (322.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp311-cp311-macosx_11_0_arm64.whl (228.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zstd-1.5.7.2-cp311-cp311-macosx_10_9_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zstd-1.5.7.2-cp310-cp310-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.10Windows x86-64

zstd-1.5.7.2-cp310-cp310-win32.whl (149.4 kB view details)

Uploaded CPython 3.10Windows x86

zstd-1.5.7.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zstd-1.5.7.2-cp310-cp310-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zstd-1.5.7.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zstd-1.5.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.6 MB view details)

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

zstd-1.5.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp310-cp310-manylinux_2_4_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp310-cp310-manylinux_2_4_i686.whl (322.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp310-cp310-macosx_11_0_arm64.whl (228.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zstd-1.5.7.2-cp310-cp310-macosx_10_9_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zstd-1.5.7.2-cp39-cp39-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.9Windows x86-64

zstd-1.5.7.2-cp39-cp39-win32.whl (149.4 kB view details)

Uploaded CPython 3.9Windows x86

zstd-1.5.7.2-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zstd-1.5.7.2-cp39-cp39-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

zstd-1.5.7.2-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zstd-1.5.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.6 MB view details)

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

zstd-1.5.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp39-cp39-manylinux_2_4_x86_64.whl (13.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp39-cp39-manylinux_2_4_i686.whl (322.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp39-cp39-macosx_11_0_arm64.whl (228.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zstd-1.5.7.2-cp39-cp39-macosx_10_9_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zstd-1.5.7.2-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

zstd-1.5.7.2-cp38-cp38-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

zstd-1.5.7.2-cp38-cp38-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

zstd-1.5.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.6 MB view details)

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

zstd-1.5.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp38-cp38-manylinux_2_4_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp38-cp38-manylinux_2_4_i686.whl (322.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp38-cp38-macosx_11_0_arm64.whl (227.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

zstd-1.5.7.2-cp38-cp38-macosx_10_9_x86_64.whl (269.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zstd-1.5.7.2-cp37-cp37m-win_amd64.whl (166.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

zstd-1.5.7.2-cp37-cp37m-win32.whl (149.3 kB view details)

Uploaded CPython 3.7mWindows x86

zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.6 MB view details)

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

zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (1.5 MB view details)

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

zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_i686.whl (322.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

zstd-1.5.7.2-cp36-cp36m-manylinux_2_14_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp36-cp36m-manylinux_2_4_i686.whl (298.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp36-cp36m-manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.6m

zstd-1.5.7.2-cp36-cp36m-manylinux1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m

zstd-1.5.7.2-cp36-cp36m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.6m

zstd-1.5.7.2-cp36-cp36m-macosx_10_9_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

zstd-1.5.7.2-cp35-cp35m-win_amd64.whl (238.1 kB view details)

Uploaded CPython 3.5mWindows x86-64

zstd-1.5.7.2-cp35-cp35m-win32.whl (210.2 kB view details)

Uploaded CPython 3.5mWindows x86

zstd-1.5.7.2-cp35-cp35m-manylinux_2_14_x86_64.whl (309.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.14+ x86-64

zstd-1.5.7.2-cp35-cp35m-manylinux_2_4_i686.whl (298.4 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp35-cp35m-manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.5m

zstd-1.5.7.2-cp35-cp35m-manylinux1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.5m

zstd-1.5.7.2-cp35-cp35m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.5m

zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_x86_64.whl (302.4 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_i686.whl (298.4 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_x86_64.whl (311.6 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.4+ x86-64

zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.4+ i686

zstd-1.5.7.2-cp27-cp27mu-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mu

zstd-1.5.7.2-cp27-cp27mu-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu

zstd-1.5.7.2-cp27-cp27m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m

zstd-1.5.7.2-cp27-cp27m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m

zstd-1.5.7.2-cp27-cp27m-macosx_10_9_x86_64.whl (270.6 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zstd-1.5.7.2.tar.gz
  • Upload date:
  • Size: 670.5 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.7.2.tar.gz
Algorithm Hash digest
SHA256 6d8684c69009be49e1b18ec251a5eb0d7e24f93624990a8a124a1da66a92fc8a
MD5 1b21cc25023175b403fc5bf424f2c818
BLAKE2b-256 0f789a476e09c825304df47b98be80d1ffe223733b03550af71325415028f615

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 5fb2ff5718fe89181223c23ce7308bd0b4a427239379e2566294da805d8df68a
MD5 ba0b8a321e26d5dce7183bde578ca01f
BLAKE2b-256 cdc9a6495a7bf168a78f0a0c01d61d830ebfb401315a64fd1ae8d725c458114c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5414c9ae27069ab3ec8420fe8d005cb1b227806cbc874a7b4c73a96b4697a633
MD5 a0c45811b76574fc114ef9e5b51ba5d9
BLAKE2b-256 7d397edf76a442621d76dc18ee82dcce82f8a0df2fbc7b962ade42a833e30a32

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 1b301b2f9dbb0e848093127fb10cbe6334a697dc3aea6740f0bb726450ee9a34
MD5 bec7c49475e0ebd20e4a5c0508137daa
BLAKE2b-256 ca3bf6f6c4d009b5945bbe043e576a61a8adc71eba5e9adc7b1872c080508b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53375b23f2f39359ade944169bbd88f8895eed91290ee608ccbc28810ac360ba
MD5 118440d94f8c6dfcfc624a9d2c3586fc
BLAKE2b-256 56d9f9b73abd3ccce44468ccbdc1ad48b8adb6eaffeacc556472a6e42331b2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 426e5c6b7b3e2401b734bfd08050b071e17c15df5e3b31e63651d1fd9ba4c751
MD5 99a53672429c2f337476ca8fde3829d9
BLAKE2b-256 56b9179ad7330e6ea33ce655b671ee6f961fbbf4714996aa7c5180ef08d1616a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 624022851c51dd6d6b31dbfd793347c4bd6339095e8383e2f74faf4f990b04c6
MD5 3e6a3627f693dd8ec65fe61a68c0a765
BLAKE2b-256 ac0aa211e00a94fcabe26faf809a3f56776248b588d6232babcf3c04da521b07

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 5189fb44c44ab9b6c45f734bd7093a67686193110dc90dcfaf0e3a31b2385f38
MD5 da74f3f61679fa56045e6cdd1667ec7e
BLAKE2b-256 e53d302cfea2c4c950e21b2ad596fd8468996476463bb1b55b56be39f6847129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ceae57e369e1b821b8f2b4c59bc08acd27d8e4bf9687bfa5211bc4cdb080fe7b
MD5 40f2511f0d8657a7070ea2337f99294b
BLAKE2b-256 c590d157b852ee55806d1e7063fe771080eaf8b34c8ae1fdc23c395e6ff56b3f

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 8cc35cc25e2d4a0f68020f05cba96912a2881ebaca890d990abe37aa3aa27045
MD5 de4012bf6564a8d700789870fcfe2d2e
BLAKE2b-256 2e8409e71e7dd968b69b46102a9ad7c6040d9ac0034335ea73c03bfc51624c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f51a965871b25911e06d421212f9be7f7bcd3cedc43ea441a8a73fad9952baa0
MD5 c24b4b28745ff949850b23756b8ab977
BLAKE2b-256 a33a072de1cc86a89e92088b6686c31719413b6c61645df4b4d035e037412d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baf4e8b46d8934d4e85373f303eb048c63897fc4191d8ab301a1bbdf30b7a3cc
MD5 ec5cbc3ecb94999b1a121f0d1dac15f8
BLAKE2b-256 4d5240294db4bb8629b07a8f0f4aba15ffbdc1364587efd7b8449664eec5b472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 05604a693fa53b60ca083992324b08dafd15a4ac37ac4cffe4b43b9eb93d4440
MD5 0328a5dc94edc5f77fd220aea09e090c
BLAKE2b-256 9b13ecff9a553eea6a66a3a7fc973cb414611a2c7d258b215bcd3f4c1dc6be24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7c1cc65fc2789dd97a98202df840537de186ed04fd1804a17fcb15d1232442c4
MD5 2dc8bcfd988445be82967341b45e0e80
BLAKE2b-256 01e387276764c25727752c38651957f1b305fd78d582ea5cead6256ed4c05091

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0f97f872cb78a4fd60b6c1024a65a4c52a971e9d991f33c7acd833ee73050f85
MD5 479b9fdda95dd91a5824864ce1397ba4
BLAKE2b-256 25873cb3b99522420a09bac4f71add2adb439af0edb032cac1970f46d5a47b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 787bcf55cefc08d27aca34c6dcaae1a24940963d1a73d4cec894ee458c541ac4
MD5 e1ce6ef1b8b57d7f5f4fd51002f761e2
BLAKE2b-256 14f80b5cd7df5962e995dee64f932bc446005447ae2e0043434196d3225a7758

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 8c3f4bb8508bc54c00532931da4a5261f08493363da14a5526c986765973e35d
MD5 28ea6c53df1820325a1ad8ab02d9f63b
BLAKE2b-256 9b69d35679812bfade635f4785498fec41f363b976cb14ccfe11da675034703a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 5e530b75452fdcff4ea67268d9e7cb37a38e7abbac84fa845205f0b36da81aaf
MD5 e472faaace81524f05e1a507d0432ff3
BLAKE2b-256 a34a7a5c1bbad7cd35ce24fb1af376867b7514edbb0f56126e31086b3b301ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f79492bf86aef6e594b11e29c5589ddd13253db3ada0c7a14fb176b132fb65e
MD5 f0090564091a6193d33d1478d2239369
BLAKE2b-256 2b450dbbef00088aba8930ed711c8d95a5e1a5071fcb9df17b106ddc44c76c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86e64c71b4d00bf28be50e4941586e7874bdfa74858274d9f7571dd5dda92086
MD5 0ab895c4598cdad81f87f8f806cdc571
BLAKE2b-256 a149286cf12fe6a9904de414be9c44a6e062c09b2d1e39dcb33e7adb6d491023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a03608499794148f39c932c508d4eb3622e79ca2411b1d0438a2ee8cafdc0111
MD5 ad8e5c89ade9d62ed4db0a48e9562eb6
BLAKE2b-256 7ca1d1dfbf3cb7522a0b49feb69c7478f31c9a1e28974e1c32d3691636e410e5

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 c6abf4ab9a9d1feb14bc3cbcc32d723d340ce43b79b1812805916f3ac069b073
MD5 f11902f59a64f95b6cc3a618498a78fa
BLAKE2b-256 7f512664e529711488262010b6a851fa9801384ac9d89c153d6df4212a3400a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 9a24d492c63555b55e6bc73a9e82a38bf7c3e8f7cde600f079210ed19cb061f2
MD5 5c0b1f1bec0f0cb1ab992c9218f14ebd
BLAKE2b-256 ab6c35411ebd848f08fcaa432ee9bdbdd48766e92d814c160e69870a604b4c79

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 d17ac6d2584168247796174e599d4adbee00153246287e68881efaf8d48a6970
MD5 2700640466171f9821c1dbddc0badff1
BLAKE2b-256 b4bedefe9bafbe119bf16567baddeaa432ef1ceb174ed3c659e0e54391aecaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 d7131bb4e55d075cb7847555a1e17fca5b816a550c9b9ac260c01799b6f8e8d9
MD5 86db1865958fbac68cf9f0573534ae79
BLAKE2b-256 8e0018874a97273cd2fc48c3fe70f27c34140376e85d55fdbc7db52f71256709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 faf3fd38ba26167c5a085c04b8c931a216f1baf072709db7a38e61dea52e316e
MD5 8f32203d05c768c2933d049cb76d4fd0
BLAKE2b-256 2d45e9aa1349b6ddd691da89dd5e6843c6b046219cc47842778abab7ba7f4065

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 3b14793d2a2cb3a7ddd1cf083321b662dd20bc11143abc719456e9bfd22a32aa
MD5 91e4b4e481c80e5430d404c57d26bc92
BLAKE2b-256 12a814b732ce5395ccf91d209994b3d3caf6866bc8a13024eaf7adb1eb1e5717

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 52f27a198e2a72632bae12ec63ebaa31b10e3d5f3dd3df2e01376979b168e2e6
MD5 c170d87ed964189688a733dbd2df53ae
BLAKE2b-256 65e1664546067db2a2401a246485e86c50574b583964568b7715608459a305c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6584fd081a6e7d92dffa8e7373d1fced6b3cbf473154b82c17a99438c5e1de51
MD5 f330e43c89fe25b63f057cda7fdf7b04
BLAKE2b-256 27678dc61b76a5323803c6c85e5d4783fa608f8f3e1c9c63a15744045b2da346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9714d5642867fceb22e4ab74aebf81a2e62dc9206184d603cb39277b752d5885
MD5 03ca0db4a2772549025954590533b447
BLAKE2b-256 92f5696cee6d65e533a7fd424c7d39c3f79dc0d99a45d4a2c445f5d28e24c2fc

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-pp27-pypy_73-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp27-pypy_73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 b011bf4cfad78cdf9116d6731234ff181deb9560645ffdcc8d54861ae5d1edfc
MD5 f2b428f410e405e6c04795bc2ebaf841
BLAKE2b-256 8e769d3f81e7fce928282c320c649d82a65e9c6aebb6d7c085a3d860d62e2ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c21d44981b068551f13097be3809fadb7f81617d0c21b2c28a7d04653dde958f
MD5 2d3e0b8e27f28627e27de51aa821bb4e
BLAKE2b-256 c169052c95a8d98a2050ad601b6cbb640f85a9dd8da4219223def05f2915ec5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24371a7b0475eef7d933c72067d363c5dc17282d2aa5d4f5837774378718509e
MD5 dfaad1ccc62a7b1ec925f1b54afce38c
BLAKE2b-256 a46cf2499edab7c59b6c20fe7e590e0d50876e9be93fc0c98a36040bc8cf731f

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-cp314-cp314t-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp314-cp314t-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 d0b0ca097efb5f67157c61a744c926848dcccf6e913df2f814e719aa78197a4b
MD5 2c377c40c9bb3447346f2bd5c305324f
BLAKE2b-256 9ba56ed36bed134d065ff6198707e7411fde7436d7927e325b8ace26f9e21159

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-cp314-cp314-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp314-cp314-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 a6105b8fa21dbc59e05b6113e8e5d5aaf56c5d2886aa5778d61030af3256bbb7
MD5 3ee44691005d83659305e0a2fb16a64f
BLAKE2b-256 d2f79243bb99b8525421a7db741604d29aebe9a849539500f2248d74bf2614be

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-cp313-cp313t-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp313-cp313t-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 1d71f9f92b3abe18b06b5f0aefa5b9c42112beef3bff27e36028d147cb4426a6
MD5 8befbc3c07bf7258e158e8b185c52f7c
BLAKE2b-256 07e9501291a2f9b300b2c73dcc6d086df778e895e71573df9575def54d9dbab2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eea9bddf06f3f5e1e450fd647665c86df048a45e8b956d53522387c1dff41b7a
MD5 b1e0866394611456663f3fc0261aa17e
BLAKE2b-256 e7aa89339605864c9803e4738f176932a6c9f1ad99d03c03ef2cb0634ddca680

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 edf816c218e5978033b7bb47dcb453dfb71038cb8a9bf4877f3f823e74d58174
MD5 9722f3885e2a4e60dee8c44599dedd8c
BLAKE2b-256 25ca4a6882846e3049be249031f825251a9229ecad471e18e7fd27974540549c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp313-cp313-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 53948be45f286a1b25c07a6aa2aca5c902208eb3df9fe36cf891efa0394c8b71
MD5 5db8e019c2d1398ac55b275334e574cf
BLAKE2b-256 314e547949993ea347ac44f5908262ebe6e85edfa7b11a5df136319789be731d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd6262788a98807d6b2befd065d127db177c1cd76bb8e536e0dded419eb7c7fb
MD5 c7afbbc41197460824d02fc08d3f3918
BLAKE2b-256 be1f85aae095f92811bed3d2944bbed971fe07ec1dd2d82c9eb1395d69d2123c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e684e27064b6550aa2e7dc85d171ea1b62cb5930a2c99b3df9b30bf620b5c06
MD5 dc208ab0ccefeb69e2c90485c05636be
BLAKE2b-256 a1630d392a8ec2231dee9fc2290faea7a6642584686720d6b77899ad8b12e35a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55e2edc4560a5cf8ee9908595e90a15b1f47536ea9aad4b2889f0e6165890a38
MD5 f4be73ff65027b3d7459ceab8abd0a77
BLAKE2b-256 3ec7c182ea7bc283f591e3f3c5f0f239e7a92c9bc1f626642ae2c4dfbe51d6f2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e4cf97bb97ed6dbb62d139d68fd42fa1af51fd26fd178c501f7b62040e897c50
MD5 df41474fa1e50506f4dd80df7d207cfa
BLAKE2b-256 edd7ab9142e002a7eaa451cb4bb37a74c390c489ba8ae75ade543840496eda04

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-cp312-cp312-manylinux_2_14_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp312-cp312-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 ac7bdfedda51b1fcdcf0ab69267d01256fc97ddf666ce894fde0fae9f3630eac
MD5 f56ce4f4af631f57ae33291cfb4c2000
BLAKE2b-256 b7806252de3a70cfd7767718ad476893f1c7dc129f942cc7ed0322e3137c03d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp312-cp312-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 b835405cc4080b378e45029f2fe500e408d1eaedfba7dd7402aba27af16955f9
MD5 d06d64562e90d8c178b6afcf66aabc08
BLAKE2b-256 afb6af908387814b99172d3aea6aeb24b19583aadfa45f6021e5e2a0d6d8e99a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef201b6f7d3a6751d85cc52f9e6198d4d870e83d490172016b64a6dd654a9583
MD5 427bd3565d9b2cebc23943bda1550141
BLAKE2b-256 08b82bc2590a34c733ea0570f366e6ad7d889d05c7825bd3ccab01f36ece71c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2ebe3e60dbace52525fa7aa604479e231dc3e4fcc76d0b4c54d8abce5e58734
MD5 016441b9bd2f267e1c8a7874fc2cf065
BLAKE2b-256 4514096bb77f3e5ef525b452cd6294da33de7f8a8c9647ba78293378fbb0a7ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f6861c8edceb25fda37cdaf422fc5f15dcc88ced37c6a5b3c9011eda51aa218
MD5 7fca13f68e88abe609fb0f621b3ba080
BLAKE2b-256 47b7fc22ad6292a32d7676ab815de3a23573beac3679e8abd9914288d1496ceb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cdb5ec80da299f63f8aeccec0bff3247e96252d4c8442876363ff1b438d8049b
MD5 ab510fe7183a59972eca73c7f88b3c0c
BLAKE2b-256 586eb9c9a834769d96cab2122da1be8c8c700d3f76be796d2b7516e85d2eca0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b13285c99cc710f60dd270785ec75233018870a1831f5655d862745470a0ca29
MD5 caa483838650c33861064de7bc47a2a5
BLAKE2b-256 44742c16e1632094db36c8920d4c13b8e2e843024d548ae26888c2d22af6a676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6b17e5581dd1a13437079bd62838d2635db8eb8aca9c0e9251faa5d4d40a6d7
MD5 4573014553356dea20836b6045c36aae
BLAKE2b-256 bcb2730c811a78d670104d40c7f08cc8092577cdff870cba42b3158f20fceb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e0027b20f296d1c9a8e85b8436834cf46560240a29d623aa8eaa8911832eb58
MD5 5e12997a1a2b4232f67f33c859f78400
BLAKE2b-256 d58c7660a949a020ac9d02b3166a25dd1c12144572d77b11ae92a31d341016da

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 2cec2472760d48a7a3445beaba509d3f7850e200fed65db15a1a66e315baec6a
MD5 d549b98bad0f3078ef1b266e9b760c58
BLAKE2b-256 d16a1bb836c18760dc1e28ca7a9706016e482ebdea633b980d8505dbb65e18f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 8526a32fa9f67b07fd09e62474e345f8ca1daf3e37a41137643d45bd1bc90773
MD5 14eee0e2823750999a84d29cd057e675
BLAKE2b-256 c4b89ddefd4670bfe9328ca6657ad335eb8d9c657466247e234a579818b6b0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7206934a2bd390080e972a1fed5a897e184dfd71dbb54e978dc11c6b295e1806
MD5 6d7d34cb84acf161eb7b83a4997e36d1
BLAKE2b-256 bebce5f8b7f61826323e39e099db1eb5c0e09b18315df1b1ff778f7ae9aadcac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 f5d159e57a13147aa8293c0f14803a75e9039fd8afdf6cf1c8c2289fb4d2333a
MD5 40d83a3600bebbec3b39cbbe17183099
BLAKE2b-256 5a4fcf0669c8a89fdcc91814bf92bd05cc363d5d12a79b656418c0add6f2d266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 a200c479ee1bb661bc45518e016a1fdc215a1d8f7e4bf6c7de0af254976cfdf6
MD5 a7935635c04c2128d49e71c1acaf1190
BLAKE2b-256 b57abb6c6e2cb2a066e347dc27d45d5205058b69d6c8b8d4ae2ee7d6b91c64a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ff4c667f29101566a7b71f06bbd677a63192818396003354131f586383db042
MD5 8d959e983b17e83ce8ba66361f1578e2
BLAKE2b-256 05e6629cf6b77e47fc7149f5724fb4853c48edcdeb10d8c64e391d7026cb10e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f799c1e9900ad77e7a3d994b9b5146d7cfd1cbd1b61c3db53a697bf21ffcc57b
MD5 5345cb0b98b3df96aa5ff6e6a38df513
BLAKE2b-256 432a0885f6f1921ec1ef4a8f8ab29ab0a335cc867abe4c7aaa4e5031435a32a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 346d1e4774d89a77d67fc70d53964bfca57c0abecfd885a4e00f87fd7c71e074
MD5 0c0117ffad9b872cfffa3c6c09084f37
BLAKE2b-256 d5553b315dc894b9726c16e5d58f48a618e6e2670e93c0eacc03fd30330444ee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6922ceac5f2d60bb57a7875168c8aa442477b83e8951f2206cf1e9be788b0a6e
MD5 5f2c69472f130550fb651d7cef937e4a
BLAKE2b-256 ad564180cd24fdc468f4f0beae3d4f5e8690a16995a561b1926dfdde223ecc3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8291d393321fac30604c6bbf40067103fee315aa476647a5eaecf877ee53496f
MD5 094e24ad2b14d1a945a6feaddfcc2282
BLAKE2b-256 93c6fa6898d55f8313e9649e2853ea3fede8b7301a5a1c40d8aa920252c31a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d8c1dc947e5ccea3bd81043080213685faf1d43886c27c51851fabf325f05c0
MD5 95fefc6459bf6cea6b19300e8de0b64a
BLAKE2b-256 09eb3274ea05a788bbdb90e3de90bfa27dc9113ee0114011d28bfad6d9fd34d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 047803d87d910f4905f48d99aeff1e0539ec2e4f4bf17d077701b5d0b2392a95
MD5 598b24a508c251dfa8e5e19455dc869a
BLAKE2b-256 802460a125d82d64b4d2a823f490904d8b5861117771237e34bb02e2cc311572

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8e97933addfd71ea9608306f18dc18e7d2a5e64212ba2bb9a4ccb6d714f9f280
MD5 7237b92745264ba3036be90010555a16
BLAKE2b-256 8b9d60d956dc3f457620997906bc4c220fad12b2ad1a3a5e2224d3b5dbf0a28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 27e55aa2043ba7d8a08aba0978c652d4d5857338a8188aa84522569f3586c7bb
MD5 c0df0cec15082a06cab1e46497638651
BLAKE2b-256 ae24e81d1561ab3e32be2370de82e13d3c50b68a9fed6977b4d7d596d3ddd1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 2a653cdd2c52d60c28e519d44bde8d759f2c1837f0ff8e8e1b0045ca62fcf70e
MD5 33f7a3c4165da268d79276980449b834
BLAKE2b-256 a6c086bb2d8e556062edf663f8d08c315418fefb80cae7c786cf39957e10455f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 92f072819fc0c7e8445f51a232c9ad76642027c069d2f36470cdb5e663839cdb
MD5 93aced3c8a96b83c23eb93104cc916be
BLAKE2b-256 1720e1e06a7f39c7eb27a1fe1c0281970c840fcde539a2f8ad99bb3155dbf3ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 27e2ed58b64001c9ef0a8e028625477f1a6ed4ca949412ff6548544945cc59c2
MD5 aebed845d5c7866fa9505c9f0ddc8be4
BLAKE2b-256 716a49fc94a39f44994c5db20259d44a849e558af5232072580a7614cdb2058d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07d2061df22a3efc06453089e6e8b96e58f5bb7a0c4074dcfd0b0ce243ddde72
MD5 517d84e7627e305de09923c1e0ebc86b
BLAKE2b-256 b90aa8c936edc431217186085276a37eba8e52c9bd4cd3025b38403baa2466a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3f14c5c405ea353b68fe105236780494eb67c756ecd346fd295498f5eab6d24
MD5 faf2f43e25dfcd42dd57b42ac1c29960
BLAKE2b-256 1876825a002361bcfb4444d8ff0bd5c75d60e449158c5a9cd3b884971b3ecd1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8dc542a9818712a9fb37563fa88cdbbbb2b5f8733111d412b718fa602b83ba45
MD5 f19918c0ed59a606ef1cd62dc5148c6e
BLAKE2b-256 7f5ae9a6b465637f3f0ba251fec754ee318f5a1cdb48a2be9f82aaf5565502d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 44a5142123d59a0dbbd9ba9720c23521be57edbc24202223a5e17405c3bdd4a6
MD5 a3a2f5cc9bd29c02fe587e486331a19d
BLAKE2b-256 1f05ad94e51c2f85e81dda82fc4684084ccd07c097c1c84fa92e14d3a67b0420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebf6c1d7f0ceb0af5a383d2a1edc8ab9ace655e62a41c8a4ed5a031ee2ef8006
MD5 e1438f79220886d42eba2c5cf773700c
BLAKE2b-256 27eba33a2816f7d6ff38551912e9e1af826987e15b2d8433d98998d960c9837c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.11

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d5a85344193ec967d05da8e2c10aed400e2d83e16041d2fdfb713cfc8caceeb
MD5 593bf0e85a8299c02b0a390e81d83fea
BLAKE2b-256 6158025683db98573fa3ddb3c0088f7b2038d58653d7617b18a4dc4642e6b2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c59218bd36a7431a40591504f299de836ea0d63bc68ea76d58c4cf5262f0fa3c
MD5 20f70e53b9600fa0e98515698aea7d25
BLAKE2b-256 10282f7502f397e02a9f81209668dfc8daa5b730c8cf2c99b33bac5036f0ddc5

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 632e3c1b7e1ebb0580f6d92b781a8f7901d367cf72725d5642e6d3a32e404e45
MD5 fb47748d074e977758b1c887d87a28fc
BLAKE2b-256 ff50e5eaaf5d3b80a5bb5b430ef51eb2a0cdbd9ba3d94b13eeb4183fe588185c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 6f8189bc58415758bbbd419695012194f5e5e22c34553712d9a3eb009c09808d
MD5 f9924c0246c38d7dbf0bba7d409283c6
BLAKE2b-256 6650bd12500853e0cd725b3a10109c30bc421d3af0676f0ead03eab0b633ba65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 97b908ccb385047b0c020ce3dc55e6f51078c9790722fdb3620c076be4a69ecf
MD5 cb0d6ec6dd1996736cf0e40100847980
BLAKE2b-256 540c7d670391c9c795d7b5e02c3388faeff491663732168736d65e9b805eec5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 300db1ede4d10f8b9b3b99ca52b22f0e2303dc4f1cf6994d1f8345ce22dd5a7e
MD5 2188a8700a4bdec6f21867870b2e9288
BLAKE2b-256 2de4e6b8a1633b719182bca234ebcadb52fad97f07c29c2b17bb4019d101e26d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.2-cp39-cp39-manylinux_2_4_i686.whl
  • Upload date:
  • Size: 322.2 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.7.2-cp39-cp39-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 df8083c40fdbfe970324f743f0b5ecc244c37736e5f3ad2670de61dde5e0b024
MD5 8cff4af48c65c23caefbbda95eee5c48
BLAKE2b-256 35f90f0affab09b4dd32949448aba6dfa999b403e5366447c1beb400bc97436b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a36bb1fd574422a77b36ccf3315ab687aef9a802b0c3312ca7006b74eeb109
MD5 d08c4d46dba62eb4cd693b916e3e13de
BLAKE2b-256 eb49e73d072eadd463a8db7b3c6dd39cb0e79a0753032aeaa4414a6e69151bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9838ec7eb9f1beb2f611b9bcac7a169cb3de708ccf779aead29787e4482fe232
MD5 665f4a1820dcafbc30923187f3a3fedd
BLAKE2b-256 7928fa1ab7c76c215ce9a1608fbee348249347827b5519e777fbb5660ae8c8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 910bd9eac2488439f597504756b03c74aa63ed71b21e5d0aa2c7e249b3f1c13f
MD5 07c62a5a078875552fa8fced17ab0cfc
BLAKE2b-256 4cf0342464b309653e8d4d5a3422e904243daa41bb2ace321a83861441b10b1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.2-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.11

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9cf09c2aa6f67750fe9f33fdd122f021b1a23bf7326064a8e21f7af7e77faee
MD5 dc61a1cb5f86d276af6eeb924bf0b66b
BLAKE2b-256 56b29ac0aff25b8bd648efdae9b64470937b722a815e3d9cbf04a0b88ec55439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2dda0c76f87723fb7f75d7ad3bbd90f7fb47b75051978d22535099325111b41
MD5 4d37c3696113e86a4bda8d8e31a3b246
BLAKE2b-256 9e3a09d6adf3ae5bae265234930ba57877b6c83700aaeda611aa8835d0e5c3fe

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0a470f8938f69f632b8f88b96578a5e8825c18ddbbea7de63493f74874f963ef
MD5 b8bd5fa927c3c9f64b31fe4ecbc3fd3c
BLAKE2b-256 482dc6d16876209a4ae531c01723033c219b3de4d8ee754528ea580edb9a8298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5a73f0f20f71d4eef970a3fed7baac64d9a2a00b238acc4eca2bd7172bd7effb
MD5 e19fc164d4851f1e6282aeaf149f34db
BLAKE2b-256 3422566d4bbac00d7e59534ecc139172d6842ec82133e5a2b96002f477144489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a62c2f6f7b8fc69767392084828740bd6faf35ff54d4ccb2e90e199327c64140
MD5 dca4cea079ced47c7de479807fa4bc96
BLAKE2b-256 f6510249ed80c1db0a2e24191a0e329de4dc9e1b7fbf70c82335a0af8b9fd29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 70f29e0504fc511d4b9f921e69637fca79c050e618ba23732a3f75c044814d89
MD5 c5624d3fd68f99eb6639767ef579b3fc
BLAKE2b-256 e2ffaeccae9f6c9430d70e86ae9b319d0f087ef563e8213326dceab79a4c99de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.2-cp38-cp38-manylinux_2_4_i686.whl
  • Upload date:
  • Size: 322.2 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.7.2-cp38-cp38-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 d104f1cb2a7c142007c29a2a62dfe633155c648317a465674e583c295e5f792d
MD5 02cab826f5d4b5b967f8fb8fc2973e88
BLAKE2b-256 21fd25bb73f2795d4a2f1d7ad59a1e91c5492edba64c348e8467be1fa638c156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70231ba799d681b6fc17456c3e39895c493b5dff400aa7842166322a952b7f2a
MD5 d09f51ba895c7995473f0db5a94deede
BLAKE2b-256 d95590154abe8935353008521c421595f563609890ab3e1e68a2aac19b5ea487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dc05618eb0abceb296b77e5f608669c12abc69cbf447d08151bcb14d290ab07
MD5 f73be8e1a16d9a5ef2b0147797f82fb9
BLAKE2b-256 8193c26615a062ca293b5d73b7c5303b7de2ddb7c3069d215d72924df655a648

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 594f256fa72852ade60e3acb909f983d5cf6839b9fc79728dd4b48b31112058f
MD5 08edb64d80a2a297e63983933c927cd8
BLAKE2b-256 ef6872970fc5ff6659e8074cb9a6eff272b461562d1e837e2c39babc602cc3a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 56c4b8cd0a88fd721213661c28b87b64fbd14b6019df39b21b0117a68162b0f2
MD5 97501b9c5bffa59fee1958b965516853
BLAKE2b-256 66b1a08f500e462d83d1eed15c088ee9b3a23c9b893b11b8bea1d4bc26986793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5540ce1c99fa0b59dad2eff771deb33872754000da875be50ac8c2beab42b433
MD5 5d80d9d29f6a1c29fa310cddc1aab797
BLAKE2b-256 3ab6c1417f804931b008c18be1244d0abb4318009f4b88751645bb8bcd6a324a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f5539a10b838ee576084870eed65b63c13845e30a5b552cfe40f7e6b621e61a
MD5 47038bd50e42cb87925f029a44fe172f
BLAKE2b-256 ca163565e007d926b6fa4bb80ae63d4e858e154c36812b374561ccce3ce20263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30d339d8e5c4b14c2015b50371fcdb8a93b451ca6d3ef813269ccbb8b3b3ef7d
MD5 4c60938236e61a3b177db2591158dc89
BLAKE2b-256 b8cbe70b3334f401309e1860d18ab1d30988fbbf818e88e56924db9fe46c3589

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.2-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.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 3e220d2d7005822bb72a52e76410ca4634f941d8062c08e8e3285733c63b1db7
MD5 d6a82a9266d45de08357a5f93cc665a8
BLAKE2b-256 5ed87d641bc6b849f26f90beeda4b91fe8bd21736036e0b95a133d81e8ea8883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 660945ba16c16957c94dafc40aff1db02a57af0489aa3a896866239d47bb44b0
MD5 1ed232fc2e42c0a1b0913e30ab85ec19
BLAKE2b-256 0adee5829be3c1a9cba1f43f234abfa73c6b393d151e54b82b3cfda3362f1efb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 b9518caabf59405eddd667bbb161d9ae7f13dbf96967fd998d095589c8d41c86
MD5 abc0cdc6cece3883c317ec3bdebc3da8
BLAKE2b-256 8c270b06c3302a12f2e71b7600533db7f0b6fa62492414d000c78fc283ea4024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 70d0c4324549073e05aa72e9eb6a593f89cba59da804b946d325d68467b93ad5
MD5 b636df2e9b0776596783d94d8d25dbb9
BLAKE2b-256 7dbc9b2699cbcd13383ae8d32a53a4ff290ccbcd6cf9afc0b867382def66f400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 7e998f86a9d1e576c0158bf0b0a6a5c4685679d74ba0053a2e87f684f9bdc8eb
MD5 b8dce94c024adf08f96352c51410a655
BLAKE2b-256 df88e4dc36b2b7349b56421a451dd14b5af4d00520e393b222045557b5128b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53abf577aec7b30afa3c024143f4866676397c846b44f1b30d8097b5e4f5c7d7
MD5 bab8269ad241f80e9c51030899c98e01
BLAKE2b-256 43049aba5372bf06b934de26b130c624fd21c5dd541eb3179cabeddcc6a71487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp36-cp36m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 883e7b77a3124011b8badd0c7c9402af3884700a3431d07877972e157d85afb8
MD5 0dc382cee06f3913e520f6948d96d57b
BLAKE2b-256 ea838c39b7fd3ec749855f4296fa2dc6429305b1c4544ccc38ed868a8043fa7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp36-cp36m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 b5af6aa041b5515934afef2ef4af08566850875c3c890109088eedbe190eeefb
MD5 0e25fbf13811d3202cabc3f3912fd6bc
BLAKE2b-256 e08a894adcb64e654f3d62183134cf4490210c1ae0bca94f7423531ddc881055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73cec37649fda383348dc8b3b5fba535f1dbb1bbaeb60fd36f4c145820208619
MD5 036941e38f87449c9933d9e57a588f75
BLAKE2b-256 ab35514cfe8179258744e34a163b1efb3742ce4b8f48a8b4e07be67c0da93c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a130243e875de5aeda6099d12b11bc2fcf548dce618cf6b17f731336ba5338e4
MD5 bf6574a382372cb010241a5c99fc685f
BLAKE2b-256 b34753f330b25f0f296673ef1c07ddaad19df30107092356e83d889a9cbf928e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f97d8593da0e23a47f148a1cb33300dccd513fb0df9f7911c274e228a8c1a300
MD5 35d1449cd70a3544c0069fc6d8b10b59
BLAKE2b-256 6ce12aa5b4cb2cfd0344c90e6028133ac7953d573155b86a8945731354531533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f576ec00e99db124309dac1e1f34bc320eb69624189f5fdaf9ebe1dc81581a84
MD5 b0c9b6bfc96839de340bb235863c4583
BLAKE2b-256 61ce57c772837e9d08188b5807cce63ff9a11c63522b96d21cc6e8e5cf0d7f1a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 114115af8c68772a3205414597f626b604c7879f6662a2a79c88312e0f50361f
MD5 8541b7dbdd24b66d70c0588424358fa6
BLAKE2b-256 5b7c69f8b828566ad204a729306bdbb48f24bfa9965c538d2e718fae667c3862

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a59a136a9eaa1849d715c004e30344177e85ad6e7bc4a5d0b6ad2495c5402675
MD5 b264578d0ce262daea3015496bd3b6f2
BLAKE2b-256 8997c548a2de45579d2918df053bfb952c0a61d9621f067cb7def0311d875de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 e2476ba12597e58c5fc7a3ae547ee1bef9dd6b9d5ea80cf8d4034930c5a336e0
MD5 6de4d437d4353e5f987060596103f7ae
BLAKE2b-256 e5f1a6186da6f654100f8679888ff69a2d0a7b881d07d906181d67019cd32d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 2bf6447373782a2a9df3015121715f6d0b80a49a884c2d7d4518c9571e9fca16
MD5 7ec17ede6881bfb3d6c20dc7b9dbd530
BLAKE2b-256 0dc88f2a1866adba122d8e1c70a8d5c106551aa1c872fa7016eb48807bac0853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb1cb423fc40468cc9b7ab51a5b33c618eefd2c910a5bffed6ed76fe1cbb20b0
MD5 790bbd345f6276555fb1e769a4f0e2c2
BLAKE2b-256 11b1e7ce592f21dd12cb48a586989d896ed385af965f6d11cea5e36f09b19e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9d1bcb6441841c599883139c1b0e47bddb262cce04b37dc2c817da5802c1158
MD5 a9959ef8f9ae460623a4e348f1e7ea33
BLAKE2b-256 ea442b166df6cbd254ccd66aca2fd7deb27da0350aa65c40af8d217e3243ae25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f19a3e658d92b6b52020c4c6d4c159480bcd3b47658773ea0e8d343cee849f33
MD5 4101582654dd6fe0733adcfd6e7f00e5
BLAKE2b-256 c1ac00d1bb1a468c281747170fe2dbd291bfcfc4295aa72c06046e9056b9a088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 74c3f006c9a3a191ed454183f0fb78172444f5cb431be04d85044a27f1b58c7b
MD5 190a142c73f437eedce9e10af4ede158
BLAKE2b-256 0efbc15dd489b4dee1f998be60b12d9c4023e2d4a872e596b6606173f1dafe99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 a371274668182ae06be2e321089b207fa0a75a58ae2fd4dfb7eafded9e041b2f
MD5 424bafab136c4357df704f96669d9dac
BLAKE2b-256 5ad290c5ecb4ad073b71eab2e586b91dea5c481493fecf162fded3b465c163fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 7b13e7eef9aa192804d38bf413924d347c6f6c6ac07f5a0c1ae4a6d7b3af70f0
MD5 cc8e425d9665efe8a59e79bdde0536ee
BLAKE2b-256 6e8c0f1c89064c3b45c7046ea103ba1a22203f6e2884e7930e2da2da143d70e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 2bc21650f7b9c058a3c4cb503e906fe9cce293941ec1b48bc5d005c3b4422b42
MD5 cca7a8018406a22c9a8a256f16d3fc5a
BLAKE2b-256 a371c115f0285229226fb07699244eef7e4a493b8a2c4cf8f2f48afd12a3600f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92590cf54318849d492445c885f1a42b9dbb47cdc070659c7cb61df6e8531047
MD5 704ce3ca9e4a0b6b4174675bb5c9bff0
BLAKE2b-256 beb248d73475348589f733a8e043bd16838eac4f3b175dadb9c3fa02777fd2b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 489a0ff15caf7640851e63f85b680c4279c99094cd500a29c7ed3ab82505fce0
MD5 63996826356808a88b4f4468059dd301
BLAKE2b-256 4b642dd533d0889b569e06836abcd20d8b2b9b6250d389aa35dee69437d1d390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae1100776cb400100e2d2f427b50dc983c005c38cd59502eb56d2cfea3402ad5
MD5 b9079c98bd5e78aad53bf1633c434566
BLAKE2b-256 91fbd1b77c3b67e7568a426215a1373a07f11ffa5fb492cddfcf6aa4664b25f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6ee5dfada4c8fa32f43cc092fcf7d8482da6ad242c22fdf780f7eebd0febcc7
MD5 5fce020098056b89a692b8a82f88d2f5
BLAKE2b-256 fc833e70aa0b9e48adf78fafd71f69068789b6aa79f4b026b45de9d63e3eb4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e17104d0e88367a7571dde4286e233126c8551691ceff11f9ae2e3a3ac1bb483
MD5 c0b0117542095ead825ba1ec7584d1fc
BLAKE2b-256 d255ba8e6f11c3011140faa06f409b1073ca441ba3cc69c38099d6e29af6d1d8

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