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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.14+ x86-64

zstd-1.5.7.1-pp310-pypy310_pp73-win_amd64.whl (165.0 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.14+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

zstd-1.5.7.1-pp39-pypy39_pp73-win_amd64.whl (165.0 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (315.5 kB view details)

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

zstd-1.5.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (291.9 kB view details)

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

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

Uploaded PyPy manylinux: glibc 2.14+ x86-64

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

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

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

Uploaded PyPy macOS 11.0+ ARM64

zstd-1.5.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (262.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

zstd-1.5.7.1-pp38-pypy38_pp73-win_amd64.whl (164.9 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (315.5 kB view details)

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

zstd-1.5.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (291.9 kB view details)

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

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

Uploaded PyPy manylinux: glibc 2.14+ x86-64

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

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

zstd-1.5.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (218.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

zstd-1.5.7.1-pp37-pypy37_pp73-win_amd64.whl (164.9 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.7.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (318.1 kB view details)

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

zstd-1.5.7.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (293.6 kB view details)

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

zstd-1.5.7.1-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl (317.9 kB view details)

Uploaded PyPy manylinux: glibc 2.14+ x86-64

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

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

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

Uploaded PyPy macOS 10.9+ x86-64

zstd-1.5.7.1-pp36-pypy36_pp73-win32.whl (210.0 kB view details)

Uploaded PyPy Windows x86

zstd-1.5.7.1-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl (317.9 kB view details)

Uploaded PyPy manylinux: glibc 2.14+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

zstd-1.5.7.1-pp27-pypy_73-manylinux_2_14_x86_64.whl (317.4 kB view details)

Uploaded PyPy manylinux: glibc 2.14+ x86-64

zstd-1.5.7.1-pp27-pypy_73-manylinux2010_x86_64.whl (305.6 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.14t manylinux: glibc 2.14+ x86-64

zstd-1.5.7.1-cp314-cp314-manylinux_2_14_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.14 manylinux: glibc 2.14+ x86-64

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

Uploaded CPython 3.13t manylinux: glibc 2.14+ x86-64

zstd-1.5.7.1-cp313-cp313-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

zstd-1.5.7.1-cp313-cp313-manylinux_2_14_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.14+ x86-64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

zstd-1.5.7.1-cp312-cp312-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

zstd-1.5.7.1-cp312-cp312-win32.whl (149.6 kB view details)

Uploaded CPython 3.12 Windows x86

zstd-1.5.7.1-cp312-cp312-manylinux_2_14_x86_64.whl (302.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.14+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.4+ i686

zstd-1.5.7.1-cp312-cp312-macosx_11_0_arm64.whl (228.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zstd-1.5.7.1-cp312-cp312-macosx_10_13_x86_64.whl (269.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

zstd-1.5.7.1-cp311-cp311-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

zstd-1.5.7.1-cp311-cp311-win32.whl (149.5 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.11 manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

zstd-1.5.7.1-cp311-cp311-macosx_10_9_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zstd-1.5.7.1-cp310-cp310-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

zstd-1.5.7.1-cp310-cp310-win32.whl (149.5 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.10 manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.4+ i686

zstd-1.5.7.1-cp310-cp310-macosx_11_0_arm64.whl (228.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

zstd-1.5.7.1-cp310-cp310-macosx_10_9_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zstd-1.5.7.1-cp39-cp39-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

zstd-1.5.7.1-cp39-cp39-win32.whl (149.5 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.9 manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.4+ i686

zstd-1.5.7.1-cp39-cp39-macosx_11_0_arm64.whl (228.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

zstd-1.5.7.1-cp39-cp39-macosx_10_9_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.8 manylinux: glibc 2.4+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

zstd-1.5.7.1-cp38-cp38-macosx_10_9_x86_64.whl (269.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

zstd-1.5.7.1-cp37-cp37m-win_amd64.whl (164.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

zstd-1.5.7.1-cp37-cp37m-win32.whl (149.4 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.4+ i686

zstd-1.5.7.1-cp37-cp37m-macosx_10_9_x86_64.whl (269.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

zstd-1.5.7.1-cp36-cp36m-macosx_10_9_x86_64.whl (268.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

zstd-1.5.7.1-cp35-cp35m-win_amd64.whl (237.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

zstd-1.5.7.1-cp35-cp35m-win32.whl (209.9 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.4+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 3.4m manylinux: glibc 2.4+ i686

zstd-1.5.7.1-cp27-cp27mu-manylinux_2_4_x86_64.whl (311.5 kB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.4+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zstd-1.5.7.1.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.1.tar.gz
Algorithm Hash digest
SHA256 1a8550e35a68e7530935715342dab3bb903705e9e91d87ef8845694b7bbb866f
MD5 b6b748595161a2a3a819f6fc9cc3e74e
BLAKE2b-256 63364a5a54756881bde43151dfdb3bed2c4b7f5151b4274767d372194ce13a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 384d8026627ffb6b16db7cbf85e05ee4fa484f2284bffb365220314a4cb7b1cf
MD5 05dda5a75371fad2077b72c6b7b1ce26
BLAKE2b-256 cf4fb28c833cd65879c376895f7ef78b40b27a707d4e9b91ba4ce4b252a92e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c59cd28edce97da249f24ac35989a51676df371fd7ed72e85feb37509e111454
MD5 e5ae0514ade31e1a1a8b3d5cfaa86bd0
BLAKE2b-256 fc11ad6964eb9cb09fa79b5fab032861e2240f15374d7b22db79bf4916f400f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 5d84bf6a49aa1e95ac665a5cb6221c89cb8262acd4e7a8ff4e18372e8dae8d32
MD5 4855440b32c49d6504452b9c65c94b4a
BLAKE2b-256 89a2b9ca7ac997ed6bb7ec283e0291f868fe3ca23ecafa459247580cde78704e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e726975c526a99a4d6ef87f2e15f0d3d09627a6f1080bba91d5f8bf1f64db1d
MD5 558fae50d20dec4d6ae41cb86e629a33
BLAKE2b-256 7a2ddd23c00d7b6df8c2b4700773c307b54cee8c49c992e177997e28bb7f662e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef881180906e8dfc224e48f10d0b6fa52a2798a63d4e1d60553fc266a1ab1c92
MD5 af0704ca79947d28db1fda7cb2a7b243
BLAKE2b-256 981107591d60fde31bd57a31a3932e41e7069e183428d6406684411c9c10977c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6778c98255dfc5e4f2e364eac861bd786f95e601b9281ba8005719c6d5ec262
MD5 fd45ba34b346ba7adddaebf47ddb9551
BLAKE2b-256 7015ba727e21ebd376d66f9fb5882c33527da1618c504eb9232971230482768a

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 5c067e60e17c6fce2d8faa517da140361ea54e1c5bbdf34eb61f9fe21d913d2b
MD5 a98ff31d025c47de0a65d85d59b3a1ee
BLAKE2b-256 fe06aa91fd13fc724100681ea79c86f4848fccd627f096b2feca43e07a186ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a5aa0cc96a16e966c208f56f8c68a2d747c2fd4b81d14e203af0fb8f015f6939
MD5 9237cba3ff6fa8b4e8135233e77b9f64
BLAKE2b-256 92a91898cf9de80454a2a394e01c05ded23812644310f82f9697248df3085c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 86f055a73dae0d057408dac722f595174b3d74e9139661f0eca21bc10da0a53f
MD5 7643164970d508ae42a5f1c3adb63cd8
BLAKE2b-256 896cfaeb2e31420c0a8b1a2161210d897aaf1dbb0b015790f1fd75c8bb4c3c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7bfb59796e5d2e5c7e3aa29e7a6425231bfdee30bcf672e07421f96c0a9795c8
MD5 242ca64f6ed232f439f334d10cc0e9c2
BLAKE2b-256 fc21cd2c5907cdc7a88f34c8c5232af91f21c24615c2b4366cbf4088f0928b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c77a045824b80b764d0e7f97c435afe642d02a7e78d3effa2d773ad946d13f57
MD5 af722380dcf5cf0cd553571d75b9f5ce
BLAKE2b-256 6d5feb1c083dc1fa6fda3859dcc4e7ff418bcfee7806174d47dde399e30569df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9048429a8f0aa10047e4537ca762a4ab0abc5d3d6f1582377074013a05322c7c
MD5 d1ca7c15ec0ac2813b98977ff91ce42f
BLAKE2b-256 14b60d9d6e93f518f01ab3db2ff1b5402f94227e1cd54e1a24f5d0dcfad1af82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4e01fa926d940422d59c04b93a65cb749eda05f37953b227429f8d35d3ea23b8
MD5 94bafe7bde36556b98f67905e7d7bf1f
BLAKE2b-256 590f9b99ae6451fce7a7b07cb80f0f78bea436a0fb72781a1adac89b7c50d0a8

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 66a95a2c8da829525bd17b10793a536fb03bed16f9ee539e5ea0674a0754009c
MD5 8921e5e93b14478db05965aa7e00a3a8
BLAKE2b-256 f60900342360cd04a6dab08f9658e0507be2c05f2f4de10f7c7939b91f2b8ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 429bf78f93f5ac44d49df03ca79a075ecb83ee789664a040d575cfe3ac782ae9
MD5 126f121a5e72abfc5dd621a6efcf6958
BLAKE2b-256 f845ac63e8fa85075a8250b27c3ce82b2a65b3c708fd034743b3d0dfc22f5030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 881739ec078d4de8eaf42591c2662244f59f94f5cae239dbff14078a3e98975e
MD5 f9bb54009d4bbd2b7ff2ead48daa8b61
BLAKE2b-256 3d6aa2d2ac3d48e74956daab53c7af8986a07f4d9132cd241a15aaf9638dc8f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 c0948ab78c00a376b5838878c65d2320911cf7b924a4be91e61a6f92e8365143
MD5 8b548ab72497607b7f312e1947a91871
BLAKE2b-256 dba3a45a619bf010f5762a34a44abf8c64b98605a52fbd8f20ae6c5bf45d6afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a88936c66e245f6966fb69c4b07ade66dca2f81d07bcfa34a80df8e27bcf843
MD5 556d24772a1338a355e704e7137ade22
BLAKE2b-256 ed953c46e9b5e2b3f6f173962fdc40681408bb9b7626e27f07a5aaa5c7a82cfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 093ba1ea7d50ec7d94772bf40ab809ab079496ff86a56ae8d373e902e573b158
MD5 bc8fb8354be2836f691fb72b682f31f9
BLAKE2b-256 995952347341833cc3c8af08e151424f60e646b31576d7422c178af092aa2566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 596f1055f96dbefcb25c841b0dde08b13963ecc0cfcb3b9b1f3eb1255e3158c6
MD5 5e15957d1b1c196063f31970057c106e
BLAKE2b-256 abee73d5e289090a03c015a9f14d7a611cfa2cd54a8a86fa6267f63710de6619

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 1a0c3768645bbd34a25905c2051094398457463a4a3e0dffc582b366d956738b
MD5 88e1bf682ffaf4d454a9b97894804087
BLAKE2b-256 fb2c6c6517eb4878323bddf7ffb2a04ec4528fa46f5fcb52efb72ee61b3f44a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ce2cf3f9f129f06d89c1bf4d6d290429fff8881e9be28bfb0b7f166f2f43bf18
MD5 810457bb430705c86f2369506d64727d
BLAKE2b-256 3caab8d23375df8474ba9df90cf2e077634ab626f74c647bbffa3d9f24b8a06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 e676b10cc0d9ece70f35cd63a2f627f627e1e6e4916ea80aeda6d30bd4f6f626
MD5 72c7084bba6b54e7af9b48004197a65a
BLAKE2b-256 6732da56aa5699918028b2da71474f7d48d1fb2235cef4ac8ace3346459a2fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 66f99664c3569acb8948f8863f6f44c417bdc7c6f15bde6a681f19a9c1a80e0d
MD5 fb30c00a4f304fb12337940e676464dc
BLAKE2b-256 18a14a3c0c8e597686b42a34fe21b80463538183581d4afbe2ccf0dfc701461e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14bdc723ea5f947d00be1b752ba66cf5b5e3eb3e2b73dcdd33163889176d93d2
MD5 e300d0e2a65b6f835718504bef8fa46b
BLAKE2b-256 2d76e09bc83eb6974cda94fca3f11d50660adfb5f871e32cbc1578d35802c4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 548f0e30df242ecca243cbeb7964f6c48f1a99d2034ccedd410b92be9eed2e23
MD5 270ed3e6e6ae06b9b02e944658b4eead
BLAKE2b-256 f3a0430848043c6e138255f3cb1d3dac05b58187fc58a236e69c4ba18dfd0b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 ada04970714d32c3188f43c9da256ea9f08194ca88f17cdc8dadd22f2b7fe2a2
MD5 183a718f7f2cbbb595d2d8bcc2069cae
BLAKE2b-256 d577facb8908046f58f46ee8d1b52b480115262e71b99c98977b568033fed994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28fb341cf4c991202daa28bf2a6f0666ff293fe7ab543a239bdf7a0f19ba4885
MD5 5ded0e33a30c8d805760304ee492bbc7
BLAKE2b-256 2af108c27506d68472a3c072cf7789a91ebbafdcce69d7c02ba3c1c0a372fd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 09c73462f12a087bb3e87755666bf9ffeb6f23d8379e56064ec90c878014b02d
MD5 2f384561ec47bade42ae09bd660bdcff
BLAKE2b-256 6018b6ff9ef84df5f9da870258c1947dbd6d874ab76e67699d8d0cf40736c62d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp27-pypy_73-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 442fd87e0d922a62133e948439c92ec0516def3297db558309e51c3b20e16952
MD5 f7968d554d69144d82d04e53c64a81a0
BLAKE2b-256 a6e11a9228cea441aadc050b7f2fb4b8a1f689122ba255679178d6e82165900e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 640aec9a83ac3f1255fa396efad159c1c6e4edc6a35eba892847f6a46f56f1d1
MD5 a66a104676a23ecd0e826543df8e33e9
BLAKE2b-256 f204a87a499d78957d08a0090ea2815e62b1ef4b89d927d35fb79924834e26bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1002cce47650a84a8d31b14ba6aa29e99c7faca2cbb694ecc05986686044bab2
MD5 55b77655831a2ce29d8e854040017ea5
BLAKE2b-256 675d50d16eb37ba5d99cd41a75e0fc2d170d3154961ff47d5dee8a3dc6a1f246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp314-cp314t-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 5881468cad917453d57ea031325446dd2e2f9675791bab60989bdfdc17f97bf9
MD5 a053ae3defb0446afe09cefba6a3c0fa
BLAKE2b-256 01531e90cff9191faa58e9960bf12b488c55539084bd2d3e3140f52ffa677ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp314-cp314-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 a01a2d800b5b143f80f83d3116e82d40f71f442d8a2619d5a0ac1c7ee2374ee4
MD5 07c601ac46f29becce81ccd9f8761607
BLAKE2b-256 f3fab4162fd76ed35247f170f46bedce6626d42895e03c101a4fe7c6211b7733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp313-cp313t-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 751f252bcbc2e52cc71959c5ea150c077e40d70c4a22fb2438da89afeed5a9ed
MD5 00a07380d382b57e791c5d9d0b5a7207
BLAKE2b-256 0649b6249f64408cba0e44f905e5eaa6651a36f87856443bb979bb1ee7f6ea16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 165.0 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1c649be27b2696485d6edeef6927751c7e9f550ec5d14035d71601e28f2d50b
MD5 fcf5949b946545af70cfd5e54515c17d
BLAKE2b-256 2c6c18282422c644793cafde1caf93eed1232c4aa0800e520a2bfbcee6073452

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4a88a4bf433394fa121a45c5aa78406d03bf6fbbb4e5bf99717e4b04b2f8cedc
MD5 73ebee396245d7f0920545df8a71de7c
BLAKE2b-256 dd8199a0f67950fc444c6314f643021c2be9f8ffbb0a7b4b6e30d34c7fa9c465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp313-cp313-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 ee93f8c89bc957943f74a68c932a891c05807577d16e9a148cf8726731866015
MD5 8943837b85acc47ad1a018451771605b
BLAKE2b-256 9b606476ffb0960765544215d0a3d5507d3f7b29e27187a542d53196f13334b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 920672f3ec9ea1dbdfd1cffed50305ff258bbc349d22ff46f462b081a0915edc
MD5 f79ee984be124f26f42f4adee9a80634
BLAKE2b-256 192677c2220498bba039ca4f1594be2c163aaa39daffea1ddc3919d7c30eebbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e813581dfc2d0ae0f4a6b0570c1715394d3de7488af2ead11eb3e5e35db71b33
MD5 f8484f4567c6e8c93972ffbfc5213a4f
BLAKE2b-256 dbab597e3eac46f74b7f4bcd761060cfe90a71d9f44bd774909dac560f72069f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 165.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d26b0b9f8f5d8c2d62648e45d5a4769849dc17ea8c571e5406fbdc69ddd8150f
MD5 1a07667c48d5f47630d584d1563b0d00
BLAKE2b-256 c0311c7965ca552916f7f0de69078f0afecc4b254781b21036a6d7f455c7feb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 149.6 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ea6bbef6efb622bbd7dd6643f1fe59b81170293ce10bea8a6bb7e47da05fdf48
MD5 288c47474f6aa03cabea0224aae2eb8f
BLAKE2b-256 55ac9d1300e5a00d03dd08490c54128a5ad6b4a6052a9123c105fb28fd9c95e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp312-cp312-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 dca3d98ca194a0b74346267a315fad52d33f72e53bc4f8f4012b12b17ef30084
MD5 2e3bb794ab5d88762b8c31cb8eb49073
BLAKE2b-256 54ebb1fb74c7abca731efc38e3098499e23617fcb55ddf5b8a7b958feaf937b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp312-cp312-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 103420af24ec1f01d274af8df9157c1e20f70cc13d81425c50854d19bb06bff3
MD5 6f979b28128aa0fbece1e94c9f7cdbcb
BLAKE2b-256 b7461d973ccdf53d6b8e2ddd802b35fde59476e4f0a014e60b16d387d14a10b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8693329ae29e64969fc765c310b6baa1f95712bf623c134b213f50fa9728de44
MD5 0c1dd0ddccff8368884af895f42120f4
BLAKE2b-256 ed3cb041e0871b6ca8a4fc3056ea8372cabcd4feba8f20486934d2b35cddd282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 33c544923a6f78bfb7b65051b2ddb41d7670233f1cc674047b37c3a1370b1ae8
MD5 b1c2b6a43603598dc67c77f9fcc80c5b
BLAKE2b-256 64823fb94996bf760f857487c55e4519f743da1d6f3355ea4802847dfe10634f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 164.9 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eba6258c0369404c792ae12a47338e1e3710469e9849605fb6692336faece02c
MD5 0a3aed94b2125ebf4388a0d5524f8369
BLAKE2b-256 d9f61ee8171a786fb11c11b012820138acfc8c74c16b6fe4c2431f5ea774f92d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 149.5 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 27f422083004f449747d471e35c2d2f287053c00934e239732591187e4197ee2
MD5 1c245ee05397d341e3d9544028f577c3
BLAKE2b-256 ff284057b83b7a788cd2a29896e7bd857289e6908978e6ca083a2fc63b0bf123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3602ae5782e650eff40fb615dc50f3b1e64a2fd4eb7eb295ca83d4be669ea9f
MD5 c83f43e5a1a3c6b35a79351191b70ee2
BLAKE2b-256 8faa2480ac1f209a04af080e5213bec3e82d89361316b9e72e5ad7e5922f6873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5186206449adf8f5ce41d0589519e5fbfab4449c79a80cbc34a3cec4a2dd3e1d
MD5 1db6f75db50082c33ab475db6df6dd55
BLAKE2b-256 f880b7e83bf25c3e4a9bf4cbaf7dc7e8e6725902b77078ff58d39f1004a9e5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b532f136c0f487f57974a453c6808d31ddd386a93c0f6b6a89770e8a3cc6646c
MD5 24dc852e6bd9fad4d5176cab364cb389
BLAKE2b-256 52e180ad4f9079edbc60f57ef90f72dca17284699b8c2d386b2b9a1429ef346b

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 dd9dfc594a18a95c90164dab85c32985cd3eb23d0ac84c9d30dd99d271073ac7
MD5 edfbaaec6027d68b5ec94aea8259c90b
BLAKE2b-256 ff91a4125a0fadcc6af67373079586f03bb7a771164b1e3366c14bb812684c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c2c8b620e2d6fdc409686667a7faa5a4d1f101ce00b0216caedf2ac9f105cf95
MD5 daa9f9a81df311a55e4ff0cccebab33d
BLAKE2b-256 c3f7dd3c9b6dbd6786df2ce59be0fb9f9dcf89281ffe617d950f0b3f8885b392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a1c675e740dfed865c6205fb02a83855514130c1511f464ed1e6ad14e18dff18
MD5 38fa34f166f566a80fec99f964a72080
BLAKE2b-256 39ef5bb977949dab39baeee5e5435d998a228e1276d47caf57c8dfee9f3f8fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 bf1c15a7260fd8ecd309bd13f7171bb1eb04bf451c2d8543b068143c01b04b07
MD5 5b74e62d40f5008f1a719b5c358ad9de
BLAKE2b-256 0163833549bd97f230189dbdbd90d036ef9c6e18e4505527c5ae9cbf7864c420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 99bbc9eabd5c0626a619343f8d788b682c9c1f648a8eef7738bd375ce9676408
MD5 ad7687c6368013165ff7565dc30e691d
BLAKE2b-256 9034dd00f7963ca09c327b83ee77dd8f2247c5500735b340fda047d6a4f03b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bb066635f4b9850593ad9b31325b7d5c711c490fb49f5ce22fba7b541367f46
MD5 f0e6920df5a337baf2919df6a7aa84b6
BLAKE2b-256 9012bef69552a53413fed28cb6c668772baa7de0b896b9ac9c2b0fdfbe84ee34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f91ed2f1874f31fa17df650199603ae11a510b96d6de06c9792408705538c7c
MD5 5a0f12c0d25ee18be310c376ad088d09
BLAKE2b-256 9fe35be836cdf9654f9707fa588959acebfa136374de632139eaa328fe5cbc93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 164.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4cf8102c12733c318aed64b3ef04d9d0de8600088bb9a49e6f74f69d96090245
MD5 5bd25e2e7b333676d80908f41fed8702
BLAKE2b-256 72f6e9d3f4bb932a7c5701cdd8d4551e0c930067d11940b3296b8f879a7dbec1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 149.5 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6ebdf72c4afb7bbd42d94db4906f564450ec324c862da04288860b49f7636591
MD5 493c060684118fd2b35e8a7f6c43c265
BLAKE2b-256 41607c22305a5feccc65ad60dd8329f2e66e94396c5f9736642fd20b80c3ac24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c15320389c2cad5596725cf23900181ba2293eeb186e1a65a111212b8542682
MD5 8831e0e5282fee7c5356c5853d6bb743
BLAKE2b-256 f1d74885ebe466e102bd60d79410ee0adfab04a772b71504fc3df72ae61c199b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ee3f87ff16fddc0868d9c9cefc50eddd46cc5695cc38d36060fd40d31d7ed73
MD5 4420bc72272fc74e45caf9abb77a7bce
BLAKE2b-256 0a86c345c98f4b89c0f864df236bf4ca042212d452a4daa60d6fdf5e7e53666a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdd71b9a1f7cf52f04fc0c6e8b572aa764899e7c6cdf7f7e3d5fb7d7f74d7f31
MD5 1013f0ec9db2ccbca5a353aa625b9010
BLAKE2b-256 d90bfa9879e84caa7c754ecb66ae1f701b8b6a8b05f5ff400381d08f74796fbb

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 26a6506beb2820dc25acbabd9cdf8b7b0c994f8e3a2e18a0b304399dff682632
MD5 3098a2f07896ce4d425371475eb493c7
BLAKE2b-256 a9c1ae3f3d19381ab9d787515ac03c5f755eedfbda5fd9a4e9eef3c8a8c10d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 afd68b07991f29a4f4161fb48802ea62766d79edb55442f3089f88ea16531aff
MD5 ad12b701ee9f2a0a0f7b52dfb0840a12
BLAKE2b-256 43752e9c1fa8c61f77c5b0d066e0ca828daa6c1ff4c08a6242bcfac939fdd6c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 dd030d5294fd0d0b3c651301fe57a350c3ad8f8538dfd7d3a5f3164324811d71
MD5 7c7e0692357d05c3e7c5ad65fecc273a
BLAKE2b-256 c03af29026a98993ce45a26e661dce8810fdea99a44930cf082a6ced6ef86cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 bbb660f37cccffc23986e4f484092ff7709a112b42630439da2ac8a971a50e88
MD5 bd4b98cfebb26920fc4148a65dc98512
BLAKE2b-256 5803cf3303608fb011b7bf9e1d967c4e579c1a69f460ca260498e21760e92a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 4e1facfe6fbc6c627c6809bae257e8afd2079e5126c13ceed7a67c4485420b54
MD5 0b4339b92156903655a46803d57f424f
BLAKE2b-256 1bd8b27aaa474b7729bfab360223972d363a7291ba976db941f72ad6a829a6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fd69083c141776516429c8ff78f04d6f61113f6b246795be234d95929eb2e6c
MD5 3bb1025238dd5143c6e66a128ab7df55
BLAKE2b-256 bd19294ec69b27aadb6dd859c4640f159fb7e1bbc2f4bca6f911abd717593af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df5c8b595dba4b14326f5375b8ea166bcca27c4209f7dee1ebce3efa2b30c95e
MD5 64310b5ef7ec86747c47006a2484b03b
BLAKE2b-256 1af2f0ac6abdd9647d5d5045ed6814a3dc930e3b0c86597ddb0e1efeb402c97a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 164.9 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 780f68656c8cd7836de84bf4763c3935c71628ee5177dbd9968f0625b77e4619
MD5 2c5781f0e758d1d0210aae9a4dc3d55c
BLAKE2b-256 c87e682d9f07290f6cda4b58d9a905c26d7db3c98d3f9b36373185550e3ad46f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 149.5 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ecfb27fd8d32f10d280ba954595bbb33c6c884bd36420e54dbcaed071b26066
MD5 a82b2eb9256198dc0d0e16a22b6d0b3c
BLAKE2b-256 060028d4d903537ad8026468a65bdcc3f3e1a3a5728504dc0e2c461172f5569e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 116fbddb865f158aa0ae77cdf4e8884961e241ace8ce964506545dcc5ab686a3
MD5 c71691248e8bfbd4d34c14893f5c996b
BLAKE2b-256 476fa22843b0af129de05eeae21f3e296b255ecfe261b20586fe8c1c24ffb060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afec818977497974892969e67aa55382b3181d3cbf98d17ca7951f335b9d67d3
MD5 5ca0a6d8dc10a129abdc449aa2d905ba
BLAKE2b-256 60de0a4bd9e7bcb0d69f6f9856f302d3fdc11a8a801a72b6bfc8f61ade2aae62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56618e28fb141537c16c1e148900a2b4f8df2f9a7e830756b54a3f844c1aafed
MD5 936b78b86407fc330102eae2b37c7ceb
BLAKE2b-256 b566a97f326f653a6a2962ed5174f03f60625b8078359e05f0bce8e9f0ed678c

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 332499946b851cb95a9f887e591a6f195a3a636ccf4f612b11bb498d821443ad
MD5 18f775a793778a3bf7d6cc90fdd17a51
BLAKE2b-256 6edc31b87e8dc6ef7bcdeba7ad3d76b301e3571d5403e6c082662c3faceceb65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 1900cabafdc552e2325a1950d77d6957dbdd1c480d516f30844bec217f7a4a11
MD5 6d4404f6e6334842e0879e7416436d61
BLAKE2b-256 3dc695edbc4ef8fa5ee74eb0d9efd44f4f83af62c24d1ffe24530d659b8d4fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a7e0d60a10d2811a9258c4a0f0b1757f7b9a1dde564a63e939c27cf3797ca3da
MD5 be4f7777f552c3f753e03f91d14ab53e
BLAKE2b-256 c441db56ff40fc4e7078c4d614d175b6fcd859e6b711c58dc44e7364bbf2b2db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 d20c08e8583ccfcdca7dbf2311febe937de4ffeaaa29515d35b009e00cfe8852
MD5 5f5bdaa06397013953c1f4342d73b01c
BLAKE2b-256 637fdd96bb5e93317c33a9ec3d65ca9912456360abab3821d856b797d5ccb893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 fecc513b1c57aa2ddc7af90f6094884f29ae86f5f728ff5b31b3440ea9d540dd
MD5 b2b6456a053bc108ef2275f044dd462d
BLAKE2b-256 8c0473d5004caade351828da7f2238c27529e7ba53336c205c9fac886c386aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2d33ef745a3e70ae98231a7a349680e7b0cc067217a45f471d91752c6ec83b0
MD5 ede2577f73badff68089aa52e2cdc5b2
BLAKE2b-256 487453b2ca7ba973cbc4dc836d8d578ee66090eabc10ac395153fc1698c17786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ede2acde5f8b4dd02a246b6bbb78e604b22352724474519acf986020f502398
MD5 4828b4c0f6cbee2430327c87c57e3290
BLAKE2b-256 811b93c5fed0a7830d33a2a236b9ada5ce04e548f38b62b8d72a7fb07d1c3752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2111c8d37f7a582d2f81f6bdb32e3d7cbe2d36d35a6071db17ef709c3166d8b
MD5 cac38887f0315a9b2d5796d999acfb79
BLAKE2b-256 9a3228516064338b9d13f2dde423c74c10bde7c79bfb21cd2e0294e1d3002b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08eaeb0d0e30f413e0def28efd0f9d3d9c09cf4ad308beae0291e1d632f9e776
MD5 152884e637ced22071cb3dbb538e3bde
BLAKE2b-256 aca6c2e9e3f199445a1468c8c7fe79b7166f7a8a07336c82a1a19a86c6721eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 025eb69fe0cb8fcbbec3f34b3159c14472587c8d7bba30a3c0b8e0cbb61f2fc9
MD5 999e735acefbc58560bd0b68ab47c6d2
BLAKE2b-256 aca99ccbd4484f1385cd76455a2f70f40e543c03096ff8d78060f9ad5f5ce3c2

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 102267fa52c7222792767fa92640b5ad29f897b88477e8a26efd9f14b90d18b3
MD5 2c078c95c718fce285a26dca0d530d46
BLAKE2b-256 0ca6bef06779af5d376994ba1e99827496a51eedadb015aae5e1021f889125c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 005d9e1e7aaa314430521b11e7cb5346425728f5abc8814298198595c9c21082
MD5 214dcaf446e275e23708feff86629be2
BLAKE2b-256 cc320269f17ab85b4dd1cac8e161e54b07735294c856f399281e88fa66a6f6ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 5618e42f1c1da102c39cd23f6378bf9dbe3c0168023f9a73bc48a9cf6960745f
MD5 6c45dc46c63f1c69c5d557b34c0ae8df
BLAKE2b-256 288321313fd557dc7b3714999acc0236e700ca835cf82565fb2f014ff859d73f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 a3181ce8966623191708f71ab9d631d92a14033124155a3c4537a94ad43b077c
MD5 0087de88c34891e6b7013074ba4cffdc
BLAKE2b-256 bd58833a8460e3500d98bcfc6acd8c84e7011239beaa64a09558f8996718919b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 0e0483d70393c0ac2dde1e66d78db1b64a1a9dd35dca28e57cffc2f96eaf075c
MD5 070505ff649c17d44870e50fac80bbab
BLAKE2b-256 da5ba3804ffef46b27e0141f0a680adae04fe52d6722b3e3d90e7eb9d93a3465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f400929e0a7bd909a465bd2e11adea7bf80cab7c8e89668e47e31837b872204
MD5 8114235b8c5f41763eb461c712cf3006
BLAKE2b-256 83db84ce98b323e96b668b9c188e45d442cdb43b9128ad553ec255a7e791547a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbf00aac970c7a9c92b7cdab477ce2dc4829c81c628ec8d60f2909b6a1f9aff9
MD5 a718193741491b6f4f6111df3fc690cf
BLAKE2b-256 2f192d3d5089ffc7bc0fb4399184c3294ee321faa91db2a51e88b0d749804d40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 164.8 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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b0f5df3debc3942ea5b133bacb8872249d19bd455a5051a1dcb00f8586d239d1
MD5 9999cc8b38911d03f58397fe93952256
BLAKE2b-256 aab763eae50459e5c9a127fbfb2697df3acf98cc8d9456e1b6cd4cfb3ef16259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 149.4 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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5e25196ab74c626d4fae983b5c8ecdb6da74d01f37b1ce13786799e2afb9d93f
MD5 ea962444b0dbcd5e9386031190594cb1
BLAKE2b-256 64163d89d57910c808ba93408668a05cb9a6b68393f09092cb2ee6b9b554baf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed6bfc4a7a67bd6a848d74795a2d998223c3ce701708bc82f5bfa9fd568dca93
MD5 fb089a9ce4f026f76b197ebf32135ed2
BLAKE2b-256 f3673430fe7cc754da094c4d55f3d8bec46584fda0388db1af9e06c1b07c6a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f85c681cce322ac99be56b3e514ff6f55cec09865e3ab671bcf77c081c080c34
MD5 7cb5d1f6b69ac1596c67ec51c5afe095
BLAKE2b-256 8cce840627ee41b3ab19a11271e2732f5170f44bf883e13c519be42fe0908dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ca26c915910adb4f2958ee7894e4c6bc0692379d6283b1319616b533f3e9c44
MD5 8bb8cc7e17f2bad718a6c6266d2fd7d8
BLAKE2b-256 a9eadb11ed88d1f4e7c5196dee172fb8c9754f8cb329b54bb79fdb624da2d5ae

See more details on using hashes here.

File details

Details for the file zstd-1.5.7.1-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.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 681a9d740ec127a8094d87cadac7ff69f966e4c3cd2720dbc6d99cd146de1171
MD5 15de5de92e014ee3ae6230490fe0030c
BLAKE2b-256 b2bedf726ee821b4e3e4c5f77afe76261c594f700c663b9e5bd86103b3ae0c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 0629894e8204c4717c6013e508c1277dbcafc37f9c0cead05380a80f803f1d06
MD5 1b3822a00653966bb25e4035cde76e8f
BLAKE2b-256 6d763426a8fd95956666fc5bcd2f28b88c6dd44abd48dbdb6441c2741d4f5104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 708fd7c269a88255b5e0c84d85d6a2d66463e354781253e5f5d8e8ca6acc176b
MD5 b328c7a4c25cf7d8fd82338b2497a6af
BLAKE2b-256 613488be3232f193c996ca730d5e9a86d6818e54d93c307853d00a31b4744d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 dcd2d829e1320f2befc35525d7ef4109b313eb8a938434ca682efeda42632a7a
MD5 f2e093e9109238bf4f0b76b1aa6c323a
BLAKE2b-256 3c21c1de1e0630175a0d6cb5cfb98250526fc89dd4b93fb6be7276ba4cd9dd40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 6ca948686fd3585dbc1e2ef54a24ca065ead4270e526e8fe593b00a0aecab998
MD5 d7f2b8085b028cc9e24263bd4a59e35d
BLAKE2b-256 8cc4e550fe259e17b87bc466e32360dafaf3c27e0ae2a66b4a630adeb5cb996d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 566642915395f7f4a6d24d95c5da3b48e13307a34d1a0de94d2c5bab4f3e4ba7
MD5 f5efc1995acd7f82d8fec20d09866ab9
BLAKE2b-256 871d88d8cc056306993022b1ed88a9be0b2fc3054959d718dc822d352833422d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp36-cp36m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 19041db2e6881c3cde75959020d291127c0883e34c00e44b1320ccc51e04876e
MD5 d0c140b3492c5ac288431489afedeb80
BLAKE2b-256 0261c56783e26b454e23dc95c53812350ba2961649785e92a9749e985c143e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp36-cp36m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 b4ba4ee6378c94bd2587ca437159a16335604af553bdedd254258ee0176ddee7
MD5 47ae83956d37e6a01d88765cdf3d473a
BLAKE2b-256 e2a0bfabfc6512b5ae500bc62456e0cdfc87bc803f96eab2452e04a714707c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 521023012f670ec39fdb731118b211bdc71bb1b58ff6c740a4f0a691d4064fb0
MD5 5571ef4a0dc6b9ed0f232127364ed7af
BLAKE2b-256 ff881e4547da55981599539d5b095cf28764728e51cd505ee440040893881b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 758a13be3312bf78ca450458511aeeb6d4d9303404a736d9e25de01f3f8cf1a5
MD5 9cf4265c60f317525e28dfeac931125f
BLAKE2b-256 5e869c44911ac1b59ac2c823c3484dffe9e64bca08dfd8b3a04509c3e7124e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebabae5758346c251e5c99decafe81fec4bc631abdc652a7b86a7f6961b670b9
MD5 936b295cbb01c28c1e5c34d1a2e4ec2e
BLAKE2b-256 d2551c4cf2655ee6db6609e33c244d94f52a69c357770cfad9ec8ada6d656e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae03d3d668987bfacde61f6089e37493d815ee6c5936526ac1c28ffe15a24aa9
MD5 75596502c274e5067deb30c9f6509858
BLAKE2b-256 976083a361c437c9229d802c0a06cb0728a9379bc5d850713ba88b3fd368e979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 237.9 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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 093fa65d1821b7d21fd5065ec277541e16904f0bee52d59594cfadaf535f8f76
MD5 9dbd540ce26579e94d8a62307768135d
BLAKE2b-256 87ad1e084357c8a4ebf3339de88a4fd90a5b0ef982ba766a8a1f0f7ccad8a60f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.7.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 209.9 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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 765bbabb33df48d5a45e883c96b37bcc93a969b2dc9ce369aacd43524be93931
MD5 3152bf0279d97b10b19248b6e2c9596e
BLAKE2b-256 169d3e5214c9c06ee892cbda75f8041e43f37c94fec937028b8fcb91c7e6bd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp35-cp35m-manylinux_2_14_x86_64.whl
Algorithm Hash digest
SHA256 1bb73528543558b0cdb2d2cf2c0bc7b51ba0b17011cc8369713c7a5795567b1b
MD5 e1177f21290d1aa055914938c6755fcd
BLAKE2b-256 3b71f8ec6e86f61f44a1101a9d4632b6cf0da21053fc61939c6364095f9511c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp35-cp35m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 c2d74b02236850672a079f482079df0f419290e2421de63be657ac7618274b3b
MD5 8c5a3d5ab0f61e2d9ef2c046ba97aece
BLAKE2b-256 0f45dad14a39a61a7e1ebd23ee3f36ecd53f04dcff656d4deb25bb0b46d47665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7d1ba346d052351914253cb3e3be8873c390983a5efe9878370ebd4cf4b9ad8
MD5 925e8edf77b534e667040d0f4b6f35fc
BLAKE2b-256 a50adf8c6d2e23dc0432b47274df6d0162f40c1d2b93df04c34e9f7b784e8ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3717ae8422197db68ff57b167cefce4808e15f10504d957e21ed9eaba9815008
MD5 96aa72fa197b861caf6faf3f60d13948
BLAKE2b-256 1ce489a55cbd90f5f7075c9f861f36042e74fd672b4c2b90e89ed4918c384010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2bd6da6c2dfcdeddbb7c316edf4d58caac0b529187a37e601a8188ed246390fa
MD5 7bae04a692d8c0572c69fe2c0e1a0b30
BLAKE2b-256 adfc645bd91a11786d4b32f0f61672d8aef28d3c34be4c93298cac9825c88560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp34-cp34m-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 59f1e75b5488d1f343b0dcca09367df07783a72d0ef4dc08d522d1aa1a11dae1
MD5 f2e025f0369d24c6764192fb43e8bcba
BLAKE2b-256 5e4a7bfc3711eacc14fa7cfc2330e82cc1db3dcebb2ff644106af34196c52737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp34-cp34m-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 af6a683b8f9ce65f2e649357637df0a20f011669cfe9877310a9c183286ee227
MD5 b60a0ad5a41c228b0b153bdd26631a68
BLAKE2b-256 4bd7c95671c42a32d8213fe8139e7c9d7b80b5d80d3ca14a46105d0279c0798e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27mu-manylinux_2_4_x86_64.whl
Algorithm Hash digest
SHA256 9871e8b81ff971d4482a59ac405891af20f9ce2359035ef13ffb909096bf5d7f
MD5 b0dc81a887a919c64f43dd649c6e3037
BLAKE2b-256 9c05c6342c6bb74b7f07cc18001802cad7317737e1dcd3d49728b29cdec0be2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27mu-manylinux_2_4_i686.whl
Algorithm Hash digest
SHA256 a773cacebda16f47e478a2c3987615b02cc3914769a5934ea9ce4f1322541650
MD5 def2df65bd70899dc1f460a77e40c24f
BLAKE2b-256 b9b3e1da0dacfec2092f5815cf3de71cdb0d363d1399a326870ebf68ec9dfab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9d21679ebabd89cc7d12cf66aed1894a801d3f5a3297784aa87f4ec2182e518c
MD5 cb1ca932c4dc0b4bb9c954a494513a7d
BLAKE2b-256 df1d51fd6d80ae2b552edd093275474962950f07f97ac1eab50966cbddea5896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65a9846b31e225fd074de19cbb85d5dedb19c81ca1cc81bf0bfa3f89bda7fb7c
MD5 ebf459564f5e771d47e71aba5e4edfb4
BLAKE2b-256 2bf4af72370037c9e3b0a2d87287ba368f5e118b0a47f3feb9cb913cad438689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b5e8b093e80edd3522a5692152164cfe76c1a6612326f091162eaa8b0b0c7453
MD5 6445d561f1951939d6e113c30fc7c7cb
BLAKE2b-256 902c337b5b6b1c9e02157b5aac3a86b204f567c75a0972b06fc89d1231713d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5b711403fe5d7a9916351730b5e93fc78bda528019080bb5f3436bd7371ed24
MD5 ba675fd41b1ccc94e3e0aa985485af8b
BLAKE2b-256 c50034f8f6ad17456c753e3e477c421dd98bcb63502262d0b5ff45faf6d12bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.7.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ed924f425289b9b4b26789d268ee060854846de43030b4b5dbebacb7a7ea4f9
MD5 43d9781543c4299d886c5fcd8f27c06d
BLAKE2b-256 b1196680d80a4bdbf4a13e1d87658476a96b84b38e1b8be715cfb769037ad6c3

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