Skip to main content

Python bindings to the heatshrink library

Project description

Compression using the Heatshrink algorithm in Python 3.

Installation

From PyPI:

$ pip install heatshrink2

Usage

Files/Streams

The file interface attempts to imitate the behaviour of the built-in file object and other file-like objects (E.g. bz2.BZ2File), thus you can expect all methods implemented in file to also be available.

You can open a heatshrink file by using the open function:

>>> import heatshrink2
>>> with heatshrink2.open('data.bin', 'wb') as fout:
...     fout.write(b"Is there anybody in there?")
...
26
>>>

You can also use HeatshrinkFile directly:

>>> from heatshrink2 import HeatshrinkFile
>>> with HeatshrinkFile('data.bin') as fin:
...     print(fin.read(256))
...
b'Is there anybody in there?'
>>> with HeatshrinkFile('data.bin') as fin:
...     for line in fin:
...         print(line)
...
b'Is there anybody in there?'
>>>

Byte strings

The encoder accepts any iterable and returns a byte string containing encoded (compressed) data.

>>> import heatshrink2
>>> heatshrink2.compress(b'a string')
b'\xb0\xc8.wK\x95\xa6\xddg'
>>>

The decoder accepts any object that implements the buffer protocol and returns a byte representation of the decoded data.

>>> import heatshrink2
>>> heatshrink2.decompress(b'\xb0\xc8.wK\x95\xa6\xddg')
b'a string'
>>>

Parameters

Both the encoder and decoder allow providing window_sz2 and lookahead_sz2 keywords:

window_sz2 - The window size determines how far back in the input can be searched for repeated patterns. A window_sz2 of 8 will only use 256 bytes (2^8), while a window_sz2 of 10 will use 1024 bytes (2^10). The latter uses more memory, but may also compress more effectively by detecting more repetition.

lookahead_sz2 - The lookahead size determines the max length for repeated patterns that are found. If the lookahead_sz2 is 4, a 50-byte run of ‘a’ characters will be represented as several repeated 16-byte patterns (2^4 is 16), whereas a larger lookahead_sz2 may be able to represent it all at once. The number of bits used for the lookahead size is fixed, so an overly large lookahead size can reduce compression by adding unused size bits to small patterns.

input_buffer_size - How large an input buffer to use for the decoder. This impacts how much work the decoder can do in a single step, and a larger buffer will use more memory. An extremely small buffer (say, 1 byte) will add overhead due to lots of suspend/resume function calls, but should not change how well data compresses.

Check out the heatshrink configuration page for more details.

For more use cases, please refer to the tests folder.

Command line

The command line tool can compress and decompress files.

Below is an example of the compress and decompress subcommands.

$ ls -l tests/files/foo.txt
-rw-rw-r-- 1 erik erik 3970 jan  5 12:23 tests/files/foo.txt
$ python -m heatshrink2 compress tests/files/foo.txt foo.hs
$ ls -l foo.hs
-rw-rw-r-- 1 erik erik 2727 jan  5 12:24 foo.hs
$ python -m heatshrink2 decompress foo.hs foo.txt
$ cmp tests/files/foo.txt foo.txt

Benchmarks

The benchmarks check compression/decompression against a ~6MB file:

$ python scripts/benchmark.py

Testing

Running tests is as simple as doing:

$ python setup.py build_ext -b .
$ python -m unittest

License

ISC license

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

heatshrink2-0.14.0.tar.gz (156.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

heatshrink2-0.14.0-cp314-cp314t-win_arm64.whl (55.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

heatshrink2-0.14.0-cp314-cp314t-win_amd64.whl (70.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

heatshrink2-0.14.0-cp314-cp314t-win32.whl (61.2 kB view details)

Uploaded CPython 3.14tWindows x86

heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl (367.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl (358.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl (377.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (374.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

heatshrink2-0.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (356.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl (73.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

heatshrink2-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl (72.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

heatshrink2-0.14.0-cp314-cp314-win_arm64.whl (52.6 kB view details)

Uploaded CPython 3.14Windows ARM64

heatshrink2-0.14.0-cp314-cp314-win_amd64.whl (59.8 kB view details)

Uploaded CPython 3.14Windows x86-64

heatshrink2-0.14.0-cp314-cp314-win32.whl (52.7 kB view details)

Uploaded CPython 3.14Windows x86

heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl (349.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl (354.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (367.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

heatshrink2-0.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (351.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (367.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp314-cp314-macosx_11_0_arm64.whl (68.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

heatshrink2-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl (69.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

heatshrink2-0.14.0-cp313-cp313-win_arm64.whl (50.9 kB view details)

Uploaded CPython 3.13Windows ARM64

heatshrink2-0.14.0-cp313-cp313-win_amd64.whl (58.5 kB view details)

Uploaded CPython 3.13Windows x86-64

heatshrink2-0.14.0-cp313-cp313-win32.whl (51.4 kB view details)

Uploaded CPython 3.13Windows x86

heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (360.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl (355.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl (354.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (371.9 kB view details)

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

heatshrink2-0.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (356.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (368.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp313-cp313-macosx_11_0_arm64.whl (68.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

heatshrink2-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl (68.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

heatshrink2-0.14.0-cp312-cp312-win_arm64.whl (51.2 kB view details)

Uploaded CPython 3.12Windows ARM64

heatshrink2-0.14.0-cp312-cp312-win_amd64.whl (59.0 kB view details)

Uploaded CPython 3.12Windows x86-64

heatshrink2-0.14.0-cp312-cp312-win32.whl (51.0 kB view details)

Uploaded CPython 3.12Windows x86

heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (366.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl (358.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl (360.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (376.1 kB view details)

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

heatshrink2-0.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (357.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (373.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp312-cp312-macosx_11_0_arm64.whl (68.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

heatshrink2-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl (69.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

heatshrink2-0.14.0-cp311-cp311-win_arm64.whl (52.2 kB view details)

Uploaded CPython 3.11Windows ARM64

heatshrink2-0.14.0-cp311-cp311-win_amd64.whl (59.5 kB view details)

Uploaded CPython 3.11Windows x86-64

heatshrink2-0.14.0-cp311-cp311-win32.whl (52.4 kB view details)

Uploaded CPython 3.11Windows x86

heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (371.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl (361.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl (369.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (377.6 kB view details)

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

heatshrink2-0.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (368.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (378.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp311-cp311-macosx_11_0_arm64.whl (69.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

heatshrink2-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl (70.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

heatshrink2-0.14.0-cp310-cp310-win_arm64.whl (52.4 kB view details)

Uploaded CPython 3.10Windows ARM64

heatshrink2-0.14.0-cp310-cp310-win_amd64.whl (59.4 kB view details)

Uploaded CPython 3.10Windows x86-64

heatshrink2-0.14.0-cp310-cp310-win32.whl (52.7 kB view details)

Uploaded CPython 3.10Windows x86

heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (354.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl (347.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl (352.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (359.9 kB view details)

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

heatshrink2-0.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (358.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (360.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp310-cp310-macosx_11_0_arm64.whl (69.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

heatshrink2-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl (70.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

heatshrink2-0.14.0-cp39-cp39-win_arm64.whl (52.7 kB view details)

Uploaded CPython 3.9Windows ARM64

heatshrink2-0.14.0-cp39-cp39-win_amd64.whl (58.9 kB view details)

Uploaded CPython 3.9Windows x86-64

heatshrink2-0.14.0-cp39-cp39-win32.whl (52.3 kB view details)

Uploaded CPython 3.9Windows x86

heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (354.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_armv7l.whl (346.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl (351.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (359.4 kB view details)

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

heatshrink2-0.14.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (356.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (359.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp39-cp39-macosx_11_0_arm64.whl (70.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

heatshrink2-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl (71.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

heatshrink2-0.14.0-cp38-cp38-win_amd64.whl (60.1 kB view details)

Uploaded CPython 3.8Windows x86-64

heatshrink2-0.14.0-cp38-cp38-win32.whl (53.4 kB view details)

Uploaded CPython 3.8Windows x86

heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl (365.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_armv7l.whl (357.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_aarch64.whl (360.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

heatshrink2-0.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (373.3 kB view details)

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

heatshrink2-0.14.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (375.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

heatshrink2-0.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

heatshrink2-0.14.0-cp38-cp38-macosx_11_0_arm64.whl (72.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

heatshrink2-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl (73.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file heatshrink2-0.14.0.tar.gz.

File metadata

  • Download URL: heatshrink2-0.14.0.tar.gz
  • Upload date:
  • Size: 156.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heatshrink2-0.14.0.tar.gz
Algorithm Hash digest
SHA256 69f5e0e7b8c90ca0a321ef19170f997b29b83e6bf5fcd8a57ef20587ba0c047b
MD5 1ab450eb981b25310a2eec08d3fe5920
BLAKE2b-256 7492c23175a371c81b51f32a5ad20a3734e16890abbff7e7d9b7a9ec5aa2dd44

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d5e788f711a97a2007141dcb964ea32b872808d893e59f171323f6ea76326a9d
MD5 b31d6e5113d1586c1eaeab9135ba0d12
BLAKE2b-256 7d4ed9a19988afbf7722accaca9a14c7f7dca0619d1598894fea73ebb3366ca9

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7e2782a2842d4c4639f4a50d2856a266a279cb043c44edc66398112c2249002c
MD5 0f730b943e8e15b3c9f5f3c230eb22ee
BLAKE2b-256 3d2f517a1d0e1fdaae05be6084c1c806f95c4ed6a79c01f78ac939657b3902a5

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 61.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a220e0ffa4ffa439ed78c5b18d103700ffe7a40d72bcf1f5a780d457c0997f55
MD5 b62f3b28295827cafc97cbf6beaf6af0
BLAKE2b-256 12bd8094a610fb66d41d63a8dd42e79c78c0c3961958438eb9c8c6aa77f64164

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 403e592231aed64ba856b74751d68b51d53255decbae3acc6946e081aebf4a19
MD5 9313cf98cc823d14a327ba6b5d5fc9bc
BLAKE2b-256 b3534d3df854695fc24c7c7828a49dc8452b4bb1dd154ccda2ec5ac4dc7afc09

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2750788ec1c6d0f382a1ab74d785ae5dd99937969780aa80fe2a59c28efee9b0
MD5 b3b847d1b520441904efe09a72b1db2c
BLAKE2b-256 72a6029665b48da034ed48cb7db78332666d619b851484a3d0a9134d125cd8b1

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4453f3f7a27a53c3faa65e257c7ae325a90cb3a603ae4c14dacdb2acdc5ca4f
MD5 2d17f5624529aa8014ca22b39de8fd48
BLAKE2b-256 15d06e634fe654535e4a78fe5d94edac9e5e5f1a51c4c22223cc614df97b24fc

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6fbdc561db5c4e2a2a84cec5785522112c4ff3dacd2e2be653d1fe977ef2b0a5
MD5 68b9cde7b647be03d257dccf8512b7b1
BLAKE2b-256 77e642995be0287e8074fb8c87d1b191f23f13bae9067ae1c4ae5eaa34141ef1

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 388ef3aa49d24df46278b1e67b8d9e2acd57d40c7032f75e012a825e396a5c20
MD5 742853989d09c89bfddbe4a08033a5c2
BLAKE2b-256 fa648e31f9a25d8aa2b5cd253b3429403d5b854bc2ab564786d2f06da702b64d

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 357c44fcfffccca26662044e3dfe8da628a35f45d702cfcca49b64bd8d4a2e23
MD5 17a6cadf504b41d9c38071069c8e8e90
BLAKE2b-256 16647375b85aff860fbd7ac70f8c70877a6f21e4b5cea4b8a115ac619fce90c4

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60607e78c851da16fd728c40af66c965a5f00c44f67c95f960b79bbc882b79b6
MD5 c32fc68f2b6fcc53359070a93d03e241
BLAKE2b-256 cb8ddb4eb47f786e0e44e584d9559df9fc7d8200bd26cd86f5ff7a4782bf51f3

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2c990c42f5e6b5f5d004d52ba200dd13ba193b4631785fcbdf029411e5aeddbb
MD5 9cbc314654eba9f1706a66bd730ffc04
BLAKE2b-256 dae8a72d9a1b7dd4eaab91e3d40e808b2a5e36956056988fd86d8fa101e5adf1

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 db814ac1b98e68062a26dbe734fcba9e14d83c023f7a0f6cb58dcebed229e43c
MD5 4ad3f41c7c80f8c3e94c3bab9bad826e
BLAKE2b-256 f000d54dfedd7066efb6887e9cd8a6fb45cc363b7490a3dde489a011506e7076

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0bbd10bccac410042d15be2ee9b559990abb4366f3b080ab9a1067604817a8e2
MD5 4b4e6da37e04abda304fee6663e91060
BLAKE2b-256 2e2ae7730b10783262ff138dc598da0f76410cf42b689f4cf935c1794674d123

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0a9495f67cf8b3b925d160aba38b2adacb8e65da6354505139a976b203a39ed7
MD5 d7c510b306d7bdfaf6b681817873716a
BLAKE2b-256 628464d3fa6c9483673197d6182738f3a32a95d312e24e93aa913cb3a1d9c5bd

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6114f2818a49b9a8e718db5d12156536bd40e85d17a047ae56766ca7097610b
MD5 57c6eb69be752223ae7f253b5a4a3b14
BLAKE2b-256 b0edbe4f63bd56e73a8e76d2cc47e675e86c8348cccec25e2b07d07c0acbb7b8

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca5680aa9c1479485ab6c750c76d57e59fe3e9e776ae732788fcc260609e563c
MD5 012ee6817edd270841541bb719240e10
BLAKE2b-256 16c789e7b95d1139f3e77bc6ee75900d55c700f08c52f574427c6b79bde06f18

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93821ca2e1e4ba8d3a7056475be62f7a96915547b17b83c131fe18b5cd90bf5f
MD5 f6b8579c4a506ee05ca465dca93e31de
BLAKE2b-256 172bd3bfdf5f7564142ff18eafc84fb1c6b837daf9ef49560ddc3c08dbb22386

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9542bf76f5462f9e2853f91ec0899013b4e8f923a97e87a7b6533c657e11f819
MD5 66fbef7b5fd9842e66233a2d852ee4bf
BLAKE2b-256 25cdf4aa0f759ea894c211db23638dc7504f4c1434944e5c25afaf7589d5676f

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d392f03841f9cd49c4e6b7382991ff4efd40469d973650331d13810780a4edb3
MD5 6c12fb2c6022a6f2855a6f6792815465
BLAKE2b-256 a5b636671546e4eabfe71988af888ecb4c3b01e33117bb5ce13c31bbd7df21df

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3758f97aa79deb3e3e08a7f6af15df1d4ce0a6cf71a3b8f5f35bf6f98564399b
MD5 f7a1fa3f929b449f021941662a9e31a2
BLAKE2b-256 59c2ac6be5a6988efe4478a01249d5b9a74e7eade08b5971a5116c546cb09c4e

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad643148933d7d9fcbd53e9018d18e6b9bc49dcb4d1dc7e9239cdbaef0d077c7
MD5 7cea86599d5f0569be0c7b271a31eb5a
BLAKE2b-256 76549921f553e39e164fb8b8d7a4eac660f343b910470e2b05aacfca8cc1b869

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b056a28ec0611d784b031766097263247a1b4252da33f334b4569a8d7189e3f9
MD5 b869ebb4de2fec3c600c28b77ef1096e
BLAKE2b-256 e7af9ee856770ada9e24e8507288c01bd18b64d686252500e1ad266509d0d16a

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9a81600427719680b51bb1c3d52e710d29242236eaabba2e7a0d6d3d4e7e7eeb
MD5 c3300ac527fbe92b57ab382a000d09c7
BLAKE2b-256 e2bf8bfe3044b24a014759e4965439a419f847b391926de2e5d1e34ebc2c62e7

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 87d7518f6224731dc6f28be8a2a096237ea2d48fe57750aaff0f086cb1b8ebbd
MD5 a097af9c1425f6367a0a470b31b214d8
BLAKE2b-256 c63289e139035b91e121a9c6ecaf08f511b0788ad9241c6db80237061061bb65

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 51.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9afe453d3126876d34f6dd7398f7fd0511de808ecb3056ed7f08d8c197b90e48
MD5 b1d67e088631a8eb7c0be2f85eb50307
BLAKE2b-256 468d0076422854754a405b5adba10dd57abfbcf910a2b8dbb1d41382075efeb1

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 193ad84a0bd3cc1fc6ca4e7009e4bfc33a44a903982f546b01ce93b3e4e11520
MD5 4d2a3f01968118e48c0b3d392e03537e
BLAKE2b-256 508f1c9e341f11511b97fc5ed130f31030c89a1d2db768c6330a6855d7f870ae

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dccbf107a3be8c4c97c89ffda6de6c2d51e7054296dc2c59dfa5fc3e98626540
MD5 262fe34001869192356bcf3a9bc380cb
BLAKE2b-256 530c8beb503fd6e07c5e6515827b8ae9fbc061ddf5aa192bde6960b14c187af7

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2e511a09b7c052370710451d515f3f47d72399b459c014d0c92592180dffbb7
MD5 cdc7698dad8e92ddab1c8f2969ef0f0c
BLAKE2b-256 fb728a5560f6751684def28e01b6ad85d80fdc83f0d8897241406754c19a5991

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48b8d31f346b08e6f1ca6bef4745ca096a54d04387d1d8f6421b63750205ef06
MD5 e8ed2e301087bdf12531e5895a13f1a2
BLAKE2b-256 45a8f58bd22c73faf22e2a1a75f5ed8754909691b9270791b01603c7a09b97ae

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0b19a15014b70d5cab80d2589a68bebfb76cfdbb371965dcf5a92ebd8297b550
MD5 551702a128c22574b681e4a81ccf47b8
BLAKE2b-256 6415ca3b270616af99c2c82dccc1b909e6d8b108033f91d442ebefa60f31c356

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b81641c55d5b4140fd6e10084976ebba0c9bd6d7f83c265ac4f006260b97136b
MD5 c0d83c85efcee477bdf936c8fa53b11a
BLAKE2b-256 d9cc64f64348d2c3f73054542ca3c0c03fef37aa06bde625a9dc7a9bd68fe621

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf62c94d80be3e8c72f6ee32df0b8a1cab9f0700e6349f9b71db32de68088ff1
MD5 dadb23f9c32c236573562bb37ac8764e
BLAKE2b-256 39b30899fb69d4d7dbb9f77c82ab5d911dc42954acffbfc2c2ac7030e3e05cc9

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d9533aac340b704a6b4d6357601e4fedaff942fd52e446bdbad9f902074ae23a
MD5 a7ce73f3a5da26b6a6fc84d46ec8aedd
BLAKE2b-256 6374bde65335422be3e38f9ece47e752486655df377b2d173141397522885f25

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 99fdf05e87c626e6d9be9342d7e3d6aee1f87b1a7cba29e607425aa6390c1885
MD5 6b7368726ffb9453498a2018862bc47e
BLAKE2b-256 f988614d8e49f90ea4d4be4a4b40c5bddb6085e75939d18ce605a03c6eb5be90

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e222be6199921c424afa8f75a323c5b1d53b5e83ae1d4b0e92f7012b51ec4eb3
MD5 cfee9aaf00c2329dedf3e0316856b5d4
BLAKE2b-256 c11589c6d6136e7af047bd79a5b87ac31acb45661f67620e0841fdfccf341aed

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 51.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ff06f081e141dd757e40871672f9047af8e9a84d17bdc9e39e66a00051843c8a
MD5 3b83af886fc1dd1f4128de5eac4628ec
BLAKE2b-256 63537e9b2fce0d840e16b44a39b37341e7828a138bafb5e9b1ec25de2ed4ac8c

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb9961f2d650a274f98c16341cc04cffa46899bfd6df3bb10d05a0b26e485e14
MD5 53cead128c440a509ac15d6b64628783
BLAKE2b-256 0f781404058d39f919f8315021afd92bad281a92f26a793030daae92691a864f

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cef8abeb565c967e03c3407d693e5aa02d61a0f151ec7d65114e6b857d42f075
MD5 3124eb60cf264085cd796379d12735f5
BLAKE2b-256 d4bc1d8b1ce0dbf342d148eeea97e6cd7402f4c6849d1e75ebce7489865bbc54

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97e9c0c4ad8d36b81bf2cce4c7accd6b05375a6b24a9c195062b48d49fee6e6d
MD5 43de323e5c60437293fee5d35b4dc4f5
BLAKE2b-256 2d49ed2b4dde2f9ee2cef0c11cc3fc0af70f50625a91babe71a03c2db45b24b3

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71dbbe1d9fbfd541cf8fdeee09b28d6171c6842c0cbedb389214cb3edc968285
MD5 9b419141c22d8c3d0a72a4f91b102d06
BLAKE2b-256 16183013f6a6eb855ab885fd91a6ecab8ab3cd04ae6aca770a1392d8d6f25372

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d15e75a82fb85c3c0677f1a035ef6d3d06a734a89b0631ff6b3a039926998cea
MD5 36bfd70b33c0c932ae2df0959ebcd297
BLAKE2b-256 22bb04e8456e76a1b3f0573975769cb72923de3e637d13832a7e6a77bcf17ed9

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e76cb65216d424de931391f42519ef94db837c04b3094950b8c406fa943ad7eb
MD5 3da2a4556f8e4ca17f60d78fee6276b0
BLAKE2b-256 c9065accc9bbc8360ad74fc6289878046226cc49eede074f40511e50a1c7ccce

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dda905a7157ca25d9bcaccd1c10e24154493bf13b348165dec1e509cf318e98
MD5 f3f389a2e4b2326bd8fa51ea8a54f75c
BLAKE2b-256 35d12593cdfff154b993eab4f931abefce789cec7c65fa39fae9661ceb12fab9

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c07b460ef66397284fc6f188662904f6f9a7cce6b25aaa2e7774e7b7fbf03fd
MD5 8b582f8c033864999d1e4bcfdcb53551
BLAKE2b-256 73edf3c6f7e8065a9dc77b18d10c455ff9e2a613edd331516e00ff3c641b7695

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 635b106676debe9f326cbf71bbf403108067b1cc0ec7e616826e7262f0931daf
MD5 55cb7f364cb3b5a0fab1272b492a8a3d
BLAKE2b-256 fd183138341b0930c1913315f13e9af0a68342ec327ca3b9ca99a1c575094d6f

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36a28b524d50029132b836281f8a705aeaf433a32ae29c1ed045f7d16ed3aa49
MD5 105bf64e12e867bcac328040dc983e41
BLAKE2b-256 a57406989f69e2f6524c6f719788276eb17a0e17ab937644558039ecb7a02727

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 37bb5f5aa3475926d7c223b1adf1522b813643b6d509d9a99294d42f3b3d91e8
MD5 a8ad80daa1acf2a03d3f3f4ad7714b7d
BLAKE2b-256 d9cdf6749e9ade3c3a9f312e8350b7d3c132cd0a50225657bf8de8491ce5376a

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23692ceb2a6123f12adb94414f9906cbd5f2f0496a4b3be6d2fd225fae372872
MD5 46d6c82e32e821de426658070ee2f9f6
BLAKE2b-256 a69ae02ed14e92bdff8e42e3112aac1a5ba66bdb5c375b92b7c5ecffc30c5f28

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4744545a7756c81f03d1b07821ebf37edeb4423c292d17cfc9c4551dae546ac0
MD5 1bb50bd2437fda837dd17fcec02e8618
BLAKE2b-256 a8c1d9b17312324f302c46d40d5874211dd905ae3a651345829c24fec0cccb26

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0525bbbfb2f1139a9dde09bb67a2ad0a3f1be6de95a7d072b47adae5ec072d66
MD5 bdb2ab44dde0787637f4886cabf7f7be
BLAKE2b-256 98573a582300348e8def2d5d8f111ceb5a37cf340a89500665e05ceeba316e40

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6625bbef00e2fb404efb6613cf897f45043d1c256f17cdf2435e74fbaf56a5d0
MD5 67ce03950d6205e2bf057714385fc4e5
BLAKE2b-256 f6c5d2a4db360c4c2bd93aa504632a9b56151848637e7671591bcbca6399889e

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 01341de16d0a566e5d4527ff6fdde3c6d6b399bb42256007ccb9f1538e4e0600
MD5 2a1dd2559132591b7a6d3af6214a8e39
BLAKE2b-256 5e9e5ec770e34576c7cb0a88c263ad6609eb5a04e564f1de463ece45301b3af2

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5bbb2de3656b125367b466e310db9971c11734714b3856763634c7a7a29960c
MD5 bcde7f5cbaef66b6fa75dc3e8cf734ff
BLAKE2b-256 4ed1c905f5dd935531a8a74f72bf2b26c706716b7f2459ff32ba3fca8dab1ee2

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a97f50fedb266a6afbb2d83c64b6e7833a20ecfc2605d367bbf7e1d234feae9e
MD5 f2c387b05b05119d83a601c8116d1543
BLAKE2b-256 489a73102ccbb120c7cf56b0ab140f5b28e121087dfefd290e9a64b9387e9a14

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 828a0b79c3e51c139f630feb705bed5a48580ce1cc5e17711c08e4c133800dc8
MD5 53a58b8be5ec8ada3ea8a23aae475edd
BLAKE2b-256 9975682ccbe592e97e07c1f00f7c4188c7d4f09af466274aeb842f12f7309128

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 55f8231d784ed0d27fdd83a5161dbae55de26f2586a3322fda21963efb0f8063
MD5 3b666d3736f1f4434a0636d309a6be25
BLAKE2b-256 a30a3866bbdd2cd702569ac8acaf4fd68a7a97e75221f5d4e73cf51524c655e6

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63a4c423723cd27c3838e87d00d6e87c061672471a9dd46e597cf0cb44d7bcf2
MD5 7423926aa25548de5dd1180755a8febb
BLAKE2b-256 f9041288b57546d9557abe0d82adc76d5343162cc54ac4a6dc0b94561465fde0

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 78ccdd6b86fb59abfb8ddb63da42f6bfb6ba5b686fe13fd4fce9e53df5ddbfef
MD5 405fec91059f2e282283d231b851ec3b
BLAKE2b-256 ebde960f86862f09ace0e9196c60a8b42e461e3035177ea50e3c198d7488a42f

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5f250a71c058be9e1522d51910baa5597511eb7f3410feddf7984b6d5b45aba
MD5 2d9aa0212d5753c15bc60efe96a56ba8
BLAKE2b-256 79a059f8159f286bb3e043f612304a443832b5e95d24de7ebb5a011213258e58

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92e4a67275f0af30c145070b7d899722f6ec540017567ff63e213984b9c53066
MD5 8f310d79827a621df466f13d4ec03258
BLAKE2b-256 9a1ee6d3664783b59aed64366b40ea6c11624c109030adfbdbfd3066ce6f946e

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e90653ce1552b1fea41b8a99b6be69ec7ef8d97b324015e27de330d9870ceaff
MD5 2b1d8cad552dac04c477752fbf9c93a0
BLAKE2b-256 2d4255f7ac114f00b1165804357909ef039f893ee3ab440d453f9d32de4f4676

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72b8f6cf17de95776fe49e568d265dd5629cd6d933d2a70539cad82f8c5ca4ff
MD5 540729fb0587b517ffffb1aeb9179fbb
BLAKE2b-256 395ed6cf350105564bffe793cb6086eafc26476d5f8ef7dd6b07486503ebf6fb

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2bc1ba34a8dac8c552cd56bf22a8b0f07eb0dd6ed78ec0ae45959a5970efbd1d
MD5 d65cb68cb7f4dbd8b079b64cdb813fd1
BLAKE2b-256 f92897803c9f3485e0080fe896e91c9ca6445fdfe6597a8197c35f51810787b2

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e59d43d2e4935b43baa365246f1091000c1a0e723f3c519b762e5f75c1db20c6
MD5 478abadf72a70d392165021fded9906f
BLAKE2b-256 f960c7d43c425d155dc0da8a8b8a290bdb4ff63c44acc5c3112761e40c02e630

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97238f3ab0f16c4729abe2451637a356ab953224705e30a5acfca6db8e9825f6
MD5 c0de1547bc15ecd7d2f9793e52daf247
BLAKE2b-256 7e08a642ebed76bd05190575f64ccc970e9dc9e57ddfad22703fa029648075b2

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bec4da902b6a0ab8a4d70c6b44742c702e80d274d59fb0f1b82b39267f24cf64
MD5 28746795a6e542225fe3fa3228bd2155
BLAKE2b-256 2ab896f536f3307b16c2ae14b04f92ab70d2332bd460c172649512514c9d6c27

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bf4a6c891102d9f7bcd2ef79c869990857361bec75965527ed30c23b550f773b
MD5 fedecbe6a6b2dcba6ca6bd62751835fc
BLAKE2b-256 d5034cd4086ef42fe34526166ce1e6ba03ebb23a35759c942023edb4292b9164

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 58.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2f9081cacfa3242c91caf5ae63dff5a98502de9b0ffa24570f4df8c003f4d275
MD5 3afea510576c062cbb3b441162c28006
BLAKE2b-256 a00a211a94856617d2f807e5acff54b8da96034ed23557e034bfe47d1839cdaf

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 52.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e59826f549afb7cfb979659906e98b2af205d79fd363f2645155a97995a6f6e9
MD5 9d73f022bfce1c721bce42020c890634
BLAKE2b-256 ea9cba42b451482815393042508983ef45a80e6f765648503acd3b8a7d8ae7c3

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca60e7fb0aa5e71bf3ec5cd7c3aabcaf595b73d5a184da407fb50438445dc321
MD5 714766b6cf8bac03be9d201eb807a629
BLAKE2b-256 91db170cfd40cfe8e80867d564c28da3628b218ab05d0afdfe7f0e22a2c33619

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dbf14ef0be2a37b8ecbb4f87bf055620cc015d306fc317f0c6643802143d97c
MD5 8cfa14b56705c55f314fac0ab4677a79
BLAKE2b-256 971a47fe46c56abcc0711a1102fa6256f5c85ac6413b2860cd6f87e20b984c24

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f6e85e78c2a501b6a5edb2cc7ad491432728ec747484d728b7ac5a1f57d6caa
MD5 0811c78fd0bba73ba2e98507c12eb91e
BLAKE2b-256 36a81b4f918277c8036c8528d590fd0558b1e1caa38f88b92ab768551116e232

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71d15bcbdd02c83f925086c949b883f1b6c387bea579de6129a771d936ddc4b8
MD5 af90545b3aa40672abdf3da45b10816e
BLAKE2b-256 67d4ea736dd88c70405f5ca72f9d961a283f1c0801c8c2def413a0d1bc712eb4

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9ce49c75cf9d4c0437913a75db0753b2aed3d4809d9467b6de3039b8e5eb5645
MD5 56b82ac8c9181c2f42384077c4de746a
BLAKE2b-256 fcd92473f2b3f0dec3a2604038ed201de920ed000b868a2fbf6af655abab7758

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f68c9a0075867b5931b80d856ca4260b18b5e5e3395dfecbf41de582b7c533a
MD5 405a76a7860dc400712b5abcc4bfc266
BLAKE2b-256 2a91d56ea128029398f87446098bf5a8cd7e6a95797060f8fb4430aebec664e3

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2faf706674efc1503e8389a3f1afac412aa109bb1a76243955e4e36f263e7b6f
MD5 b10702c1e8cfc1e6acab9b6dccf6beb7
BLAKE2b-256 3a697ce6f2d17c91ab8c1418572e20dacb6f307e815acb0720d78527934c70d1

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f56c71e695716a3c8b085cefb0e6e7d01e70a70db0d7cbf63e53c0d3287ce22
MD5 4798622eb17e26964dd89087c1003bb6
BLAKE2b-256 7f6d2b661d2cadac3534d5fdefdcb17e00819b25ebbbf3315a2a4f5dd9935491

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 60.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9566d74fb33b5ee85e83136e6a856be4448be6d4f2a5f63d53c7a1c67513d8c2
MD5 585a2696eab6f1d6359e4e08a0e351b7
BLAKE2b-256 0b0a5567396ac25f34d80dbd9bd5dbe1b969bb799abcbf68dc59b870d7f3f912

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: heatshrink2-0.14.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 53.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7a00b883a7289a6649a1ebb8c5eac0e3da061fa2332e0d01321856d7cc92df6f
MD5 20987deb0831be89b14201a8a26f2fd9
BLAKE2b-256 b9a50144f21aa3ce49e8b3025e600c7b2d0053af846d622584a8678de91c1adc

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b8e5623a23fdc368728615ef290a6646dbac159afafbc782a9605b868a0bf7d
MD5 388eb2d29a15a8d2c9381d5e25091da9
BLAKE2b-256 2bcb96cbe13a8ceb171c7e72d104f5ee8f6d21cdf90ead849206872b67017c6a

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5fc5b2cac5c052908210ab93837b2b465bb6f22e9d4d9245cf98a1c90749f936
MD5 b2f4310229da8897cace80a1059803a1
BLAKE2b-256 52cedabff3c01631e3681e601c4f5fae38473909dedf112c1f418ab7af9b6c10

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a70c1d4985f1cdd58f3f6728960b8e6392d1aeb99c41c312e4003df0beb0ac27
MD5 105c68a105075872c6cbb6737f3e4284
BLAKE2b-256 203c07366c56f36450071b162f624beda47f82dda974b0d469623e9bc50902a6

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9dff7881599fc2b2b634c2e7826926fb056ab61e8d29c772b624e7e77c0f07a
MD5 72f085472fdb18e691a52d09e5297089
BLAKE2b-256 26bfc7d52c5c34793efab0605fd0dfb942b766c5ad7eb21a45b91ac202006ece

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 820d716c82f09255aafc3a5ddac7c966c61f5b843234e01addb14337df819256
MD5 cfc0abfe066c96e820566fe2f4d0f655
BLAKE2b-256 d6a77d313e97cd2adbd1b836f30408ad6738c81dc7793893e5eed28887be01fe

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5e8acf1f72d80e16773dd7df781db5a3b793e3b5df8a4ccf611864bcd1d445d
MD5 23474fdaed781a06e164d1065f2e355c
BLAKE2b-256 7ab3d78502fdf3172b24b2a4558feb0500cebf17cf6201634b17e7b1da950c8c

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2ec653d53e3c01f8a5f8385f1fe5a8660df40f65435236ead9a5b8e86b8b469
MD5 3639b37bb0d5c7bc0d6d632c671ca34e
BLAKE2b-256 29255dfd545cea59f49bc07737795d3cdb6134891b8e6346203416923540b2e6

See more details on using hashes here.

File details

Details for the file heatshrink2-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for heatshrink2-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf53bb20c4edf243334e839567760f9eb98169363b23d4b683b18010e43dffa3
MD5 67acf0bc3254aa2626bfe2933489756a
BLAKE2b-256 c918c576e396b8f57080984e542baa1461f6ee853e31b65b23b79dd7d37f49bd

See more details on using hashes here.

Supported by

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