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

Uploaded Source

Built Distributions

pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-win_amd64.whl (138.1 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (259.4 kB view details)

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

pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (310.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (237.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-win_amd64.whl (138.2 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (237.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (237.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-pp37-pypy37_pp73-win_amd64.whl (138.0 kB view details)

Uploaded PyPy Windows x86-64

pyPublicDecompWT-2.8.1.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (237.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-cp312-cp312-win_amd64.whl (139.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyPublicDecompWT-2.8.1.5-cp312-cp312-win32.whl (128.6 kB view details)

Uploaded CPython 3.12 Windows x86

pyPublicDecompWT-2.8.1.5-cp312-cp312-musllinux_1_1_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pyPublicDecompWT-2.8.1.5-cp312-cp312-musllinux_1_1_i686.whl (860.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pyPublicDecompWT-2.8.1.5-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.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (311.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.5-cp312-cp312-macosx_11_0_arm64.whl (215.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.5-cp312-cp312-macosx_10_9_x86_64.whl (238.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-cp311-cp311-win_amd64.whl (139.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyPublicDecompWT-2.8.1.5-cp311-cp311-win32.whl (128.6 kB view details)

Uploaded CPython 3.11 Windows x86

pyPublicDecompWT-2.8.1.5-cp311-cp311-musllinux_1_1_x86_64.whl (802.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyPublicDecompWT-2.8.1.5-cp311-cp311-musllinux_1_1_i686.whl (861.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyPublicDecompWT-2.8.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (262.5 kB view details)

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

pyPublicDecompWT-2.8.1.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (216.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.5-cp311-cp311-macosx_10_9_x86_64.whl (239.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-cp310-cp310-win_amd64.whl (138.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyPublicDecompWT-2.8.1.5-cp310-cp310-win32.whl (128.1 kB view details)

Uploaded CPython 3.10 Windows x86

pyPublicDecompWT-2.8.1.5-cp310-cp310-musllinux_1_1_x86_64.whl (801.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyPublicDecompWT-2.8.1.5-cp310-cp310-musllinux_1_1_i686.whl (860.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyPublicDecompWT-2.8.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (260.6 kB view details)

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

pyPublicDecompWT-2.8.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (311.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyPublicDecompWT-2.8.1.5-cp310-cp310-macosx_11_0_arm64.whl (215.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.5-cp310-cp310-macosx_10_9_x86_64.whl (238.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-cp39-cp39-win_amd64.whl (138.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyPublicDecompWT-2.8.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.5-cp39-cp39-macosx_11_0_arm64.whl (215.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.5-cp39-cp39-macosx_10_9_x86_64.whl (238.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-cp38-cp38-win_amd64.whl (138.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyPublicDecompWT-2.8.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyPublicDecompWT-2.8.1.5-cp38-cp38-macosx_11_0_arm64.whl (215.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyPublicDecompWT-2.8.1.5-cp38-cp38-macosx_10_9_x86_64.whl (238.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyPublicDecompWT-2.8.1.5-cp37-cp37m-win_amd64.whl (139.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyPublicDecompWT-2.8.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.7 kB view details)

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

pyPublicDecompWT-2.8.1.5-cp37-cp37m-macosx_10_9_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pypublicdecompwt-2.8.1.5.tar.gz
  • Upload date:
  • Size: 159.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pypublicdecompwt-2.8.1.5.tar.gz
Algorithm Hash digest
SHA256 a6d0488474e759e0ab626b282413fa98d57eae77ecf55f251fc5aa26cb47fa79
MD5 ad8ba711cfc6c764de56b3e67572ed35
BLAKE2b-256 ab4e51de5d0e0042656aa254bf79f1de3adf880dac6e126b81a9aac57ebb26b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 49f81cc9c1669101ec074577166cd5c4f53cee104c14afef4de7a91e8edab187
MD5 59605f3f96fb2f98f1e558f07defe12e
BLAKE2b-256 5026b28bdc8431a2fd066d4205497e716bd50351a0111a676a2c3671df9d57d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da78f70bac8669990c0d4d0b4c845bc5d3f24dd41c40d08a9608fa7b54809ea7
MD5 449441b44f2d1326ccaf041de034c02a
BLAKE2b-256 a6e910e55b42bf50879a7f937dc0f50812aebefa95c3adff6ad8921ceb77e293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8cc50463e8bb481b9d5215b083da96102aa43431ff79922cebe008e4248f0d9
MD5 006d0eed2bb110134ddfed45c00f1308
BLAKE2b-256 c8ab331b2456bc6f3c71f3aa710fd394fd696217ceeacd738bfe5c7a323ef3cd

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01a0b3277564139e098729dc876abafe9f08c26a996e8884da1b1ef2505bcdd2
MD5 de08738e90382a8d033c660e4f92d920
BLAKE2b-256 8a43a97ea6d85644312fb59853fe3d8a4592d9cb46d2a158a83052fca0e335b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1e1d7fdb945aa425b7f0b61dca5bd31b35a825ff37fd824b0939d6351aa4fb79
MD5 3f1495152e0ab5a7da916d44d5cc031d
BLAKE2b-256 92dc9ee5ff294a7530b342b35d73cdc6ee54b71c10e85c2ff2f903b68ee115f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c82a861cf9ff5b9233653037aab76af47582085894d3cdb98efc98525cd7d893
MD5 64d7a3696ac176ae71b5462868d76c04
BLAKE2b-256 f0aa84df5adebc95a5f4010c2c73179da9fe6aa6d0f4381f04ab6efb57d9f434

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26096666c56e658d200688e81ce80af9fae50c70ec17847f7d3c3eea55f63e38
MD5 0fe629be0282fe0d35b9f5b460243cdf
BLAKE2b-256 f5b49afebb90384b9cc29219cfbaf7f616363cc926e69c86e4095283ba79629d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 52c5566de915e61633117800036e3b8c85aef1f1006830963a2057ba07b7fcbf
MD5 14c9573bb8d4a3322fc67c1fd1513dde
BLAKE2b-256 ee52deb2d50262cb313d56b346e7bef88b48a845c380a45a53abd63fc5a94319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02d0d331a5697be7b84422bb06afe97d7a8a378fcd53d4e95d76515df7d0c07a
MD5 b81baf20d309d8e175b4f3d621440c3d
BLAKE2b-256 93dcb5453d9b1e0fe07e70ba27e0913f41d4f4e05c423c60225115a30dd12430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba4d61b46a242d6fa0b260b562f5f9a2706cc1882962d761973119d481918d44
MD5 1c600e66b25cf1c3bb3e95524d33e2cc
BLAKE2b-256 400d1fe4ec1ea82538f4d8e1580c80eb64fed9cbd361f28f39b07fe19e008bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 71b8c74d6e5a54d3945b62a8e4afb4d5a77bd2bdd1d287378264826393cf8dd3
MD5 50c850a64e502b8fee7ccf114c950462
BLAKE2b-256 89428107da1f7e2ea7933f7628f9d24f2d8b37345a32288494d230f62a71189f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47ea21126268bb8025657c2451e3e588949bbae2ec298c8049d4c4dd75298a0e
MD5 a41e43b003baab2b67c899289acd5016
BLAKE2b-256 8cc222c26c90a7e64dca05e823c4243db6ebf2b24f87c0ca0a20d2c5e8d6fe8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 858d8dc53be16dd8d860fdb69dcc53bd9d99f88e9bbfef492d69efadccdf14af
MD5 f364451c81875dcfeda2c819df9a820e
BLAKE2b-256 d661a3f9579f3389e4602c51bba34db1f693f949f688c1b83c5d68c1af878de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3fb5792400e16efc1db5cfbfd08f72e850b0b93a53934f0041f23c40523a6aa1
MD5 87dad01c6b29cf7734dd574e53473ad2
BLAKE2b-256 4b0c7dd88fc38fc2003a7a4d386357e6280e060ed05028af782d356e8adcdd03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c4475c0dea12247f0de1ea29b3c389c26d9f5277904645a0d44672d44468c041
MD5 ed19838ec9457b6424f20e269a56ce2f
BLAKE2b-256 295d0b063a2b0b022586aa3bbaabf48e4575868ffc8ee78780376799864d4c45

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57ef091185a0d0b180c640d3daa744cafafcd2e1e38be04fddccf2412635b79f
MD5 cd5909c0e5d11d6fe23cb30db5dbc0ad
BLAKE2b-256 aa07619eb434639c86e9454074832574727c0adc86c08120c6b5f769e8d4c812

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 02ac33c45acbf24ffad271a6aaf9d28be1fb97a451932240237f6f84ab1eeb66
MD5 b0357f3b5dbf2c7575b149bd5da2993d
BLAKE2b-256 1eed86d78de0d5343e169a29b3f8ed769f18f3369e6d915766af1ba1292044d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d922201593530df09c848b3855db2f08a8b06e185d8ca583d0c7a332ddd946f2
MD5 0a3bfe3bd1dba011eacc3590233c4d67
BLAKE2b-256 e4cab948fcf5e0a191e94093b21e5ec7ad5e7ad15f6162f464803cf74a7e1c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23e253faffce7eae7d8c1bf9f13c0fd4052b16fe0f676e4a76a6a58b8f195c7f
MD5 e35a62186860f1aaf9c612eb39fea9ea
BLAKE2b-256 2ee67151f7357259e7059ad236fd1bc841f8d373e66cf17d2679f758eb1c3fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 080c008fa2123f5411918d3bf266c8af5f775ab59515319599c5ab91220b3b9a
MD5 41ddb47882cdb1a80731dc282d6560ae
BLAKE2b-256 aaeb022de1b53adc4cc5810146e2368edb44fbf931c3e30049d4adf7fdd1e925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44443bb78e1f74a489fdd489ba83ad546257d3de343195a192ffe77bee48d175
MD5 d365a47358007e314d429a59b29cb03a
BLAKE2b-256 2e266e490844fd54ef57c579de11c17aa5b2cbf4fd89b45a05ab8656b120c69b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8596e6a522f409caf1fa9d261bcc1d39547b3d8b3545223c8c58e69aeb48a9d4
MD5 c80960b463829614c0838c9e74ced707
BLAKE2b-256 a7d6f32488cb7936d0b759cdc2641103a5e3a77778202dc38630285c9a77c511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c5eea8a6ec069434f696f78e5f26c40f8a387f7ca9f51315b39c89f647bd364c
MD5 e3b7079ff90e7804e9a5a655c941538e
BLAKE2b-256 fb8f15f219da2fe6e9331b62689eb34e7b9e22d80512b138225fdffd77100a33

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c94aaa517e6a92fa62d6fd3081ae87a92ef0bf58a6381c79a343c2381b60f197
MD5 9047f82fa38f91290e54570106945288
BLAKE2b-256 51b138a9830393c88e215f66995e2e4769664741807e8c9a661773979d267c7e

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5344a95c2b6b75746465986c4709ba5e3c7b8292d7a71d8caae97e56357fb667
MD5 2e6b33ef9fa4c4994e08a395c527385c
BLAKE2b-256 70a96deb0e5e8b14902a744e273d4bf4d82b1ec7bc348e8b5d305889d341e128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6eac317023d81b05e2d9e37a82bd6b0717ab2d7b3d3ca0a68a7c9fda61debe49
MD5 8879e3b2c6158c23178aeb62993964df
BLAKE2b-256 f6d349d8e6ec5cb58ed639527ecfed144b8cff4fbf0215010cd37e908a29c9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0024e6c343b3c5c180965761f2306aac1a0b4e476d76fe5dd5b5b7d73eec382
MD5 957af4a62bfedbeaeaebb834447efb5d
BLAKE2b-256 54fdaeeb42d290b2f2420105d9016347052d8bec495c09aacdf4ffc4131f9a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67a4ae98820645beab9d6235be18005c2e1a23f37736b3cba432dfc152ede0e7
MD5 da935286e3cbcf6531487a3afe54e1d3
BLAKE2b-256 4ec83cbedb94392490872991ec45dab818e77dd550ebd556379b1bdc98497dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d71260c1cf44bdbf315e28eeb0455d4146db9e06f9f5596892ced6e1c2632450
MD5 8ca641614252676d0d5560efeefdb0db
BLAKE2b-256 8f3576f2d223a941dcc4144a30886e0af2378f53db8407d1e90617336bcd46ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 507a5ccd2aa0f16f834de600f8524bfdfc17b2c031b32c3bda09807281fdf95f
MD5 f64a4b48687908f0e6379e6e72aa5ea7
BLAKE2b-256 4ca65a839954bde8f89a692609a3f09ea38b9af97f00352224e0bcf935b77bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1d6596c488d3d2c7a7f1079b33b3048a68edb7b81c398b8f90507d89ed4590b2
MD5 fbbb12513555be65466b15174d022d35
BLAKE2b-256 c384eab59baa1c7d13a3a179542af3b740c2d52be21606ae42dd01fd8780d423

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8920f1035e5794cf9a9fc53fd88f94e2ded215e2ff4b9bc6922ea54f5797a838
MD5 1f1112f7c5252417d18a6319ad0f6257
BLAKE2b-256 2e344893cd7267ab7d7fcd57a270d53c2843a640efbbebabb4a92d3874539b33

See more details on using hashes here.

File details

Details for the file pyPublicDecompWT-2.8.1.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 92b45f025ef939dd4cf636f09ec92f007208219a872fffc564c5a24f8ecdd24e
MD5 4493774acd7e9e25d2ce879166ff6752
BLAKE2b-256 3816b3e8878978a7a3ea3a815fc8d61a5ccaf1b27f61fadde0e8a333bad8e012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d437c1b546b7973ea82b8372c4106b9ac8b997ad1af03a3f179e04a6f01d84c
MD5 ba8b9f0bc0e89feb06978f1b7803b376
BLAKE2b-256 21e083e96a2bcfc5f840c0ba76ee0f486f495dda1e81b57212c759e11ba57804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6124cb38e06a518ccf5cb2ac1be6ad02a8eef7c8bb5e66e050049b1b3dbcacd
MD5 a49377ddb133a5036f4212203da37533
BLAKE2b-256 44cf9f526d1791d9e3334905f493a203a6043abb0c738988c292acf706d91063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bf02b05f1dcd7e4ba77a092e9ff77eb79e3114c66c4fd9c7c1e33ef30446eee
MD5 6dde8d4fa02e764345398ee121da3b8e
BLAKE2b-256 e79b5e58cdca845c69c03dbc8b4a433957f4cbf1f9ac114588530cc482cfd85b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43693a8f5e96c1eb40861920fdcaf74c8d8c394f9d1bb4fbc9d2729c47f3028c
MD5 91e4001de8f0f5732fdc797f2660f353
BLAKE2b-256 4d53df7a5ffbb53b6e18974681286bc925992e206455a2aaba13c940f8b7f83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a8f63f15023c5fbb4339e26425f631d273b42707d40bd714fed2af3e023d06c
MD5 d3519ee792423beba2080368895ace6b
BLAKE2b-256 348c0df23a06c230e689ab9e43f896b467d8f3a7cfc5908ef2498bfa8517e078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85d8b18d21f952465b7367949e200617476d4c74d15ab5be9e379d62021896cc
MD5 3688e1df0aa8f9b064d8101f8dbce797
BLAKE2b-256 7c974b2b6f4405d49c4ae8207c6c8cc6adfa59325ab3614ca8da5d14c5f4ec67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa51174c8592e57cf8c0a306ed7f01708ed8802f549ad819ebc0881a802a8a94
MD5 49c713335b2cacfd8dae37c4a1a0d662
BLAKE2b-256 028a046ab6832abbd4e60e5c573c142a11ccded92037d94e427893428b53e2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7170f81fb63c268df62584ae703fe9adda7699fa08b12d3a28c82c78c54386cf
MD5 9bb310726eab19f131764e823cbf4510
BLAKE2b-256 7f9a0e9cdbc94216f204416f8437b9c868e0b884f3ef0a7c8714b5527141963c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ccf60f4c03e2781648920320c1744bac81dda120a4f6c9378a02a472e9bee746
MD5 ea18b0df326b448f823ce53de615e62f
BLAKE2b-256 ba511ad0aee7f7304de14d9fb42fbce32ab4050c48347ab84db0436451eab084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b05e6641e8bff8335e2067f15043c63c890c116fffce5d3646bfe2112b0a80a
MD5 910f0c971a81d80cdd0ccdb834155141
BLAKE2b-256 bd6e2f2906a7cbeccf9412e4533ba47481360b336dab6cf8d71da107d1c15962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b93b83babcc6b2b9550df0804a5faa779246f6bc3a409a8a55c20e6f72689bea
MD5 60d118d811f1589236b43b0a36b7f962
BLAKE2b-256 3bf8531dbde363744d6330586125918930879870faf7fe4532881002ca0d7d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d264161dc9d606975f90908d1e2679851e2d54c40ec5599ec1e04bad7013d7db
MD5 062cde03c66f3237db7bbf44f0d757cd
BLAKE2b-256 43fc25e5addd22fd8473a00396ef9e45ba23570da9b112cc11c91124046c15c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2c7eb439b502a5698e2d63e234fea9cca1b9d0e9fc6f162c46af4a521b70be51
MD5 81ead2e5ba9d75240cf4b59a31f6efd9
BLAKE2b-256 005ddd5671275cecc5ffd76f22f3a9fc5ebb5b0695f00aa39f8594755c0cd375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5be058357804c02cd734362d806227b0a6184c66d015599b7b9cc23a334ef7f9
MD5 2c45e3ec15185cb03b8ea82c98fb9ffd
BLAKE2b-256 a3f8f76a98ebd03b852b3985a318e55a0f9351b3d06fd296595cef3cd0a059f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyPublicDecompWT-2.8.1.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35698a3973620853b96d1fa55189cc493177f5ca477f3ffd201d431ee1d76ce4
MD5 25bfc251527ccd23991eab31292ee08f
BLAKE2b-256 1fd4eb28d66687b7cae319f045cba5013edf396e80c4a08cb6bf20c358c185ba

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