Skip to main content

Python bindings for EUMETSAT's PublicDecompWT

Project description

pyPublicDecompWT

python versions wheel CI build

This package provides python bindings for some of EUMETSAT’s PublicDecompWT tools.

With pyPublicDecompWT compressed xRIT (HRIT/LRIT) files can now be decompressed in-memory, directly with python! Currently, only bindings for the tool xRITDecompress are available. If you need other classes or functionalities, please open a pull-request!

This repository contains / mirrors the source code for the complete PublicDecompWT tool, as well. Additionally, we provide CMake build files.

Installation

Install pyPublicDecompWT via pip:

pip install pyPublicDecompWT

The following command will verify if the installation succeeded:

python -c "import pyPublicDecompWT"

Requirements

Building from sources requires C/C++, including compiler and standard library support.

  • C/C++ Compiler, e.g. GNU-GCC
  • CMake
  • pybind11

Usage

from pyPublicDecompWT import xRITDecompress

# the file to decompress
compressed_file_path = "test-data/compressed_ref/H-000-MSG4__-MSG4________-HRV______-000012___-202105260000-C_"

# Legacy decompression on disk of given file path,
#  this will write the decompressed file to the current working directory
xRITDecompress(compressed_file_path)

# In-memory decompression of given buffer
with open(compressed_file_path, mode="rb") as fh:
    xRIT = xRITDecompress()
    xRIT.decompress(fh.read())
    uncompressed = xRIT.data()

xRITDecompress

To comply with the original PublicDecompWT project, the pyPublicDecompWT package provides a xRITDecompress executable as well. Our xRITDecompress script is a near drop-in replacement for the original.

There are two changes:

  • We are not writing Decompressed file ... to stdout
  • As per UNIX convention, the short option -s is separated by a space, not by a colon.

The former can be enabled by passing -v to xRITDecompress, however, the latter can't be emulated. Thus, the command line call has to be changed.

In addition to the -s option we added a positional argument files to enable batch processing of (multiple) files in a single call.

$ xRITDecompress --help
usage: xRITDecompress [-h] [--version] [-v] [-s FILE] [files ...]

Command line tool for manual decompression of HRIT/LRIT files.

positional arguments:
  files          Name of compressed HRIT/LRIT file(s)

options:
  -h, --help     show this help message and exit
  --version      show program`s version number and exit
  -v, --verbose  Verbose mode
  -s FILE        Name of compressed HRIT/LRIT file

Versioning Scheme

The versioning scheme of the python bindings is the PublicDecompWT version with the additional version of the python bindings.

Example: Version 1 of the python bindings for PublicDecompWT version 2.8.1 is 2.8.1.1

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

pypublicdecompwt-2.8.1.6.tar.gz (159.8 kB view details)

Uploaded Source

Built Distributions

pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-win_amd64.whl (138.3 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (259.3 kB view details)

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

pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (311.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (200.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (225.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-win_amd64.whl (138.4 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (200.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (225.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-win_amd64.whl (138.2 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (200.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (225.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-win_amd64.whl (138.1 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (225.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-cp313-cp313-win_amd64.whl (140.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

pyPublicDecompWT-2.8.1.6-cp313-cp313-win32.whl (129.4 kB view details)

Uploaded CPython 3.13 Windows x86

pyPublicDecompWT-2.8.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pyPublicDecompWT-2.8.1.6-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pyPublicDecompWT-2.8.1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (261.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.24+ x86-64 manylinux: glibc 2.28+ x86-64

pyPublicDecompWT-2.8.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (312.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.6-cp313-cp313-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-cp313-cp313-macosx_10_13_x86_64.whl (227.1 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pyPublicDecompWT-2.8.1.6-cp312-cp312-win_amd64.whl (140.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyPublicDecompWT-2.8.1.6-cp312-cp312-win32.whl (129.4 kB view details)

Uploaded CPython 3.12 Windows x86

pyPublicDecompWT-2.8.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyPublicDecompWT-2.8.1.6-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pyPublicDecompWT-2.8.1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (261.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.24+ x86-64 manylinux: glibc 2.28+ x86-64

pyPublicDecompWT-2.8.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (312.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.6-cp312-cp312-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-cp312-cp312-macosx_10_9_x86_64.whl (227.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-cp311-cp311-win_amd64.whl (140.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyPublicDecompWT-2.8.1.6-cp311-cp311-win32.whl (129.3 kB view details)

Uploaded CPython 3.11 Windows x86

pyPublicDecompWT-2.8.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyPublicDecompWT-2.8.1.6-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pyPublicDecompWT-2.8.1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (262.2 kB view details)

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

pyPublicDecompWT-2.8.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (313.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.6-cp311-cp311-macosx_11_0_arm64.whl (202.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-cp311-cp311-macosx_10_9_x86_64.whl (227.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-cp310-cp310-win_amd64.whl (138.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyPublicDecompWT-2.8.1.6-cp310-cp310-win32.whl (128.6 kB view details)

Uploaded CPython 3.10 Windows x86

pyPublicDecompWT-2.8.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyPublicDecompWT-2.8.1.6-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pyPublicDecompWT-2.8.1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (260.8 kB view details)

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

pyPublicDecompWT-2.8.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (311.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.6-cp310-cp310-macosx_11_0_arm64.whl (200.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-cp310-cp310-macosx_10_9_x86_64.whl (226.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-cp39-cp39-win_amd64.whl (138.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyPublicDecompWT-2.8.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.6-cp39-cp39-macosx_11_0_arm64.whl (200.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-cp39-cp39-macosx_10_9_x86_64.whl (226.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-cp38-cp38-win_amd64.whl (138.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyPublicDecompWT-2.8.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.6-cp38-cp38-macosx_11_0_arm64.whl (200.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.6-cp38-cp38-macosx_10_9_x86_64.whl (226.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.6-cp37-cp37m-win_amd64.whl (139.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyPublicDecompWT-2.8.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.8 kB view details)

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

pyPublicDecompWT-2.8.1.6-cp37-cp37m-macosx_10_9_x86_64.whl (225.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pypublicdecompwt-2.8.1.6.tar.gz.

File metadata

  • Download URL: pypublicdecompwt-2.8.1.6.tar.gz
  • Upload date:
  • Size: 159.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for pypublicdecompwt-2.8.1.6.tar.gz
Algorithm Hash digest
SHA256 6961186da37ee28380b810b3e1458fb27f9c23076cb7ed8529ae6c2abfbc99d0
MD5 5a3efbd8b755f1c7126df3648a926d92
BLAKE2b-256 4824ed514d176f5ea628f2c905e0086d3f3e32f3cc701169d288c0192300822b

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bc9f1ca02abcd7e22107faf43efd40683c7ac857ef75cad52365910c28835b79
MD5 1cf9d8682a85a383bfd587477c30cf30
BLAKE2b-256 9b1a408ab46757fa52cfb564fda45482cc1abd8837c3557466e75e3a5425cd14

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dc9c7067f674eb8db6109a6018d2f53a9cd59eec12c48a087fb09db1c30022c
MD5 6e12ad8be1794b340de67ad6f5f8c04e
BLAKE2b-256 31e3428898ba8d070eeb02c3cc368f1b42b0518396914d8e4d177cbcc9e0bc44

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0683afad8b4c9db4e14a2648284470f8114131f3da80379294e96ab37af44c5
MD5 e6e4dd810a42d70c7aa519ebdaafdc4c
BLAKE2b-256 9e8b516596e1c5474211e7bc9db1c5bd6de8921f05af63bc8fee27b8b98c510d

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 587630e5c2150c60deb484b9213cbe6646e986e7f5f514f40d22c9aff9654675
MD5 6b8676d251b056dcdfba149c7aca1b83
BLAKE2b-256 980c341652f2567e9becfce0c4add8330afdc5d820e7ea6270a79684a63eddcf

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2831679cc328ab096b401eb53b2c386018be899eb26696ff324673be87f35297
MD5 0b75e57ae23c14c55710c83fb3cf23ef
BLAKE2b-256 c56c11254b6ccbb310b6f0b8f340a2cc966102aa7e3cd3b323cf7db6345bf802

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c0cd82d54ce96b7ac7c3c24c19dc65b0145aeb38b4e97fc3776c2956e9103d11
MD5 54c5026656b5167dba073e93307c882e
BLAKE2b-256 4a8da8746e816dc2b95ec60bccc5b94cf6662a6632fc485520d500ef6fba45ef

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47660cdf076f7db557dd76c0fe9549c77312ebe2965fef72a28a637356959641
MD5 4959e9b32f9b23f049c1233c9d5b4f02
BLAKE2b-256 bf36173f2ebdb4ed35b4282a5ffe2cac737260e79d90ec4d7a200d92f1dd79a5

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8243ee5d053924ad6af18d952bfef2a188ea19df5a64534336dc0cb16d5ac708
MD5 12ec38eeb99907fae8d7b4260da48fa0
BLAKE2b-256 48151847a4156aba448781778d6627957cf8e3cc964c5409d8ca0178326ffb4b

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 72ccc60eafb6d93cb0ca93736a08255599af5c6935f24448022605410bdb5eb8
MD5 eff015ced06735527d02805dd5f90ff6
BLAKE2b-256 3233cb96a80555c9c22402e0aed88d70017e4a00374aceeea3a3ed7b6dc3e9ce

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cc26b031c98982b4bb2ad09512fa9b55fe87355978982b3ca8d12f610976f43c
MD5 5f5fcf503489a37a6e891db0d7f36611
BLAKE2b-256 b3c77e13ea0f372d81381f561c1048bca4782167d3e7af2ad45acd218b09f9b3

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fafe973b93d1462a83ad6c29f3cb8be636e0ed794eba141b148edfc860f788f9
MD5 750640c4d845830eb0c17ff385340624
BLAKE2b-256 c6aadcab2ecaf6f08169a48e6a998bbbd633fe55f9c03dabead7bc8fe6113798

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fe75e272eadcf91494ad1b65e24e386b8d404fcf939dfb727911543d761ce4f
MD5 fedcd20b440770dbe78e9e5df5547674
BLAKE2b-256 c2f40b3359630d38d5fba04029f58782f203115b3b115f6c8a6599df12d4c724

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cc4143873ee504f15ce26b11899610169c0d1cfb200309668419326440ada94
MD5 8d25564741dfa04f4c45e16470ab6ee6
BLAKE2b-256 0fb1a8688b0561a518968d342aa80049ea0b4eb58cdff4837377b1526e9dcf4f

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e0e4cbf216ba6068d65ae68f06aa13704e3f16c7085315e89bfbad78a8b2a9dc
MD5 8000839f564084db9d16546f64c682ba
BLAKE2b-256 1774bff2352db7ac23814ba7c35f13221f5e9828ba7af040a21a6edc56d92d5d

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce923fd22eff4f46a83ea04016c36f5d7850351c16e7f32274486cff0bdb168f
MD5 8fb9b61b293b5ebb7b8e1f7fc63e57ab
BLAKE2b-256 8726571f8c2bb59d697f6aa669a7be5c5f305e6d50b66183ed8eb031655e7f1b

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 707d44370e29610f9d3de00a157cd8935db7839e3d68bc2a966a23947d632f5e
MD5 1f64776a2aee7b0c7ee7679c3ab93295
BLAKE2b-256 2c8954899d286d1c010beb44d5dd3a510ef3435f444fcba36dde9c6097ffc36f

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3433911c0a8adeabedee6189f0bae051737bcbe7c548c3b7f22e3ce91453db9
MD5 1ff741c27a9d3915db873e3eae93a03c
BLAKE2b-256 ff209a9278c5000f79c13b2849af53dab934ac89f11191c316028c64da2df891

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6f8425f63b1c2eee580d0f80ba888f895db5e35eb2b60ba032396202dcfc51a6
MD5 2a30b777179a93f6b1d77c4fb8516e80
BLAKE2b-256 6e6cd6076e3ae93f95d8f89f4fd16c937d14b3c88e5fe39eaefcfdf71097d592

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb8b3e8905e269c714a0b789bf874a03bb378d6f84feabe2785d6539653212fb
MD5 ebd836bcf061d4fdb1d3aec6b628e1de
BLAKE2b-256 0f4236134faa9357320723e2a4579caf2b0a358f8e511ac9d047b0ec3cf8375e

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 073a5d7551db8bdba3340b05726b75eed2fe3219f6e79bf081fe419ef0aea6b9
MD5 b88b86300056d367ce088eb9323295b7
BLAKE2b-256 726fad27513df52af5f39b027dcc5c164a303203baf40f74aff3e022d2c1c7df

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aab8494abbb4e9d03761ab7bbfea6fc883577ee13ffda16053cb0939bb46f480
MD5 fbd0676122f6a40e2337cdf9b966bd51
BLAKE2b-256 df50e15e59b4670620654e4492fbd9a57c16b19ff1df20b1df729c45f893f279

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5754884ecd8cf0fe5283090ce460a7b188fddf9311e6e3e0b2f7e274bc480430
MD5 9cb19a35d26fe86bcce460658992929d
BLAKE2b-256 bce7fcdd7a6faa56609d667898dfcdb428642c15e0910eef4ab23d597e5ec8d9

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f38b11df40c8b4e6ec16454c834b7fe51dca98b42d06f7aafc8792334411d56
MD5 53e8df3f9baf786685cb60caf86a77b9
BLAKE2b-256 d43fa0f508f34b667e27ed3cc29a454d723d3e35d31c57b6812df5f99780b779

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68898604af3084e92459a8f1ad591e7426d1d3b5f3751f1e36bbc9d9590c077e
MD5 be3e214d5dcf0acd74f29a601a49b56f
BLAKE2b-256 6606593bd6eaa470c6cfe92171174d2c98fb55f473521f73d485dcc218898f5c

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d295d076031e5610616b255f381393db47e1355c4e0ea81334f5a9392f1649ec
MD5 f0d050ad488926269bbb98d0420f865f
BLAKE2b-256 d1b400b851250ce126fdcf7c8f8df0cf6cfc6d4591b216186b1b92c28bdb5db9

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 780a01cf9ecfb5128e022342a40bea233554844872da9deb89551403abbcbde9
MD5 6e05ee7777a8cd935697107d8f5890ea
BLAKE2b-256 800fd7333ffe4bf7843d2acd466930f0417d405c5ce4c4c7d344f601fc12537f

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2ea6e55f73a1690a40eee1ff7caa6ffe2796a70bd5f2ef1193c8a22085f1d4a
MD5 d1bb5ae0d8c6c4f8c6dbbd6b94529bf7
BLAKE2b-256 ddf6cbc9dc68abd5bdde0125f0bfcee0a10b3783beaae23cdc33d2efc0f6c329

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2402175844f12295aabe6364bbc3cd4c5e85f032d18503a2ef805bcd5bb8827f
MD5 73cf91de6ee8da8e14aac3bc5d099e6d
BLAKE2b-256 4146f03071f52690a54247251efcecf4e952c8fc0cfea3d95711f9140a242476

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2b3fbdac556716dc4e59f42ea5b12ef34facb0a6752430ac0153b478f95fcfa
MD5 98a584996c9b890ad2d63a537ac51f89
BLAKE2b-256 b40f05e49a640f9e0d6eb110c6ca05ab446c53a6eb71c3b0a3dbe0bc52ff648f

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9262d217e3a2fafba2f683bd486310b5a61d0ec5cb9f1841b21eb0c2a6ab0d9
MD5 a728168e46377a75557101d88ed01960
BLAKE2b-256 89411fc6837862dac654c398320df53f0868cf6c7e118c7e422a00c55b57beaa

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e0c298ee65dca641c1127ce9f2a3c8a37c9df98035633349cf6c44a6339c8bf
MD5 da91536b9284d2295ec151cf6cef0da7
BLAKE2b-256 288e80fe002eddef899f4a13e2ce8683585cbbf4ed739c3a41922b7b889bd615

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6b5a7bc3c566000ef0148083c07fe5a03a91d29cf538b839220fcf38c910031
MD5 0781e9d3aebc607f12fa1e788fcff61c
BLAKE2b-256 8b3f9936469193feabf6d375c0fa5361d98fd414dcf05952141928553fe4d3bb

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ccab0ba35fe470b391aee029dffab2767840c6ff1f043002bbaa72ebe09fd09
MD5 c6024ab8089db974ddc0b37982e85d02
BLAKE2b-256 333ce6f9f480babcb01cea3ca8e0f7dbd30d5a0fa324d5d1880538e8c3378106

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb7eb113a99546d3aeb081c9f32bc00d9d5247b7b7cf5de0a05c3db2aeeeff99
MD5 4da365c795a76b590c3a88db7ba396d8
BLAKE2b-256 b0d7b1f4dd74f7724678be87031ee8a9584fbd51282d4e1b3b9d2ca8d78ac6ba

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3622524f6dbfe3368df4afd117f268e5a9b8e2e22d25708b71e0dcdc19db0871
MD5 b1b58ec73c094ff98a442b1c27149c13
BLAKE2b-256 0c73e00c65337d1a475c686c7163e3b3e528bc63f769724111b7be9471ffc60e

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3cbd7afc82059434c6d3460ba35c45e5ea01e1091b7bfffbeedb387bc7fbe78
MD5 e816aba32219c07282a77256ef88918e
BLAKE2b-256 89d9657fc8c59f615bc526197c4f196b946b4885dc62db85334348b845a89b49

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 928efa2e79d527b649dfb97e061a42f0ac278cb871ce94793f9017ba2e944733
MD5 1093b50b628f3934eb8740b379df5d1a
BLAKE2b-256 a6c1b878ba50ab962f3ff379d65365eb4a69b997cf56f147841b7182dfd696bd

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 701ffc918505cf58335325720de7b4a8e13f1abee65e3b3adb19849746b1aba6
MD5 71b7c05256dcb2d5b782f9fb68ee2fb8
BLAKE2b-256 dd66e4b857dbc79f6a6a091a6a1079dc9179eb03801feeab7fdf5cb6b6929b4d

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9319c0750c74b49cfbedbd0205b05cbc37f30ee4423a606a5809430bd7e3c24
MD5 85585a27967fa3c231cecb3323e9cd03
BLAKE2b-256 8568e1994d629c0d966c35214f7e3dea388673da6f53e345736588ea96cb41dc

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d93247429316fc98468a4287ffff1e34ef83fb1825a4f13b97d8a5f7739523d5
MD5 90f6dda45048c8c090fb760fd7079463
BLAKE2b-256 aa724fd758d304fed1a5829d3682203b7ffbc15d2435192442829908deb833b9

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2624dca27130ad4626019cb170479f6d10d027604f0ce9022a0d2d461e74b6f
MD5 decb26d48d0131114e271cfa24d32898
BLAKE2b-256 3920ed0fdad423c23d7c805129b23a81bc80b6c735572d9c8a924efae5ffb5c7

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 53ea8b9d1cb41f33d1f225adfb3a04b8a557c0d7da0b81b6bd3578196782c94e
MD5 b9816ace3be0e012b89d0772a775f576
BLAKE2b-256 a4f4686d6372c227295472a131a210c58615edcf8a58445507ba284deebd8aeb

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f0bd432d3a5d708d9659b1ab4fcfe0085bc6f9bc73e464d538e28ac23a2e3a2
MD5 3938beb6ca1a471ea281a5f316b76194
BLAKE2b-256 f06f4bf30cacb128bea7e7f471c3e5f39815fdba9f010272416acff216c6b206

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8eb11a989dee0185b8763f40561689556e1fe433f3f11532c529612551086e8a
MD5 98ab8572d1dd32171908b4bc91df2d3a
BLAKE2b-256 9482282f897bd96d3a6f3f14968e363cf81aa130187e7bd00f8a6066c12261ee

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c064c00bce83121b9d95bc96e7da2a6c331ae5ee29e41e5571be313da7d69cb3
MD5 e2b1fe881f42f30518dda9150ef522a2
BLAKE2b-256 3ce450fc084c510bb2b739fd530525399feff9146739ff72fe22147816080097

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c1dca8cf8064c5b5c8fee3d804c0470dba870ea810787d4345be510de95d89e
MD5 d16d0e78adf2d4b47976007bf0cd951e
BLAKE2b-256 93bb3965ee4c62ed8bff2122e9a9d58128bec423e4734d390d1a788894e62045

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 562ee44a490ff01124bb6a8ff7515d792c56cac8c1702b5699590fc7b860b491
MD5 4164935adc0660df563bcc3ce16180bd
BLAKE2b-256 467dca405d5e7a2ad5ae44a5777d77322041807429ab597327d23d9d3b553ec4

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99c9ba170ebe9a28859aeb20aa058d84d871b4e4e57ba6d1aa01b842f96e3f78
MD5 eb6dbdb9187c880a2de7169b7b473a58
BLAKE2b-256 4b5021eb57445f85cbc8909f29ef73854c64560681a09efed704b135394ff4b1

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3715fdd0a80326b507ab603a6af95c7ed8b2638af5a547fe7144502c0f1f145
MD5 a20694f86871d76d58910ce323e2dc86
BLAKE2b-256 9b83983786690dea462d23fe7c0737d36ba0d3343d6a85ff905526353096e3fa

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74e17b34720c1701edadd374f7602597f57ee95e3c5036bf8399950add40eb2d
MD5 6c65ffdc76d86a82d8ed5615b21489dc
BLAKE2b-256 05155a42bf3fce1c1657163899e8aedbcc1c92d8b1ba468d17fd6df7efe3c013

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 930e921590283540af0ee87c523f1b1f70f07ebdc1512d97dc78e4560e09bba4
MD5 a98a7b25fa1a56a2ac92d0f6ed2bf61c
BLAKE2b-256 e4e3fc0bcfdcd979b41cafd7b062ef2eea63f8f7bb0cfe92e7feb53b521e4b45

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2d3fa27acfaa68319eb1f455a90b50354f6309aef4b2959cb105c3aa86c5d33
MD5 feb2e68fc4e07058066da131ffb25b88
BLAKE2b-256 f807c5b4bf1f055e5e73f12855ee31f166d4603809e4c09ce6bf2863db836c15

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3788990690fd7f8ac7535593593964b952c05080a9b53344675e95b73bb58adc
MD5 9a457c741010d4a659117bbd2f7ee873
BLAKE2b-256 326d02ecefc94c0a64aa969cee240c6ad907b9a52e9a7facc5a0bdb525ffc5e4

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cc96952197319cc961fe43fc2d591ce00ff0047ae792247b915c21cd812bfd6
MD5 b9ad18f228461ba16ca3a62cb9b02cac
BLAKE2b-256 510965a1456eff0f4cd98f9a4e3b6d41a90436851c229c68fa85d9b58c800d8f

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 087c06947ddfbc132bc79e55bd8ee6938c6cd1859381dce16b86fa662924144e
MD5 68ab17fca9e3684a451c3e1ff2bae4e1
BLAKE2b-256 b40a7c465b727f3e426d298236110b4cef7da07da0f03b8f420a351400799e1d

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4cfa2bd3cf8756b31137b0751d5c86aa40cc954c23e03849278ffaf72d977de
MD5 27451b040d47683c29009dc03a17f41e
BLAKE2b-256 ed045b1024027a8479efbfcb8b501326787c40d57fd5e9b02e2c386ade44def2

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d30c2983812126bfe6a7b1451c3b7a5f51fb017141fc07ea95cd17bf08a0ff12
MD5 66788de21469c99ee8149e8e246f5fa8
BLAKE2b-256 071f750344919c1bbd20ab0ed8e08fcff8e04c464f03066b466601367b18adb4

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2849c5cd55bae9c47fbefdb05d8a0c14e230f4d29c4f7a2b094773347711644
MD5 7fd27e807cd31724343d48a16b377335
BLAKE2b-256 e66535b8ac520d71a705aa55f45ae151db36dc92a089b6cbccf9cc9b02a2a742

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.6-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e16f1f63dd8cc03869ba94663a05523464059b6fbfaddb3db1198c5d4ab049e3
MD5 ccdb1114112ca1b8054678b86c720d2f
BLAKE2b-256 fc78b0b9a1e5bbb7a2445605f94fdd9f586dc70dd53056a13c49cddbbf4506e7

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page