Skip to main content

ZSTD Bindings for Python

Project description

branch

status

Release

releaseW

Master

masterW

Simple python bindings to Yann Collet ZSTD compression library.

Zstd, short for Zstandard, is a new lossless compression algorithm,

which provides both good compression ratio and speed for your standard compression needs. “Standard” translates into everyday situations which neither look for highest possible ratio (which LZMA and ZPAQ cover) nor extreme speeds (which LZ4 covers).

It is provided as a BSD-license package, hosted on GitHub.

WARNING!!!

If you setup 1.0.0.99.1 version - remove it manualy to able to update. PIP matching version strings not tuple of numbers.

Result generated by versions prior to 1.0.0.99.1 is not compatible with orignial Zstd by any means. It generates custom header and can be read only by zstd python module.

As of 1.0.0.99.1 version it uses standard Zstd output, not modified.

To prevent data loss there is two functions now: `compress_old` and `decompress_old`. They are works just like in old versions prior to 1.0.0.99.1.

As of 1.1.4 version module build without them by default.

As of 1.3.4 version these functions are deprecated and will be removed in future releases.

As of 1.5.0 version these functions are removed.

DISCLAIMER

These python bindings are kept simple and blunt.

Support of dictionaries and streaming is not planned.

Build from source

>>> $ git clone https://github.com/sergey-dryabzhinsky/python-zstd
>>> $ git submodule update --init
>>> $ apt-get install python-dev python3-dev python-setuptools python3-setuptools
>>> $ python setup.py build_ext clean
>>> $ python3 setup.py build_ext clean

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

If you want to build with existing distribution of libzstd just add --external option. But beware! Legacy formats support state is unknown in this case. And if your version not equal with python-zstd - tests may not pass.

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

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

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

If paths to header file zstd.h and libraries is uncommon - use common build params: –libraries –include-dirs –library-dirs.

>>> $ python setup.py build_ext --external --include-dirs /opt/zstd/usr/include --libraries zstd --library-dirs /opt/zstd/lib clean

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]): 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

Aliases: compress(…), dumps(…)

Exception if: - level bigger than max level

Max number of threads: - 32bit system: 64 - 64bit system: 256 If provided bigger number - silemtly set maximum number (since 1.5.4.1)

Since: 0.1

ZSTD_uncompress (data): string|bytes

Function, decompress input compressed data block, return decompressed block, or raises Error.

Support compressed data with multiple/concatenated frames (blocks) (since 1.5.5.1).

Params:

  • data: string|bytes - input compressed data block, length limited by 2Gb by Python API

Aliases: decompress(…), uncompress(…), loads(…)

Since: 0.1

version (): string|bytes

Returns this module doted version string.

The first three digits are folow libzstd version. Fourth digit - module release 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_external (): int

Returns 0 of 1 if ZSTD library build as external.

Since: 1.5.0.2

Removed

ZSTD_compress_old (data[, level]): string|bytes

Function, compress input data block, return compressed block, or raises Error.

DEPRECATED: Returns not compatible with ZSTD block header

REMOVED: since 1.5.0

Params:

  • data: string|bytes - input data block, length limited by 2Gb by Python API

  • level: int - compression level, ultra-fast levels from -5 (ultra) to -1 (fast) available since zstd-1.3.4, and from 1 (fast) to 22 (slowest), 0 or unset - means default (3). Default - 3.

Since: 1.0.0.99.1

ZSTD_uncompress_old (data): string|bytes

Function, decompress input compressed data block, return decompressed block, or raises Error.

DEPRECATED: Accepts data with not compatible with ZSTD block header

REMOVED: since 1.5.0

Params:

  • data: string|bytes - input compressed data block, length limited by 2Gb by Python API

Since: 1.0.0.99.1

Use

Module has simple API:

>>> import zstd
>>> dir(zstd)
['Error', 'ZSTD_compress', 'ZSTD_external', 'ZSTD_uncompress', 'ZSTD_version', 'ZSTD_version_number', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'compress', 'decompress', 'dumps', 'loads', 'uncompress', 'version']
>>> zstd.version()
'1.5.1.0'
>>> zstd.ZSTD_version()
'1.5.1'
>>> zstd.ZSTD_version_number()
10501
>>> zstd.ZSTD_external()
0

In python2

>>> data = "123456qwert"

In python3 use bytes

>>> data = b"123456qwert"
>>> cdata = zstd.compress(data, 1)
>>> data == zstd.decompress(cdata)
True
>>> cdata_mt = zstd.compress(data, 1, 4)
>>> cdata == cdata_mt
True
>>> data == zstd.decompress(cdata_mt)
True

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zstd-1.5.6.1.tar.gz (643.8 kB view details)

Uploaded Source

Built Distributions

zstd-1.5.6.1-pp39-pypy39_pp73-win_amd64.whl (158.5 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (250.5 kB view details)

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

zstd-1.5.6.1-pp38-pypy38_pp73-win_amd64.whl (158.5 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (250.5 kB view details)

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

zstd-1.5.6.1-pp37-pypy37_pp73-win_amd64.whl (158.5 kB view details)

Uploaded PyPy Windows x86-64

zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (253.1 kB view details)

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

zstd-1.5.6.1-pp36-pypy36_pp73-win32.whl (201.4 kB view details)

Uploaded PyPy Windows x86

zstd-1.5.6.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (257.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

zstd-1.5.6.1-pp27-pypy_73-manylinux2010_x86_64.whl (257.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

zstd-1.5.6.1-cp312-cp312-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

zstd-1.5.6.1-cp312-cp312-win32.whl (143.0 kB view details)

Uploaded CPython 3.12 Windows x86

zstd-1.5.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

zstd-1.5.6.1-cp312-cp312-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

zstd-1.5.6.1-cp312-cp312-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

zstd-1.5.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zstd-1.5.6.1-cp311-cp311-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

zstd-1.5.6.1-cp311-cp311-win32.whl (143.0 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

zstd-1.5.6.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

zstd-1.5.6.1-cp311-cp311-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

zstd-1.5.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.6.1-cp310-cp310-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

zstd-1.5.6.1-cp310-cp310-win32.whl (143.0 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

zstd-1.5.6.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

zstd-1.5.6.1-cp310-cp310-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

zstd-1.5.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.6.1-cp39-cp39-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

zstd-1.5.6.1-cp39-cp39-win32.whl (143.0 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

zstd-1.5.6.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

zstd-1.5.6.1-cp39-cp39-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

zstd-1.5.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.6.1-cp38-cp38-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

zstd-1.5.6.1-cp38-cp38-win32.whl (143.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

zstd-1.5.6.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

zstd-1.5.6.1-cp38-cp38-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

zstd-1.5.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

zstd-1.5.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.6.1-cp37-cp37m-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

zstd-1.5.6.1-cp37-cp37m-win32.whl (143.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

zstd-1.5.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.9 MB view details)

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

zstd-1.5.6.1-cp37-cp37m-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

zstd-1.5.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

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

zstd-1.5.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

zstd-1.5.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

zstd-1.5.6.1-cp36-cp36m-win_amd64.whl (229.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

zstd-1.5.6.1-cp36-cp36m-win32.whl (201.3 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

zstd-1.5.6.1-cp35-cp35m-win_amd64.whl (229.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

zstd-1.5.6.1-cp35-cp35m-win32.whl (201.3 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: zstd-1.5.6.1.tar.gz
  • Upload date:
  • Size: 643.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for zstd-1.5.6.1.tar.gz
Algorithm Hash digest
SHA256 64a01e79d8d9592cd35f9de2ebc0376e0f94dc8150d6e3ae891a55f190d3490e
MD5 6b038999f4afa5c442bc125db1196dea
BLAKE2b-256 7a5a3f3a689ac99940e3218490aa996a68e7ed86841c5a98c544eeeb8bffca54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 343540559f75e4cbe1ab7145f03f276bbd6b29d98e0efa490e05b8e0f9fb5b80
MD5 644c46e4cbee25a8f21b6359bbd93d31
BLAKE2b-256 db33e48a3f8feeae4b6fd6a88778d21432537b0c072cfa63132fe12372737930

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fb485163456835005312499b0210c969b8e680b8ed97387a06e3ac8c573ad81
MD5 68b99b0ec389e0eb03797b8a67f6bd38
BLAKE2b-256 eda441e8550cd008160281e0c73cf521fc6af68fa4f029ef3598c87db81aa41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 251dd039bc11da139e26007b04b3a43d8c7e9ea0f399367dbe6634213f96c562
MD5 96dd945b638c4241cee2bd03881aa018
BLAKE2b-256 af64e9e790e62a49ca933f8e675125523f4c0a9319954b6e1e6671f88a937b80

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 972eb2cf749a17f2f489374b8bb69af17b49a62306b35dccaf24767cac3c0194
MD5 07a1ec7731200fdd71b12091b353f12e
BLAKE2b-256 8d94d780d222255c2cb1e88134dec3b8278844a60ab6f24f4244f6adbabf63e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a672013a0159255f37e56ac799b8f75b3c5e5a4ebeb2c37df7fea818ce0adf8
MD5 2c23b9778b8b01821e9c5a0cc15202dd
BLAKE2b-256 021906804990d429a39a35f9dc9dca0e6cdad31e3337444aa3c044efae24abd5

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54eb3f22357c0dc69ef5267c6e5df3e496b3beaf5d1857e50caeeea551528bbc
MD5 d2978bd0aa19b172e9a5ab13af645a57
BLAKE2b-256 9935d82e66be628ec5521579db8c328b3cffaf05faf297211c39209567850e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35cefbf0a5349f2d772ae41957f5f2a88fe012d374eab801683f644db4edc5a6
MD5 772288c8ac724f2636d606d385eb202a
BLAKE2b-256 2a7fa101d5bb4d39949513351d1675fa4ffbd0141072b2255078bbe72a7d8102

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8dbd7e78a1d9f9a751ea93984febdb68ded6c88f9b36448f1bb6ec5f6621aed
MD5 2e571b646123ecec8be5232bbc3a2cb1
BLAKE2b-256 239da163e2ddb888a6156504458ccb3347c73eea57d29d23fc89821ff8327f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 51cede4f54f27f62e303328f790a55e2f8f3e14060605d19fb874bb6318a0742
MD5 8ffff534f2de11924a5a54b6608b4c46
BLAKE2b-256 055521b7852a0391013537089a299218b3da2653aa0d86d9aa57892160a92461

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a731b65b7b13dff89a1067c0deab75c12bb1d07b95b89e4c18e91a59a6e290
MD5 97301bc7b6860a9a598d0deada5d958e
BLAKE2b-256 e26601c2a216ffa4c04df6484a883194c9c8bda48ce50d9ff10810b5cafc76ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68869460a1f6dc6dfc4de5c8da6101e06f21b1ca7b6d4bbabfd87ec1ba3bc0ca
MD5 c195a1577f3eff83523a96b02ba30ee5
BLAKE2b-256 dc2f1885f00d50654faa154fb8f3ab78453f7b2a1d53b292af84ca58b4da6cb0

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9011b55afcbc2e93d8e2b1dd15314185f9aa6a32e7f7654b1ccf3273bb9643e4
MD5 58518ad033b293cbd87bb62c409bb648
BLAKE2b-256 a259853a773ea0467fc52e2a7ccec63c19c1f4e8a91c4d5f5eca389ebf5dfab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7a9e914b58edad15492eb9dff5f6941cbe8f431d82490f1b4b270a8e51dddbad
MD5 04f3e4d6ff62335a538b6835c814c989
BLAKE2b-256 074934c3115461b9d34e66b07dc89033b4561e096ad0b3435bec41f82b4f6873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d6409b2816e8c578946d3fa5197b2fc92feb4cc6de28adcf5569f521801f927b
MD5 19b6445be21959b0a91538f6bd62f9ca
BLAKE2b-256 2731336ccfcee6e27b50fc71a08d627d5005f3eea09e7a412b2416b87102b0ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3b2b4ae40a8404137ba76139b46210ab73faa3f9429e1512ea444d588661b70
MD5 02e50f3839c68c5e09eef68d19709338
BLAKE2b-256 dfef28c797c6c87ce084435536677491daa4b942c5239fe1044a72a5fccb8c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d7b9fc00a98b16b360d95d1e5f34a5a20f4334ab467ca2f172f09d814580c3cf
MD5 fee870cb1bba2ecfb1f5927cd1b7eb72
BLAKE2b-256 60d9f4f1ce088f85a3de93be453e411dc660a7db1d69198eae4ad169f9d319b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 255a957f94c618f0af47c3949f27934c953084eac8941a7df455743c9fc2904d
MD5 1e1f277418cf77b8db2b2ab2764bf4a8
BLAKE2b-256 787d3533f1637d5fa97a02a047af0b1d5a5a89f5ecba83fc51405ef8b532e62a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4d61e5145c382aeeaa70dfa19b42e9e8049ab3a24bb2064e9f79cda03bb7ff22
MD5 aa2747eda1eb6b702d6434f025e1e972
BLAKE2b-256 17961fe13f34f1c049657c1287f6d55731deae2929819906773903686290be14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 af31fc67fe76a1acb1e350b9968a7476a9686a10951c24b3f52bf6173573e722
MD5 33bd2d1235cc2d3cda3f14f8d96844d8
BLAKE2b-256 5ccd112e595f136e1253f24e6a8618540095eaf36790e042655c9ae28a747b7d

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4396d9317ee2e9032466bf006b6254d17ab5a71c6d904fa6b2bc2ab377903cb1
MD5 b78b8dd2f8704b6dfc935988ead971b7
BLAKE2b-256 10eac6cf42eb62df8b4889a9e0f61471dc0b06ac01b6ca81fd7dbbbb2d304875

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 136b6ead97209b0309e50751da171a056a95e9b742b4cbfd11d8bab68d379533
MD5 840af58718b20f96f3a2d7757524f0d9
BLAKE2b-256 06d805e97e1ded7d9f4f08d081ee2076a734e2f65b86317080ed6fad03e242a3

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2644cbd2b0cfe4a7492a71bb89c780c27f0a461984e443855624e6fe3d1c29e6
MD5 2a9e548d1dae0ff2dbbc928b159481b1
BLAKE2b-256 d0ac48bac92e584a3b0e0af4be36a9a8aa8182c205b96bab0655f314aa6c23c1

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17917107e3a2766629646b21dde257e085408086b95a4a1fd62153e77784fcc2
MD5 3f5e04571380921127a3071818c0020b
BLAKE2b-256 ed35afcb694e0739beecd06f69c2f8b9602996468cd186ddb2a5b8b715564ebd

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ebd16e902398161c0de066c65a7ee36eb0a3b91087eafb75e48a120a955de61
MD5 b51bb212e46abe662425947ad348eba2
BLAKE2b-256 8d63037805623850d0f6980ef5c039bfc21cdde0c516a2a97d3548e7856860e1

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea5039f112334b43f894e74333ec6b6b9ebcf4926db75136ecfd17f938d4a0d8
MD5 b3e34364716a7beeca917a094f762950
BLAKE2b-256 9e454dbdcbdee23d2dd25de9ed665a05c9019d0ffd41bfd64f2158808685ff49

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16cfe4ce5987587dcd6a79358dcdedc091a5c1f8ab9defac59024400de34ce77
MD5 1a741be53d256b3ead0751d420b57d95
BLAKE2b-256 cbded320815c3777ebb0a88256b7b4b6d2946c556f8757e4b9870d71a689652e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1e3a20d23b2e8207d6786bdeff01a3c8e9d3da34e46e50a7ddcac71bec5915b9
MD5 8b7069754f5ab683bc0d6743f6330164
BLAKE2b-256 d4866403f5efab8559a290da375cc756a0cfd0286b043361e2f80eae05c26073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d36c1ba71ba155a653f21d67d038fd1a887b343ed65f1660b3911ece5b934d33
MD5 c745d3a8af33a56336f5b6ccad66a6a3
BLAKE2b-256 5666194a611a6ac47a561b382a552024e8d24a8497892e4aedf73bbc3b3527b2

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 472a4d546afaf58bf0e35f388ac330b60b6aaf94713d3b7cf1c6753ff1b4d10c
MD5 001433fe3952bd67fa7c00afcf81d321
BLAKE2b-256 89ade077c94c9f79d142ada68b27e84058d5ce4329702eae1e6f35e3b02a4a22

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 22e6829cbf1994999e281ffe749f110d4544861566e3f0a5e3c93d63f52cbab0
MD5 f42fa730d3ed6996168530691088a4c6
BLAKE2b-256 c4c809e34d938be66b44aa2c72b144d0b886f470fc49159f651a46e77f4929ec

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de1f2b7326ca6d3c998c0ea9efc8d92fc716e11a3d02dd977c20be8694ab0cc5
MD5 67c329376907a71897668229582b8a47
BLAKE2b-256 c5a2627d107573bb382842a5e58611d025c4020cb868acef73257d406ae54320

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2498c1e02398b724249d648e11de196ceca112d1e37270af4ddf359bc29ef10a
MD5 454489c73c4393a10d253db42dc11337
BLAKE2b-256 299c4236411cbe1a09582d2ea08c6f5092133ce938506f664b781ef8a1bb2390

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63ebd8a3efc876afa6b1a930f15853d3e691e5652441487c26cea5ed49e9b239
MD5 90b75a3e9b31257de0453c75de90d064
BLAKE2b-256 270231750f23ec8a8da9ef2c778f0eefbc40da204f0ec033cd2e186738307dd9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dbb0ecc30e0eee5e17a6a83028c0003f6270bcd2488f2927d79b19982cbc198c
MD5 52b40b1d3cbbe628d1bac4cbd92d6ca8
BLAKE2b-256 2ceec084b58d5a63cc39598988b8d9481890466ea4a79180a68e2cd31d0ebe22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ad9e48f2ef5dc2db69610a5567acd34adbc2195902a0971021490e925023fd52
MD5 b1e45cc311025d77cbe412cf3bd9cc88
BLAKE2b-256 bc2a37159a695ffec564a09caa756b3fce9e50847ed498fb706e8fa299d66733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5f3e3881058262d29ee05a981e11545cc13b722eaa40ce58b2108a14796bd93
MD5 9caac8bf22342f7b8aece6fd61be5110
BLAKE2b-256 8eaaff5a9681f0e9142b69bcd182c669ae8550db31e7dc5330c764495b288389

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f7203e02d33932a6f37622a94ea72f50310e91e2f21d30e8ecc2ae9e67329b53
MD5 563563b47e08c4fe979031bf0ae5205c
BLAKE2b-256 65ba0e60f2cc8ee89066ab809cdcc365a58f8a163403aa5644d5527d4bfa651f

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 70e9892f8902bc48b596f393d4d2a3ff2ca7755783f3137069c85e0517b8d8da
MD5 2a4ae1c3f58b38ceb784e9368b51f8f9
BLAKE2b-256 0a6e110d44db099030efdf07703cbea84827e7d845d35558e6cdf671e24d4c34

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55aaff3a5b3ec1fa9fa000b8bb7926e1c129aa0597096d19be9635998eac0a33
MD5 554ced8f962d8d848a3d686ab02be6d8
BLAKE2b-256 1cb7b16b3cadf1958c59097180484485eda2f2e1623d2c8d10bec8e588a98ea3

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b75fe9d8af12dd9235f6d932d8601195fd82b818a0c5780ce28cd068cdad885b
MD5 523779615039000d14a447a644749dd9
BLAKE2b-256 4b4709528913c334f408a6bc03703a1f13be5593b2d7c00c19f6ad64a371b476

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58c7e6441005b3c05e32ea62da034ef427ede4f74d59593a98a8d3d067abbb30
MD5 cc4e9a88a604240af572e5e48ba3b618
BLAKE2b-256 42447e12c1a9f41bc18daaa3edd4713569d71a4e0e69360b0e8befd0e7544397

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ea9a8dfe02f26b1c68c72f063ec2106edb2d71a5279ea5b1a05e952dc44eb668
MD5 7a90bc6803b4533de0f865ffde781014
BLAKE2b-256 8954c551048af3072b7a4f370a65383b15d29f7543e6fe78456823e1ef31500d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ad6927e917637b679cb9808815800f91c474c3b6c819e7edee898d06d1998615
MD5 469399a5437c7c2faa0e652032ded3b6
BLAKE2b-256 ec96a47cdb4158bedb4c20e0d0ae365cfe41fae7b8434eb9c76ab19c2f96571f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c9efe68de0ed648848324510ea7b100e702bdd866f7105e499b209ccde2ceb0
MD5 1554b725e47a24237ec413f3eaa398c6
BLAKE2b-256 d82856c1cd9b0a4c9ed028de74b554f99a78a4e4121ae8fe25366fcd85466250

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b20e203ef2a4b05271420c038e6d7e004920124d33b0aa1f6c6d966b1f9676fa
MD5 51571d99afcfc8b9720890e10fe7d4bc
BLAKE2b-256 1470d6ea0de646db6967e9001d4e232afdbbdeaed903973ba34a6fbbc577a3f3

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1239f4ad597c8796cfceddcf1d9062125e0b4ea75dbd369e18f1f13bf687ce63
MD5 d5de4ad696884501c193c35651b9f7a1
BLAKE2b-256 6d343d0db94d5c299ee140037d1a57c96acce2d4dfb5d74889f9feee263a7585

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aef69dc30beac397517a7219bdf7873620e8a0de74301e40ad51356c49f724b9
MD5 1d09801f22a83030d40eec449a648560
BLAKE2b-256 5499098deba3c414525a6b22aa8b465333a8e91866a4d92ddbb3e5561b618293

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2523683758345238d544fbda97b0ecc025d440214c4424bd7bd20c0f8904479
MD5 c42adcc109ebee98ccb33e58e9b3890d
BLAKE2b-256 f9c29ffaa28b0d1a0b7abfca830ff939e4ac46ca2f74651a5072ccacba36d187

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1573926cdd0ad6620df2bf61f8a8e242205e0fc73efab7ff69fc425ab20aa906
MD5 96591eeefc73b5eb544dd6c3e505c80b
BLAKE2b-256 75ab8dc3ce9bdaca4e3e55e4d1b9392c62e61b57765d98f9c8c402bc5ce91d15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 158.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8f3abdb53c2996d74dfc1a38fc58e55e794ec9557610185519280b6aa9cb90c8
MD5 5895f855f9f4959c472d1cdfffc61c14
BLAKE2b-256 763a95730ed5b9f1fd8a78865c381f8f3a4d32b7fdd56500f2d9e31e6c89fbba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 143.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0eb553d2979645b373730bc1b46fdaf30d668000785b5943de1f5bbd8206b7c7
MD5 950eab9bee73cff74aab649178705a35
BLAKE2b-256 bd81249acb3c3536cad276493f45aab30ac93aae9032f11b3e61f2eafc0d1e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2cb819f34bb13456c8468125c290dd2bb227a2b784c4e6ed8bca4a07f50400b
MD5 912a93b11ca86a67f360ba1e0e34cb32
BLAKE2b-256 ee859b9f9617b160059c4c01e7100114448855a2a2a7e0d84677454ad999ce9d

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 532df36d563611d44e1d715fb68a082e0d7fbc9f1d83237e99e27725940d03c5
MD5 e02da355beed3d8a3bfd0516e6d8d8e2
BLAKE2b-256 8a40373b8404b2451e5801b97fe8da69923485c3f46bea6d13ca4906f54a4896

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe034eadceba325671decc0be79c0825cc25b8f8c4c11f34bcc09a793d790d18
MD5 628a78cb5b936f40b0e2d52522cae1d1
BLAKE2b-256 8cdb4d07270d9d28292bbd8e7cc3fba8b312d432bbd946e1b2a4c2c1663d0c85

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1692fd5e120f1b86aeda81492c1eec54c42631bcd73943c68f29c5a13fbc96f1
MD5 a09543aae42518476b81fcf304f45f81
BLAKE2b-256 aa20a805a975d940063d17773fe9fc4487c87853b212b6490cde179b251a33ef

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c327cf199979cd559c713a9cef29a8938bd9d5a17a582b024078b4af1b70fcf2
MD5 c8df66c4e6c5b2690c9ed4d990ad6141
BLAKE2b-256 a9cafd4dc35433a06aec9e8bbbf733efb757b110d333fb1aa96d51ea788780f9

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b33c4effbdff51a9e1c32e84b6f3b28a7ea2c7278a482f856540584e7ca8016f
MD5 cae7590e32c7b8b27fa283a454f61fd2
BLAKE2b-256 8dfc03e8de5d2aa656c9b02257a92b8624914de11657396cfe2b7c3b1892a086

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 159b79922e90e387b42986074339c670b224c43d15feb9b98463ba1abd212947
MD5 7edfc7c9ca99058c4db8ed8b1e6fba47
BLAKE2b-256 9f93c1ae42907fad80c550f004c6beb59870e3dcb2ba65fc49dd54e4ebc9fc96

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fcebc4b59406fe04c18349c496a3d5ce5971f8cc6e30a8fb6ff86c8871f4ab3c
MD5 05a8bc9bdef4e8e9ae6a343a39e8d7e4
BLAKE2b-256 632e8c241f772e4ab28f06dc3f40e4ba2c863d479262701eced58dabb4266071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd1a162a40ca090f72766ab01ad7748b16f9b14f6bd36c00fb9b1a288db2a985
MD5 8226a1b3e7f7a4ed141cda403157e8c0
BLAKE2b-256 688939c5ccf3272002ead9045b6bcc7ef0331db245dd2c230d3bb9d994bac9f8

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2128ea4bb903471c1e763e50a1f301bd37e70735eee9979dbef60244605fa5c7
MD5 7668a4d2d078f8f139aa080bf1114fed
BLAKE2b-256 a3719f6ef5c81dd9dcdfde9217592e0f61bc7cfb6707158293f6b57c042f00f6

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 563d36a666107b9f388e766c832630c7b0eb101ead536d0cd5f6582e75cc334a
MD5 d817b69b605c7c5a4c0a51d1b3a63f5c
BLAKE2b-256 dbb0ed563deaa785b6187c6e6372bee8fc57f995fa1fe665ff36b475065d650e

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23aef9526a4ea90cf47030c7a57e4cedd398cf4ba1ec2798b51cafe47aff75fd
MD5 512f52ce409250e257ac7460dbe7fde4
BLAKE2b-256 ba68af9f4f8521533244c0a277e485f840ab44ca49136a3813bb048cf437d817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 177f19b76efd6e2e7d91c0557638dc49de6c8794c109ccdf0ea4684f63d2fe24
MD5 ca56a708963757e5277709b6865e176d
BLAKE2b-256 fe9a95d2e9f951549438bc75a000878a7ea88e5674970588eab4e4c3236500ec

See more details on using hashes here.

File details

Details for the file zstd-1.5.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c533ecfd64285c4f228cd61909e35eb9888da4adc2a7ea213b2b96a8084b96be
MD5 7f3b3627e72aad321c5e06fa9cbab0e3
BLAKE2b-256 a15bf863f612a0324fc1f2cd36532836627d68fcaf171e37b5e27908388b9492

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 229.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for zstd-1.5.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6b06146e5b69568dea5506dd870071e2938e260c78db06f40c6184ae411438a3
MD5 82bd6a8d0d9823702783bfe14f44cebf
BLAKE2b-256 5d2adb6b2a1e248258138ab8924d545e13eaebc5b397856d8aa2c16b86970d37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zstd-1.5.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 201.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for zstd-1.5.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7956e2efc29e84af71243cd9ece05d580a339fac9525ee531f3c3bdf83c3f073
MD5 cb2a5fc6c82f2215a7aaa1b77a8a701f
BLAKE2b-256 de2592ccc378d47797e9826e474f5fae4aa5d7519a10ef30ec92295aed9d7d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29c5629d5d6f18ce5d52b54b82ce7abc5077e7557279947c050430537db251d2
MD5 5908de5c1ed04cb45975d0ac02f93e48
BLAKE2b-256 b2f0cabb4dc61956ea7dc1fda78c838871dc41fc521bcde36a8e8a26b92471f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b1cb1e2dc3cb17a879a7299dcbaf405238256bd9012a35722fa9c1677f6774e
MD5 9a1814c9b0c3082042c2819aba0ea2c6
BLAKE2b-256 4d09849af10cf83a43d8fb714e1106f19a933ac40bfc5b93c3abbdc357872d14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2dc857557e19afef00dd90e4d4cd7451b3add21826003153302e90767ec854d4
MD5 df10042d187a366814cf2ca3cb534dd7
BLAKE2b-256 2202f05c4ee29f56b31f0f2cbfbbdba583e3760292a1147d51baabfb52757c70

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zstd-1.5.6.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ff4d8a4c1fe37af3c4eddd632303f8fbf891ec422c5e117a70024e3757e2edff
MD5 307bb7d25a4052ff7af0d4846e94c661
BLAKE2b-256 180a5491a01168018222db7e3583c96f807d3aa2fbf96ee11f51829786641d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 acb96a40da4974d5633c2a1577a26928ff98ff3905db3f0c21e9fc409922c4a3
MD5 668f76b87ced328a1259927facce5fa5
BLAKE2b-256 7ca62e29351de65ee2e7c596cec79de225a1960982879ab66698013d06e1088d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc5981846390755256eaa9e910fabd6460fac380703aa1030fba943cb3a7fe73
MD5 46c44db5b0763902b89a1c4794393146
BLAKE2b-256 7c21e6b8ad5299f0e28882426b7b27042cde94c401933207e2cde9da7a64e1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f76f4eba38cb30d89bad0b3591f4ef3f5f1de3bd526fe33895f1d4187277634
MD5 5aa2aafe03ab97a3e058b2305df05be9
BLAKE2b-256 d100caf283dde301053da32e21eae05009e019d93dc0449391bd30dbb535f8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9b98a129e74593e11b25d4b42b8f5cfcc33db33bf5b8d4dc17c434d0cf1a9bd
MD5 bef1008584d8db14279ff5da67bebb31
BLAKE2b-256 74ac743119d6816b6fed361869699d74c8300c04cd43397c9d4f2f0ed3d0c0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4fa797232937c7d9140fc19e83267691fa169756e9a376cd9d1520a76919cc1f
MD5 3c8b6d4835f31c28fde06d6f331ecefb
BLAKE2b-256 54d6417c3fdc1d5503d7d66e4790cc66c672011a8bc98dc696febed4ac973ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zstd-1.5.6.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca1f2eb3fac59c01bdabcb767427f32d485ead735d599d12bba48b3137d0ce36
MD5 24f8ed1ab04e91c274cfbadfc3db9e63
BLAKE2b-256 cac553deb31de7be59a439724c7072bded44c56cc896517fc571fbda4056ee07

See more details on using hashes here.

Supported by

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