Skip to main content

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

Release files for zstd 1.5.7.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zstd 1.5.7.2
File Size Uploaded
zstd-1.5.7.2.tar.gz 670.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for zstd 1.5.7.2
File
zstd-1.5.7.2-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp310-pypy310_pp73-win_amd64.whl PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 Details
zstd-1.5.7.2-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64 Details
zstd-1.5.7.2-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64, Linux glibc 2.24+ x86-64 Details
zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.24+ ARM64 Details
zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.24+ x86-32 Details
zstd-1.5.7.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64 Details
zstd-1.5.7.2-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.24+ x86-64, Linux glibc 2.17+ x86-64 Details
zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.24+ ARM64 Details
zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.24+ x86-32, Linux glibc 2.5+ x86-32 Details
zstd-1.5.7.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
zstd-1.5.7.2-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64, Linux glibc 2.24+ x86-64 Details
zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.24+ ARM64 Details
zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.24+ x86-32, Linux glibc 2.5+ x86-32 Details
zstd-1.5.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
zstd-1.5.7.2-pp36-pypy36_pp73-win32.whl PyPy 3.6 PyPy 3.6 7.3 Windows x86-32 Details
zstd-1.5.7.2-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.12+ x86-64 Details
zstd-1.5.7.2-pp36-pypy36_pp73-manylinux1_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.5+ x86-64 Details
zstd-1.5.7.2-pp27-pypy_73-manylinux_2_14_x86_64.whl PyPy 2.7 PyPy 7.3 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-pp27-pypy_73-manylinux2010_x86_64.whl PyPy 2.7 PyPy 7.3 Linux glibc 2.12+ x86-64 Details
zstd-1.5.7.2-pp27-pypy_73-manylinux1_x86_64.whl PyPy 2.7 PyPy 7.3 Linux glibc 2.5+ x86-64 Details
zstd-1.5.7.2-cp314-cp314t-manylinux_2_14_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp314-cp314-manylinux_2_14_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp313-cp313t-manylinux_2_14_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
zstd-1.5.7.2-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
zstd-1.5.7.2-cp313-cp313-manylinux_2_14_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
zstd-1.5.7.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
zstd-1.5.7.2-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
zstd-1.5.7.2-cp312-cp312-manylinux_2_14_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp312-cp312-manylinux_2_4_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
zstd-1.5.7.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
zstd-1.5.7.2-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
zstd-1.5.7.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
zstd-1.5.7.2-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
zstd-1.5.7.2-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
zstd-1.5.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.24+ x86-64 Details
zstd-1.5.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.24+ x86-32 Details
zstd-1.5.7.2-cp311-cp311-manylinux_2_4_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp311-cp311-manylinux_2_4_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
zstd-1.5.7.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
zstd-1.5.7.2-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
zstd-1.5.7.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
zstd-1.5.7.2-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
zstd-1.5.7.2-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
zstd-1.5.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.17+ x86-64 Details
zstd-1.5.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ ARM64, Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.24+ x86-32 Details
zstd-1.5.7.2-cp310-cp310-manylinux_2_4_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp310-cp310-manylinux_2_4_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
zstd-1.5.7.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
zstd-1.5.7.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
zstd-1.5.7.2-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
zstd-1.5.7.2-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
zstd-1.5.7.2-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
zstd-1.5.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.17+ x86-64 Details
zstd-1.5.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ ARM64, Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.24+ x86-32 Details
zstd-1.5.7.2-cp39-cp39-manylinux_2_4_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp39-cp39-manylinux_2_4_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
zstd-1.5.7.2-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
zstd-1.5.7.2-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
zstd-1.5.7.2-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
zstd-1.5.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.24+ x86-64 Details
zstd-1.5.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ ARM64, Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.24+ x86-32 Details
zstd-1.5.7.2-cp38-cp38-manylinux_2_4_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp38-cp38-manylinux_2_4_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
zstd-1.5.7.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
zstd-1.5.7.2-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
zstd-1.5.7.2-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64 Details
zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32 Details
zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ ARM64 Details
zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-64, Linux glibc 2.17+ x86-64 Details
zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ ARM64, Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.24+ x86-32 Details
zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
zstd-1.5.7.2-cp36-cp36m-manylinux_2_14_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp36-cp36m-manylinux_2_4_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
zstd-1.5.7.2-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
zstd-1.5.7.2-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
zstd-1.5.7.2-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
zstd-1.5.7.2-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
zstd-1.5.7.2-cp35-cp35m-manylinux_2_14_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.14+ x86-64 Details
zstd-1.5.7.2-cp35-cp35m-manylinux_2_4_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp35-cp35m-manylinux2014_aarch64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64 Details
zstd-1.5.7.2-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
zstd-1.5.7.2-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.4+ x86-64 Details
zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.4+ x86-32 Details
zstd-1.5.7.2-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
zstd-1.5.7.2-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
zstd-1.5.7.2-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
zstd-1.5.7.2-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
zstd-1.5.7.2-cp27-cp27m-macosx_10_9_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 97.7 MB

Release files / zstd-1.5.7.2.tar.gz

Download URL zstd-1.5.7.2.tar.gz
Size 670.5 kB
Tags Source
SHA-256 checksum
How to use checksums
6d8684c69009be49e1b18ec251a5eb0d7e24f93624990a8a124a1da66a92fc8a
BLAKE2b-256 checksum
How to use checksums
0f789a476e09c825304df47b98be80d1ffe223733b03550af71325415028f615
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp311-pypy311_pp73-manylinux_2_14_x86_64.whl
Size 315.5 kB
Tags Linux glibc 2.14+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5fb2ff5718fe89181223c23ce7308bd0b4a427239379e2566294da805d8df68a
BLAKE2b-256 checksum
How to use checksums
cdc9a6495a7bf168a78f0a0c01d61d830ebfb401315a64fd1ae8d725c458114c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp310-pypy310_pp73-win_amd64.whl

Download URL zstd-1.5.7.2-pp310-pypy310_pp73-win_amd64.whl
Size 166.6 kB
Tags PyPy 3.10 PyPy 3.10 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
5414c9ae27069ab3ec8420fe8d005cb1b227806cbc874a7b4c73a96b4697a633
BLAKE2b-256 checksum
How to use checksums
7d397edf76a442621d76dc18ee82dcce82f8a0df2fbc7b962ade42a833e30a32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp310-pypy310_pp73-manylinux_2_14_x86_64.whl
Size 315.5 kB
Tags Linux glibc 2.14+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
1b301b2f9dbb0e848093127fb10cbe6334a697dc3aea6740f0bb726450ee9a34
BLAKE2b-256 checksum
How to use checksums
ca3bf6f6c4d009b5945bbe043e576a61a8adc71eba5e9adc7b1872c080508b26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 218.5 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
53375b23f2f39359ade944169bbd88f8895eed91290ee608ccbc28810ac360ba
BLAKE2b-256 checksum
How to use checksums
56d9f9b73abd3ccce44468ccbdc1ad48b8adb6eaffeacc556472a6e42331b2c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl

Download URL zstd-1.5.7.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Size 262.9 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
426e5c6b7b3e2401b734bfd08050b071e17c15df5e3b31e63651d1fd9ba4c751
BLAKE2b-256 checksum
How to use checksums
56b9179ad7330e6ea33ce655b671ee6f961fbbf4714996aa7c5180ef08d1616a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-win_amd64.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-win_amd64.whl
Size 166.6 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
624022851c51dd6d6b31dbfd793347c4bd6339095e8383e2f74faf4f990b04c6
BLAKE2b-256 checksum
How to use checksums
ac0aa211e00a94fcabe26faf809a3f56776248b588d6232babcf3c04da521b07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 315.6 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
5189fb44c44ab9b6c45f734bd7093a67686193110dc90dcfaf0e3a31b2385f38
BLAKE2b-256 checksum
How to use checksums
e53d302cfea2c4c950e21b2ad596fd8468996476463bb1b55b56be39f6847129
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 292.0 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
ceae57e369e1b821b8f2b4c59bc08acd27d8e4bf9687bfa5211bc4cdb080fe7b
BLAKE2b-256 checksum
How to use checksums
c590d157b852ee55806d1e7063fe771080eaf8b34c8ae1fdc23c395e6ff56b3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_14_x86_64.whl
Size 315.5 kB
Tags Linux glibc 2.14+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
8cc35cc25e2d4a0f68020f05cba96912a2881ebaca890d990abe37aa3aa27045
BLAKE2b-256 checksum
How to use checksums
2e8409e71e7dd968b69b46102a9ad7c6040d9ac0034335ea73c03bfc51624c38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 311.0 kB
Tags Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
f51a965871b25911e06d421212f9be7f7bcd3cedc43ea441a8a73fad9952baa0
BLAKE2b-256 checksum
How to use checksums
a33a072de1cc86a89e92088b6686c31719413b6c61645df4b4d035e037412d46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 218.5 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
baf4e8b46d8934d4e85373f303eb048c63897fc4191d8ab301a1bbdf30b7a3cc
BLAKE2b-256 checksum
How to use checksums
4d5240294db4bb8629b07a8f0f4aba15ffbdc1364587efd7b8449664eec5b472
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl

Download URL zstd-1.5.7.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Size 262.8 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
05604a693fa53b60ca083992324b08dafd15a4ac37ac4cffe4b43b9eb93d4440
BLAKE2b-256 checksum
How to use checksums
9b13ecff9a553eea6a66a3a7fc973cb414611a2c7d258b215bcd3f4c1dc6be24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-win_amd64.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-win_amd64.whl
Size 166.6 kB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
7c1cc65fc2789dd97a98202df840537de186ed04fd1804a17fcb15d1232442c4
BLAKE2b-256 checksum
How to use checksums
01e387276764c25727752c38651957f1b305fd78d582ea5cead6256ed4c05091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 315.6 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
0f97f872cb78a4fd60b6c1024a65a4c52a971e9d991f33c7acd833ee73050f85
BLAKE2b-256 checksum
How to use checksums
25873cb3b99522420a09bac4f71add2adb439af0edb032cac1970f46d5a47b1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 292.0 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
787bcf55cefc08d27aca34c6dcaae1a24940963d1a73d4cec894ee458c541ac4
BLAKE2b-256 checksum
How to use checksums
14f80b5cd7df5962e995dee64f932bc446005447ae2e0043434196d3225a7758
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_14_x86_64.whl
Size 315.5 kB
Tags Linux glibc 2.14+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
8c3f4bb8508bc54c00532931da4a5261f08493363da14a5526c986765973e35d
BLAKE2b-256 checksum
How to use checksums
9b69d35679812bfade635f4785498fec41f363b976cb14ccfe11da675034703a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 311.0 kB
Tags Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
5e530b75452fdcff4ea67268d9e7cb37a38e7abbac84fa845205f0b36da81aaf
BLAKE2b-256 checksum
How to use checksums
a34a7a5c1bbad7cd35ce24fb1af376867b7514edbb0f56126e31086b3b301ba6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Size 218.3 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0f79492bf86aef6e594b11e29c5589ddd13253db3ada0c7a14fb176b132fb65e
BLAKE2b-256 checksum
How to use checksums
2b450dbbef00088aba8930ed711c8d95a5e1a5071fcb9df17b106ddc44c76c8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 261.5 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
86e64c71b4d00bf28be50e4941586e7874bdfa74858274d9f7571dd5dda92086
BLAKE2b-256 checksum
How to use checksums
a149286cf12fe6a9904de414be9c44a6e062c09b2d1e39dcb33e7adb6d491023
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp37-pypy37_pp73-win_amd64.whl

Download URL zstd-1.5.7.2-pp37-pypy37_pp73-win_amd64.whl
Size 166.6 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
a03608499794148f39c932c508d4eb3622e79ca2411b1d0438a2ee8cafdc0111
BLAKE2b-256 checksum
How to use checksums
7ca1d1dfbf3cb7522a0b49feb69c7478f31c9a1e28974e1c32d3691636e410e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 318.2 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
c6abf4ab9a9d1feb14bc3cbcc32d723d340ce43b79b1812805916f3ac069b073
BLAKE2b-256 checksum
How to use checksums
7f512664e529711488262010b6a851fa9801384ac9d89c153d6df4212a3400a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 293.7 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
9a24d492c63555b55e6bc73a9e82a38bf7c3e8f7cde600f079210ed19cb061f2
BLAKE2b-256 checksum
How to use checksums
ab6c35411ebd848f08fcaa432ee9bdbdd48766e92d814c160e69870a604b4c79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_14_x86_64.whl
Size 318.0 kB
Tags Linux glibc 2.14+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
d17ac6d2584168247796174e599d4adbee00153246287e68881efaf8d48a6970
BLAKE2b-256 checksum
How to use checksums
b4bedefe9bafbe119bf16567baddeaa432ef1ceb174ed3c659e0e54391aecaa8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 313.7 kB
Tags Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
d7131bb4e55d075cb7847555a1e17fca5b816a550c9b9ac260c01799b6f8e8d9
BLAKE2b-256 checksum
How to use checksums
8e0018874a97273cd2fc48c3fe70f27c34140376e85d55fdbc7db52f71256709
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 261.5 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
faf3fd38ba26167c5a085c04b8c931a216f1baf072709db7a38e61dea52e316e
BLAKE2b-256 checksum
How to use checksums
2d45e9aa1349b6ddd691da89dd5e6843c6b046219cc47842778abab7ba7f4065
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp36-pypy36_pp73-win32.whl

Download URL zstd-1.5.7.2-pp36-pypy36_pp73-win32.whl
Size 210.2 kB
Tags PyPy 3.6 PyPy 3.6 7.3 Windows x86-32
SHA-256 checksum
How to use checksums
3b14793d2a2cb3a7ddd1cf083321b662dd20bc11143abc719456e9bfd22a32aa
BLAKE2b-256 checksum
How to use checksums
12a814b732ce5395ccf91d209994b3d3caf6866bc8a13024eaf7adb1eb1e5717
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp36-pypy36_pp73-manylinux_2_14_x86_64.whl
Size 318.0 kB
Tags Linux glibc 2.14+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
52f27a198e2a72632bae12ec63ebaa31b10e3d5f3dd3df2e01376979b168e2e6
BLAKE2b-256 checksum
How to use checksums
65e1664546067db2a2401a246485e86c50574b583964568b7715608459a305c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl

Download URL zstd-1.5.7.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Size 306.1 kB
Tags Linux glibc 2.12+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
6584fd081a6e7d92dffa8e7373d1fced6b3cbf473154b82c17a99438c5e1de51
BLAKE2b-256 checksum
How to use checksums
27678dc61b76a5323803c6c85e5d4783fa608f8f3e1c9c63a15744045b2da346
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp36-pypy36_pp73-manylinux1_x86_64.whl

Download URL zstd-1.5.7.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Size 306.1 kB
Tags Linux glibc 2.5+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
9714d5642867fceb22e4ab74aebf81a2e62dc9206184d603cb39277b752d5885
BLAKE2b-256 checksum
How to use checksums
92f5696cee6d65e533a7fd424c7d39c3f79dc0d99a45d4a2c445f5d28e24c2fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp27-pypy_73-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-pp27-pypy_73-manylinux_2_14_x86_64.whl
Size 317.5 kB
Tags Linux glibc 2.14+ x86-64 PyPy 2.7 PyPy 7.3
SHA-256 checksum
How to use checksums
b011bf4cfad78cdf9116d6731234ff181deb9560645ffdcc8d54861ae5d1edfc
BLAKE2b-256 checksum
How to use checksums
8e769d3f81e7fce928282c320c649d82a65e9c6aebb6d7c085a3d860d62e2ce1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-pp27-pypy_73-manylinux2010_x86_64.whl

Download URL zstd-1.5.7.2-pp27-pypy_73-manylinux2010_x86_64.whl
Size 305.7 kB
Tags Linux glibc 2.12+ x86-64 PyPy 2.7 PyPy 7.3
SHA-256 checksum
How to use checksums
c21d44981b068551f13097be3809fadb7f81617d0c21b2c28a7d04653dde958f
BLAKE2b-256 checksum
How to use checksums
c169052c95a8d98a2050ad601b6cbb640f85a9dd8da4219223def05f2915ec5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-pp27-pypy_73-manylinux1_x86_64.whl

Download URL zstd-1.5.7.2-pp27-pypy_73-manylinux1_x86_64.whl
Size 305.7 kB
Tags Linux glibc 2.5+ x86-64 PyPy 2.7 PyPy 7.3
SHA-256 checksum
How to use checksums
24371a7b0475eef7d933c72067d363c5dc17282d2aa5d4f5837774378718509e
BLAKE2b-256 checksum
How to use checksums
a46cf2499edab7c59b6c20fe7e590e0d50876e9be93fc0c98a36040bc8cf731f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp314-cp314t-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp314-cp314t-manylinux_2_14_x86_64.whl
Size 302.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
d0b0ca097efb5f67157c61a744c926848dcccf6e913df2f814e719aa78197a4b
BLAKE2b-256 checksum
How to use checksums
9ba56ed36bed134d065ff6198707e7411fde7436d7927e325b8ace26f9e21159
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp314-cp314-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp314-cp314-manylinux_2_14_x86_64.whl
Size 302.8 kB
Tags CPython 3.14 Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
a6105b8fa21dbc59e05b6113e8e5d5aaf56c5d2886aa5778d61030af3256bbb7
BLAKE2b-256 checksum
How to use checksums
d2f79243bb99b8525421a7db741604d29aebe9a849539500f2248d74bf2614be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp313-cp313t-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp313-cp313t-manylinux_2_14_x86_64.whl
Size 302.9 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
1d71f9f92b3abe18b06b5f0aefa5b9c42112beef3bff27e36028d147cb4426a6
BLAKE2b-256 checksum
How to use checksums
07e9501291a2f9b300b2c73dcc6d086df778e895e71573df9575def54d9dbab2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp313-cp313-win_amd64.whl

Download URL zstd-1.5.7.2-cp313-cp313-win_amd64.whl
Size 166.6 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
eea9bddf06f3f5e1e450fd647665c86df048a45e8b956d53522387c1dff41b7a
BLAKE2b-256 checksum
How to use checksums
e7aa89339605864c9803e4738f176932a6c9f1ad99d03c03ef2cb0634ddca680
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp313-cp313-win32.whl

Download URL zstd-1.5.7.2-cp313-cp313-win32.whl
Size 149.5 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
edf816c218e5978033b7bb47dcb453dfb71038cb8a9bf4877f3f823e74d58174
BLAKE2b-256 checksum
How to use checksums
25ca4a6882846e3049be249031f825251a9229ecad471e18e7fd27974540549c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp313-cp313-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp313-cp313-manylinux_2_14_x86_64.whl
Size 302.8 kB
Tags CPython 3.13 Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
53948be45f286a1b25c07a6aa2aca5c902208eb3df9fe36cf891efa0394c8b71
BLAKE2b-256 checksum
How to use checksums
314e547949993ea347ac44f5908262ebe6e85edfa7b11a5df136319789be731d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-cp313-cp313-macosx_11_0_arm64.whl
Size 228.2 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fd6262788a98807d6b2befd065d127db177c1cd76bb8e536e0dded419eb7c7fb
BLAKE2b-256 checksum
How to use checksums
be1f85aae095f92811bed3d2944bbed971fe07ec1dd2d82c9eb1395d69d2123c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp313-cp313-macosx_10_13_x86_64.whl

Download URL zstd-1.5.7.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 269.4 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
6e684e27064b6550aa2e7dc85d171ea1b62cb5930a2c99b3df9b30bf620b5c06
BLAKE2b-256 checksum
How to use checksums
a1630d392a8ec2231dee9fc2290faea7a6642584686720d6b77899ad8b12e35a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp312-cp312-win_amd64.whl

Download URL zstd-1.5.7.2-cp312-cp312-win_amd64.whl
Size 166.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
55e2edc4560a5cf8ee9908595e90a15b1f47536ea9aad4b2889f0e6165890a38
BLAKE2b-256 checksum
How to use checksums
3ec7c182ea7bc283f591e3f3c5f0f239e7a92c9bc1f626642ae2c4dfbe51d6f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp312-cp312-win32.whl

Download URL zstd-1.5.7.2-cp312-cp312-win32.whl
Size 149.5 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
e4cf97bb97ed6dbb62d139d68fd42fa1af51fd26fd178c501f7b62040e897c50
BLAKE2b-256 checksum
How to use checksums
edd7ab9142e002a7eaa451cb4bb37a74c390c489ba8ae75ade543840496eda04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp312-cp312-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp312-cp312-manylinux_2_14_x86_64.whl
Size 302.7 kB
Tags CPython 3.12 Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
ac7bdfedda51b1fcdcf0ab69267d01256fc97ddf666ce894fde0fae9f3630eac
BLAKE2b-256 checksum
How to use checksums
b7806252de3a70cfd7767718ad476893f1c7dc129f942cc7ed0322e3137c03d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp312-cp312-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp312-cp312-manylinux_2_4_i686.whl
Size 322.2 kB
Tags CPython 3.12 Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
b835405cc4080b378e45029f2fe500e408d1eaedfba7dd7402aba27af16955f9
BLAKE2b-256 checksum
How to use checksums
afb6af908387814b99172d3aea6aeb24b19583aadfa45f6021e5e2a0d6d8e99a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-cp312-cp312-macosx_11_0_arm64.whl
Size 228.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ef201b6f7d3a6751d85cc52f9e6198d4d870e83d490172016b64a6dd654a9583
BLAKE2b-256 checksum
How to use checksums
08b82bc2590a34c733ea0570f366e6ad7d889d05c7825bd3ccab01f36ece71c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp312-cp312-macosx_10_13_x86_64.whl

Download URL zstd-1.5.7.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 269.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d2ebe3e60dbace52525fa7aa604479e231dc3e4fcc76d0b4c54d8abce5e58734
BLAKE2b-256 checksum
How to use checksums
4514096bb77f3e5ef525b452cd6294da33de7f8a8c9647ba78293378fbb0a7ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp311-cp311-win_amd64.whl

Download URL zstd-1.5.7.2-cp311-cp311-win_amd64.whl
Size 166.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4f6861c8edceb25fda37cdaf422fc5f15dcc88ced37c6a5b3c9011eda51aa218
BLAKE2b-256 checksum
How to use checksums
47b7fc22ad6292a32d7676ab815de3a23573beac3679e8abd9914288d1496ceb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp311-cp311-win32.whl

Download URL zstd-1.5.7.2-cp311-cp311-win32.whl
Size 149.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
cdb5ec80da299f63f8aeccec0bff3247e96252d4c8442876363ff1b438d8049b
BLAKE2b-256 checksum
How to use checksums
586eb9c9a834769d96cab2122da1be8c8c700d3f76be796d2b7516e85d2eca0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL zstd-1.5.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b13285c99cc710f60dd270785ec75233018870a1831f5655d862745470a0ca29
BLAKE2b-256 checksum
How to use checksums
44742c16e1632094db36c8920d4c13b8e2e843024d548ae26888c2d22af6a676
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp311-cp311-musllinux_1_2_i686.whl

Download URL zstd-1.5.7.2-cp311-cp311-musllinux_1_2_i686.whl
Size 2.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d6b17e5581dd1a13437079bd62838d2635db8eb8aca9c0e9251faa5d4d40a6d7
BLAKE2b-256 checksum
How to use checksums
bcb2730c811a78d670104d40c7f08cc8092577cdff870cba42b3158f20fceb57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL zstd-1.5.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.1 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7e0027b20f296d1c9a8e85b8436834cf46560240a29d623aa8eaa8911832eb58
BLAKE2b-256 checksum
How to use checksums
d58c7660a949a020ac9d02b3166a25dd1c12144572d77b11ae92a31d341016da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
2cec2472760d48a7a3445beaba509d3f7850e200fed65db15a1a66e315baec6a
BLAKE2b-256 checksum
How to use checksums
d16a1bb836c18760dc1e28ca7a9706016e482ebdea633b980d8505dbb65e18f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64
SHA-256 checksum
How to use checksums
8526a32fa9f67b07fd09e62474e345f8ca1daf3e37a41137643d45bd1bc90773
BLAKE2b-256 checksum
How to use checksums
c4b89ddefd4670bfe9328ca6657ad335eb8d9c657466247e234a579818b6b0b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7206934a2bd390080e972a1fed5a897e184dfd71dbb54e978dc11c6b295e1806
BLAKE2b-256 checksum
How to use checksums
bebce5f8b7f61826323e39e099db1eb5c0e09b18315df1b1ff778f7ae9aadcac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp311-cp311-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp311-cp311-manylinux_2_4_x86_64.whl
Size 302.7 kB
Tags CPython 3.11 Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
f5d159e57a13147aa8293c0f14803a75e9039fd8afdf6cf1c8c2289fb4d2333a
BLAKE2b-256 checksum
How to use checksums
5a4fcf0669c8a89fdcc91814bf92bd05cc363d5d12a79b656418c0add6f2d266
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp311-cp311-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp311-cp311-manylinux_2_4_i686.whl
Size 322.2 kB
Tags CPython 3.11 Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
a200c479ee1bb661bc45518e016a1fdc215a1d8f7e4bf6c7de0af254976cfdf6
BLAKE2b-256 checksum
How to use checksums
b57abb6c6e2cb2a066e347dc27d45d5205058b69d6c8b8d4ae2ee7d6b91c64a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-cp311-cp311-macosx_11_0_arm64.whl
Size 228.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1ff4c667f29101566a7b71f06bbd677a63192818396003354131f586383db042
BLAKE2b-256 checksum
How to use checksums
05e6629cf6b77e47fc7149f5724fb4853c48edcdeb10d8c64e391d7026cb10e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 269.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f799c1e9900ad77e7a3d994b9b5146d7cfd1cbd1b61c3db53a697bf21ffcc57b
BLAKE2b-256 checksum
How to use checksums
432a0885f6f1921ec1ef4a8f8ab29ab0a335cc867abe4c7aaa4e5031435a32a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp310-cp310-win_amd64.whl

Download URL zstd-1.5.7.2-cp310-cp310-win_amd64.whl
Size 166.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
346d1e4774d89a77d67fc70d53964bfca57c0abecfd885a4e00f87fd7c71e074
BLAKE2b-256 checksum
How to use checksums
d5553b315dc894b9726c16e5d58f48a618e6e2670e93c0eacc03fd30330444ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp310-cp310-win32.whl

Download URL zstd-1.5.7.2-cp310-cp310-win32.whl
Size 149.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
6922ceac5f2d60bb57a7875168c8aa442477b83e8951f2206cf1e9be788b0a6e
BLAKE2b-256 checksum
How to use checksums
ad564180cd24fdc468f4f0beae3d4f5e8690a16995a561b1926dfdde223ecc3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL zstd-1.5.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8291d393321fac30604c6bbf40067103fee315aa476647a5eaecf877ee53496f
BLAKE2b-256 checksum
How to use checksums
93c6fa6898d55f8313e9649e2853ea3fede8b7301a5a1c40d8aa920252c31a52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp310-cp310-musllinux_1_2_i686.whl

Download URL zstd-1.5.7.2-cp310-cp310-musllinux_1_2_i686.whl
Size 2.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0d8c1dc947e5ccea3bd81043080213685faf1d43886c27c51851fabf325f05c0
BLAKE2b-256 checksum
How to use checksums
09eb3274ea05a788bbdb90e3de90bfa27dc9113ee0114011d28bfad6d9fd34d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL zstd-1.5.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.1 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
047803d87d910f4905f48d99aeff1e0539ec2e4f4bf17d077701b5d0b2392a95
BLAKE2b-256 checksum
How to use checksums
802460a125d82d64b4d2a823f490904d8b5861117771237e34bb02e2cc311572
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
8e97933addfd71ea9608306f18dc18e7d2a5e64212ba2bb9a4ccb6d714f9f280
BLAKE2b-256 checksum
How to use checksums
8b9d60d956dc3f457620997906bc4c220fad12b2ad1a3a5e2224d3b5dbf0a28e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64
SHA-256 checksum
How to use checksums
27e55aa2043ba7d8a08aba0978c652d4d5857338a8188aa84522569f3586c7bb
BLAKE2b-256 checksum
How to use checksums
ae24e81d1561ab3e32be2370de82e13d3c50b68a9fed6977b4d7d596d3ddd1b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2a653cdd2c52d60c28e519d44bde8d759f2c1837f0ff8e8e1b0045ca62fcf70e
BLAKE2b-256 checksum
How to use checksums
a6c086bb2d8e556062edf663f8d08c315418fefb80cae7c786cf39957e10455f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp310-cp310-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp310-cp310-manylinux_2_4_x86_64.whl
Size 302.7 kB
Tags CPython 3.10 Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
92f072819fc0c7e8445f51a232c9ad76642027c069d2f36470cdb5e663839cdb
BLAKE2b-256 checksum
How to use checksums
1720e1e06a7f39c7eb27a1fe1c0281970c840fcde539a2f8ad99bb3155dbf3ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp310-cp310-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp310-cp310-manylinux_2_4_i686.whl
Size 322.2 kB
Tags CPython 3.10 Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
27e2ed58b64001c9ef0a8e028625477f1a6ed4ca949412ff6548544945cc59c2
BLAKE2b-256 checksum
How to use checksums
716a49fc94a39f44994c5db20259d44a849e558af5232072580a7614cdb2058d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-cp310-cp310-macosx_11_0_arm64.whl
Size 228.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
07d2061df22a3efc06453089e6e8b96e58f5bb7a0c4074dcfd0b0ce243ddde72
BLAKE2b-256 checksum
How to use checksums
b90aa8c936edc431217186085276a37eba8e52c9bd4cd3025b38403baa2466a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 269.7 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d3f14c5c405ea353b68fe105236780494eb67c756ecd346fd295498f5eab6d24
BLAKE2b-256 checksum
How to use checksums
1876825a002361bcfb4444d8ff0bd5c75d60e449158c5a9cd3b884971b3ecd1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp39-cp39-win_amd64.whl

Download URL zstd-1.5.7.2-cp39-cp39-win_amd64.whl
Size 166.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
8dc542a9818712a9fb37563fa88cdbbbb2b5f8733111d412b718fa602b83ba45
BLAKE2b-256 checksum
How to use checksums
7f5ae9a6b465637f3f0ba251fec754ee318f5a1cdb48a2be9f82aaf5565502d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp39-cp39-win32.whl

Download URL zstd-1.5.7.2-cp39-cp39-win32.whl
Size 149.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
44a5142123d59a0dbbd9ba9720c23521be57edbc24202223a5e17405c3bdd4a6
BLAKE2b-256 checksum
How to use checksums
1f05ad94e51c2f85e81dda82fc4684084ccd07c097c1c84fa92e14d3a67b0420
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL zstd-1.5.7.2-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ebf6c1d7f0ceb0af5a383d2a1edc8ab9ace655e62a41c8a4ed5a031ee2ef8006
BLAKE2b-256 checksum
How to use checksums
27eba33a2816f7d6ff38551912e9e1af826987e15b2d8433d98998d960c9837c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp39-cp39-musllinux_1_2_i686.whl

Download URL zstd-1.5.7.2-cp39-cp39-musllinux_1_2_i686.whl
Size 2.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4d5a85344193ec967d05da8e2c10aed400e2d83e16041d2fdfb713cfc8caceeb
BLAKE2b-256 checksum
How to use checksums
6158025683db98573fa3ddb3c0088f7b2038d58653d7617b18a4dc4642e6b2a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL zstd-1.5.7.2-cp39-cp39-musllinux_1_2_aarch64.whl
Size 2.1 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c59218bd36a7431a40591504f299de836ea0d63bc68ea76d58c4cf5262f0fa3c
BLAKE2b-256 checksum
How to use checksums
10282f7502f397e02a9f81209668dfc8daa5b730c8cf2c99b33bac5036f0ddc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
632e3c1b7e1ebb0580f6d92b781a8f7901d367cf72725d5642e6d3a32e404e45
BLAKE2b-256 checksum
How to use checksums
ff50e5eaaf5d3b80a5bb5b430ef51eb2a0cdbd9ba3d94b13eeb4183fe588185c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64
SHA-256 checksum
How to use checksums
6f8189bc58415758bbbd419695012194f5e5e22c34553712d9a3eb009c09808d
BLAKE2b-256 checksum
How to use checksums
6650bd12500853e0cd725b3a10109c30bc421d3af0676f0ead03eab0b633ba65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
97b908ccb385047b0c020ce3dc55e6f51078c9790722fdb3620c076be4a69ecf
BLAKE2b-256 checksum
How to use checksums
540c7d670391c9c795d7b5e02c3388faeff491663732168736d65e9b805eec5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp39-cp39-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp39-cp39-manylinux_2_4_x86_64.whl
Size 13.8 kB
Tags CPython 3.9 Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
300db1ede4d10f8b9b3b99ca52b22f0e2303dc4f1cf6994d1f8345ce22dd5a7e
BLAKE2b-256 checksum
How to use checksums
2de4e6b8a1633b719182bca234ebcadb52fad97f07c29c2b17bb4019d101e26d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp39-cp39-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp39-cp39-manylinux_2_4_i686.whl
Size 322.2 kB
Tags CPython 3.9 Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
df8083c40fdbfe970324f743f0b5ecc244c37736e5f3ad2670de61dde5e0b024
BLAKE2b-256 checksum
How to use checksums
35f90f0affab09b4dd32949448aba6dfa999b403e5366447c1beb400bc97436b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-cp39-cp39-macosx_11_0_arm64.whl
Size 228.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
83a36bb1fd574422a77b36ccf3315ab687aef9a802b0c3312ca7006b74eeb109
BLAKE2b-256 checksum
How to use checksums
eb49e73d072eadd463a8db7b3c6dd39cb0e79a0753032aeaa4414a6e69151bcb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 269.7 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9838ec7eb9f1beb2f611b9bcac7a169cb3de708ccf779aead29787e4482fe232
BLAKE2b-256 checksum
How to use checksums
7928fa1ab7c76c215ce9a1608fbee348249347827b5519e777fbb5660ae8c8c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL zstd-1.5.7.2-cp38-cp38-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
910bd9eac2488439f597504756b03c74aa63ed71b21e5d0aa2c7e249b3f1c13f
BLAKE2b-256 checksum
How to use checksums
4cf0342464b309653e8d4d5a3422e904243daa41bb2ace321a83861441b10b1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp38-cp38-musllinux_1_2_i686.whl

Download URL zstd-1.5.7.2-cp38-cp38-musllinux_1_2_i686.whl
Size 2.1 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f9cf09c2aa6f67750fe9f33fdd122f021b1a23bf7326064a8e21f7af7e77faee
BLAKE2b-256 checksum
How to use checksums
56b29ac0aff25b8bd648efdae9b64470937b722a815e3d9cbf04a0b88ec55439
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL zstd-1.5.7.2-cp38-cp38-musllinux_1_2_aarch64.whl
Size 2.1 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f2dda0c76f87723fb7f75d7ad3bbd90f7fb47b75051978d22535099325111b41
BLAKE2b-256 checksum
How to use checksums
9e3a09d6adf3ae5bae265234930ba57877b6c83700aaeda611aa8835d0e5c3fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 1.6 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
0a470f8938f69f632b8f88b96578a5e8825c18ddbbea7de63493f74874f963ef
BLAKE2b-256 checksum
How to use checksums
482dc6d16876209a4ae531c01723033c219b3de4d8ee754528ea580edb9a8298
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64
SHA-256 checksum
How to use checksums
5a73f0f20f71d4eef970a3fed7baac64d9a2a00b238acc4eca2bd7172bd7effb
BLAKE2b-256 checksum
How to use checksums
3422566d4bbac00d7e59534ecc139172d6842ec82133e5a2b96002f477144489
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a62c2f6f7b8fc69767392084828740bd6faf35ff54d4ccb2e90e199327c64140
BLAKE2b-256 checksum
How to use checksums
f6510249ed80c1db0a2e24191a0e329de4dc9e1b7fbf70c82335a0af8b9fd29a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp38-cp38-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp38-cp38-manylinux_2_4_x86_64.whl
Size 302.7 kB
Tags CPython 3.8 Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
70f29e0504fc511d4b9f921e69637fca79c050e618ba23732a3f75c044814d89
BLAKE2b-256 checksum
How to use checksums
e2ffaeccae9f6c9430d70e86ae9b319d0f087ef563e8213326dceab79a4c99de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp38-cp38-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp38-cp38-manylinux_2_4_i686.whl
Size 322.2 kB
Tags CPython 3.8 Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
d104f1cb2a7c142007c29a2a62dfe633155c648317a465674e583c295e5f792d
BLAKE2b-256 checksum
How to use checksums
21fd25bb73f2795d4a2f1d7ad59a1e91c5492edba64c348e8467be1fa638c156
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp38-cp38-macosx_11_0_arm64.whl

Download URL zstd-1.5.7.2-cp38-cp38-macosx_11_0_arm64.whl
Size 227.9 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
70231ba799d681b6fc17456c3e39895c493b5dff400aa7842166322a952b7f2a
BLAKE2b-256 checksum
How to use checksums
d95590154abe8935353008521c421595f563609890ab3e1e68a2aac19b5ea487
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 269.5 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9dc05618eb0abceb296b77e5f608669c12abc69cbf447d08151bcb14d290ab07
BLAKE2b-256 checksum
How to use checksums
8193c26615a062ca293b5d73b7c5303b7de2ddb7c3069d215d72924df655a648
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp37-cp37m-win_amd64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-win_amd64.whl
Size 166.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
594f256fa72852ade60e3acb909f983d5cf6839b9fc79728dd4b48b31112058f
BLAKE2b-256 checksum
How to use checksums
ef6872970fc5ff6659e8074cb9a6eff272b461562d1e837e2c39babc602cc3a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp37-cp37m-win32.whl

Download URL zstd-1.5.7.2-cp37-cp37m-win32.whl
Size 149.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
56c4b8cd0a88fd721213661c28b87b64fbd14b6019df39b21b0117a68162b0f2
BLAKE2b-256 checksum
How to use checksums
66b1a08f500e462d83d1eed15c088ee9b3a23c9b893b11b8bea1d4bc26986793
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_x86_64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5540ce1c99fa0b59dad2eff771deb33872754000da875be50ac8c2beab42b433
BLAKE2b-256 checksum
How to use checksums
3ab6c1417f804931b008c18be1244d0abb4318009f4b88751645bb8bcd6a324a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_i686.whl

Download URL zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_i686.whl
Size 2.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6f5539a10b838ee576084870eed65b63c13845e30a5b552cfe40f7e6b621e61a
BLAKE2b-256 checksum
How to use checksums
ca163565e007d926b6fa4bb80ae63d4e858e154c36812b374561ccce3ce20263
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_aarch64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Size 2.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
30d339d8e5c4b14c2015b50371fcdb8a93b451ca6d3ef813269ccbb8b3b3ef7d
BLAKE2b-256 checksum
How to use checksums
b8cbe70b3334f401309e1860d18ab1d30988fbbf818e88e56924db9fe46c3589
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Size 1.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
3e220d2d7005822bb72a52e76410ca4634f941d8062c08e8e3285733c63b1db7
BLAKE2b-256 checksum
How to use checksums
5ed87d641bc6b849f26f90beeda4b91fe8bd21736036e0b95a133d81e8ea8883
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Size 1.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Linux glibc 2.24+ ARM64
SHA-256 checksum
How to use checksums
660945ba16c16957c94dafc40aff1db02a57af0489aa3a896866239d47bb44b0
BLAKE2b-256 checksum
How to use checksums
0adee5829be3c1a9cba1f43f234abfa73c6b393d151e54b82b3cfda3362f1efb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl

Download URL zstd-1.5.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Size 1.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b9518caabf59405eddd667bbb161d9ae7f13dbf96967fd998d095589c8d41c86
BLAKE2b-256 checksum
How to use checksums
8c270b06c3302a12f2e71b7600533db7f0b6fa62492414d000c78fc283ea4024
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_x86_64.whl
Size 302.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
70d0c4324549073e05aa72e9eb6a593f89cba59da804b946d325d68467b93ad5
BLAKE2b-256 checksum
How to use checksums
7dbc9b2699cbcd13383ae8d32a53a4ff290ccbcd6cf9afc0b867382def66f400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp37-cp37m-manylinux_2_4_i686.whl
Size 322.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
7e998f86a9d1e576c0158bf0b0a6a5c4685679d74ba0053a2e87f684f9bdc8eb
BLAKE2b-256 checksum
How to use checksums
df88e4dc36b2b7349b56421a451dd14b5af4d00520e393b222045557b5128b22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Size 269.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
53abf577aec7b30afa3c024143f4866676397c846b44f1b30d8097b5e4f5c7d7
BLAKE2b-256 checksum
How to use checksums
43049aba5372bf06b934de26b130c624fd21c5dd541eb3179cabeddcc6a71487
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp36-cp36m-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp36-cp36m-manylinux_2_14_x86_64.whl
Size 2.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
883e7b77a3124011b8badd0c7c9402af3884700a3431d07877972e157d85afb8
BLAKE2b-256 checksum
How to use checksums
ea838c39b7fd3ec749855f4296fa2dc6429305b1c4544ccc38ed868a8043fa7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp36-cp36m-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp36-cp36m-manylinux_2_4_i686.whl
Size 298.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
b5af6aa041b5515934afef2ef4af08566850875c3c890109088eedbe190eeefb
BLAKE2b-256 checksum
How to use checksums
e08a894adcb64e654f3d62183134cf4490210c1ae0bca94f7423531ddc881055
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp36-cp36m-manylinux2014_aarch64.whl

Download URL zstd-1.5.7.2-cp36-cp36m-manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
73cec37649fda383348dc8b3b5fba535f1dbb1bbaeb60fd36f4c145820208619
BLAKE2b-256 checksum
How to use checksums
ab35514cfe8179258744e34a163b1efb3742ce4b8f48a8b4e07be67c0da93c84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp36-cp36m-manylinux1_x86_64.whl

Download URL zstd-1.5.7.2-cp36-cp36m-manylinux1_x86_64.whl
Size 1.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a130243e875de5aeda6099d12b11bc2fcf548dce618cf6b17f731336ba5338e4
BLAKE2b-256 checksum
How to use checksums
b34753f330b25f0f296673ef1c07ddaad19df30107092356e83d889a9cbf928e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp36-cp36m-manylinux1_i686.whl

Download URL zstd-1.5.7.2-cp36-cp36m-manylinux1_i686.whl
Size 1.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f97d8593da0e23a47f148a1cb33300dccd513fb0df9f7911c274e228a8c1a300
BLAKE2b-256 checksum
How to use checksums
6ce12aa5b4cb2cfd0344c90e6028133ac7953d573155b86a8945731354531533
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp36-cp36m-macosx_10_9_x86_64.whl
Size 269.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f576ec00e99db124309dac1e1f34bc320eb69624189f5fdaf9ebe1dc81581a84
BLAKE2b-256 checksum
How to use checksums
61ce57c772837e9d08188b5807cce63ff9a11c63522b96d21cc6e8e5cf0d7f1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp35-cp35m-win_amd64.whl

Download URL zstd-1.5.7.2-cp35-cp35m-win_amd64.whl
Size 238.1 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
114115af8c68772a3205414597f626b604c7879f6662a2a79c88312e0f50361f
BLAKE2b-256 checksum
How to use checksums
5b7c69f8b828566ad204a729306bdbb48f24bfa9965c538d2e718fae667c3862
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp35-cp35m-win32.whl

Download URL zstd-1.5.7.2-cp35-cp35m-win32.whl
Size 210.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
a59a136a9eaa1849d715c004e30344177e85ad6e7bc4a5d0b6ad2495c5402675
BLAKE2b-256 checksum
How to use checksums
8997c548a2de45579d2918df053bfb952c0a61d9621f067cb7def0311d875de9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release files / zstd-1.5.7.2-cp35-cp35m-manylinux_2_14_x86_64.whl

Download URL zstd-1.5.7.2-cp35-cp35m-manylinux_2_14_x86_64.whl
Size 309.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.14+ x86-64
SHA-256 checksum
How to use checksums
e2476ba12597e58c5fc7a3ae547ee1bef9dd6b9d5ea80cf8d4034930c5a336e0
BLAKE2b-256 checksum
How to use checksums
e5f1a6186da6f654100f8679888ff69a2d0a7b881d07d906181d67019cd32d68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp35-cp35m-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp35-cp35m-manylinux_2_4_i686.whl
Size 298.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
2bf6447373782a2a9df3015121715f6d0b80a49a884c2d7d4518c9571e9fca16
BLAKE2b-256 checksum
How to use checksums
0dc88f2a1866adba122d8e1c70a8d5c106551aa1c872fa7016eb48807bac0853
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp35-cp35m-manylinux2014_aarch64.whl

Download URL zstd-1.5.7.2-cp35-cp35m-manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bb1cb423fc40468cc9b7ab51a5b33c618eefd2c910a5bffed6ed76fe1cbb20b0
BLAKE2b-256 checksum
How to use checksums
11b1e7ce592f21dd12cb48a586989d896ed385af965f6d11cea5e36f09b19e18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp35-cp35m-manylinux1_x86_64.whl

Download URL zstd-1.5.7.2-cp35-cp35m-manylinux1_x86_64.whl
Size 1.7 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d9d1bcb6441841c599883139c1b0e47bddb262cce04b37dc2c817da5802c1158
BLAKE2b-256 checksum
How to use checksums
ea442b166df6cbd254ccd66aca2fd7deb27da0350aa65c40af8d217e3243ae25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp35-cp35m-manylinux1_i686.whl

Download URL zstd-1.5.7.2-cp35-cp35m-manylinux1_i686.whl
Size 1.5 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f19a3e658d92b6b52020c4c6d4c159480bcd3b47658773ea0e8d343cee849f33
BLAKE2b-256 checksum
How to use checksums
c1ac00d1bb1a468c281747170fe2dbd291bfcfc4295aa72c06046e9056b9a088
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_x86_64.whl
Size 302.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
74c3f006c9a3a191ed454183f0fb78172444f5cb431be04d85044a27f1b58c7b
BLAKE2b-256 checksum
How to use checksums
0efbc15dd489b4dee1f998be60b12d9c4023e2d4a872e596b6606173f1dafe99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp34-cp34m-manylinux_2_4_i686.whl
Size 298.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
a371274668182ae06be2e321089b207fa0a75a58ae2fd4dfb7eafded9e041b2f
BLAKE2b-256 checksum
How to use checksums
5ad290c5ecb4ad073b71eab2e586b91dea5c481493fecf162fded3b465c163fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_x86_64.whl

Download URL zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_x86_64.whl
Size 311.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.4+ x86-64
SHA-256 checksum
How to use checksums
7b13e7eef9aa192804d38bf413924d347c6f6c6ac07f5a0c1ae4a6d7b3af70f0
BLAKE2b-256 checksum
How to use checksums
6e8c0f1c89064c3b45c7046ea103ba1a22203f6e2884e7930e2da2da143d70e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_i686.whl

Download URL zstd-1.5.7.2-cp27-cp27mu-manylinux_2_4_i686.whl
Size 1.5 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.4+ x86-32
SHA-256 checksum
How to use checksums
2bc21650f7b9c058a3c4cb503e906fe9cce293941ec1b48bc5d005c3b4422b42
BLAKE2b-256 checksum
How to use checksums
a371c115f0285229226fb07699244eef7e4a493b8a2c4cf8f2f48afd12a3600f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / zstd-1.5.7.2-cp27-cp27mu-manylinux1_x86_64.whl

Download URL zstd-1.5.7.2-cp27-cp27mu-manylinux1_x86_64.whl
Size 1.6 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
92590cf54318849d492445c885f1a42b9dbb47cdc070659c7cb61df6e8531047
BLAKE2b-256 checksum
How to use checksums
beb248d73475348589f733a8e043bd16838eac4f3b175dadb9c3fa02777fd2b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp27-cp27mu-manylinux1_i686.whl

Download URL zstd-1.5.7.2-cp27-cp27mu-manylinux1_i686.whl
Size 1.5 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
489a0ff15caf7640851e63f85b680c4279c99094cd500a29c7ed3ab82505fce0
BLAKE2b-256 checksum
How to use checksums
4b642dd533d0889b569e06836abcd20d8b2b9b6250d389aa35dee69437d1d390
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp27-cp27m-manylinux1_x86_64.whl

Download URL zstd-1.5.7.2-cp27-cp27m-manylinux1_x86_64.whl
Size 1.6 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ae1100776cb400100e2d2f427b50dc983c005c38cd59502eb56d2cfea3402ad5
BLAKE2b-256 checksum
How to use checksums
91fbd1b77c3b67e7568a426215a1373a07f11ffa5fb492cddfcf6aa4664b25f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp27-cp27m-manylinux1_i686.whl

Download URL zstd-1.5.7.2-cp27-cp27m-manylinux1_i686.whl
Size 1.5 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d6ee5dfada4c8fa32f43cc092fcf7d8482da6ad242c22fdf780f7eebd0febcc7
BLAKE2b-256 checksum
How to use checksums
fc833e70aa0b9e48adf78fafd71f69068789b6aa79f4b026b45de9d63e3eb4a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.11

Release files / zstd-1.5.7.2-cp27-cp27m-macosx_10_9_x86_64.whl

Download URL zstd-1.5.7.2-cp27-cp27m-macosx_10_9_x86_64.whl
Size 270.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e17104d0e88367a7571dde4286e233126c8551691ceff11f9ae2e3a3ac1bb483
BLAKE2b-256 checksum
How to use checksums
d255ba8e6f11c3011140faa06f409b1073ca441ba3cc69c38099d6e29af6d1d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.10

Release history Release notifications | RSS feed

This release

1.5.7.2 This release

126 release files

1.5.2.3

1 release file

1.5.2.2

1 release file

1.5.2.1

1 release file

1.5.2.0

1 release file

1.5.0.2

1 release file

1.5.0.1

1 release file

1.5.0.0

1 release file

1.4.9.1

1 release file

1.4.9.0

1 release file

1.4.8.1

1 release file

1.4.8.0

1 release file

1.4.5.1

1 release file

1.4.5.0

1 release file

1.4.3.2

1 release file

1.4.1.0

1 release file

1.4.0.0

1 release file

1.3.8.1

1 release file

1.3.8.0

1 release file

1.3.4

1 release file

1.3.3

1 release file

1.3.1

1 release file

1.3.0.2

1 release file

1.2.0

1.1.4

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page