Skip to main content

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

Release files for heatshrink2 0.14.0

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

Source distribution (sdist)

Source distribution for heatshrink2 0.14.0
File Size Uploaded
heatshrink2-0.14.0.tar.gz 156.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for heatshrink2 0.14.0
File
heatshrink2-0.14.0-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
heatshrink2-0.14.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
heatshrink2-0.14.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
heatshrink2-0.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
heatshrink2-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
heatshrink2-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
heatshrink2-0.14.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
heatshrink2-0.14.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
heatshrink2-0.14.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
heatshrink2-0.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
heatshrink2-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
heatshrink2-0.14.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
heatshrink2-0.14.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
heatshrink2-0.14.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
heatshrink2-0.14.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
heatshrink2-0.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
heatshrink2-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
heatshrink2-0.14.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
heatshrink2-0.14.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
heatshrink2-0.14.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
heatshrink2-0.14.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
heatshrink2-0.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
heatshrink2-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
heatshrink2-0.14.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
heatshrink2-0.14.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
heatshrink2-0.14.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
heatshrink2-0.14.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
heatshrink2-0.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
heatshrink2-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
heatshrink2-0.14.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
heatshrink2-0.14.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
heatshrink2-0.14.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
heatshrink2-0.14.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
heatshrink2-0.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
heatshrink2-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
heatshrink2-0.14.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
heatshrink2-0.14.0-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
heatshrink2-0.14.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
heatshrink2-0.14.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
heatshrink2-0.14.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
heatshrink2-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
heatshrink2-0.14.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
heatshrink2-0.14.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
heatshrink2-0.14.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
heatshrink2-0.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
heatshrink2-0.14.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
heatshrink2-0.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
heatshrink2-0.14.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
heatshrink2-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 20.0 MB

Release files / heatshrink2-0.14.0.tar.gz

Download URL heatshrink2-0.14.0.tar.gz
Size 156.4 kB
Tags Source
SHA-256 checksum
How to use checksums
69f5e0e7b8c90ca0a321ef19170f997b29b83e6bf5fcd8a57ef20587ba0c047b
BLAKE2b-256 checksum
How to use checksums
7492c23175a371c81b51f32a5ad20a3734e16890abbff7e7d9b7a9ec5aa2dd44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-win_arm64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-win_arm64.whl
Size 55.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
d5e788f711a97a2007141dcb964ea32b872808d893e59f171323f6ea76326a9d
BLAKE2b-256 checksum
How to use checksums
7d4ed9a19988afbf7722accaca9a14c7f7dca0619d1598894fea73ebb3366ca9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-win_amd64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-win_amd64.whl
Size 70.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
7e2782a2842d4c4639f4a50d2856a266a279cb043c44edc66398112c2249002c
BLAKE2b-256 checksum
How to use checksums
3d2f517a1d0e1fdaae05be6084c1c806f95c4ed6a79c01f78ac939657b3902a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-win32.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-win32.whl
Size 61.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
a220e0ffa4ffa439ed78c5b18d103700ffe7a40d72bcf1f5a780d457c0997f55
BLAKE2b-256 checksum
How to use checksums
12bd8094a610fb66d41d63a8dd42e79c78c0c3961958438eb9c8c6aa77f64164
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 367.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
403e592231aed64ba856b74751d68b51d53255decbae3acc6946e081aebf4a19
BLAKE2b-256 checksum
How to use checksums
b3534d3df854695fc24c7c7828a49dc8452b4bb1dd154ccda2ec5ac4dc7afc09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 358.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2750788ec1c6d0f382a1ab74d785ae5dd99937969780aa80fe2a59c28efee9b0
BLAKE2b-256 checksum
How to use checksums
72a6029665b48da034ed48cb7db78332666d619b851484a3d0a9134d125cd8b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 377.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e4453f3f7a27a53c3faa65e257c7ae325a90cb3a603ae4c14dacdb2acdc5ca4f
BLAKE2b-256 checksum
How to use checksums
15d06e634fe654535e4a78fe5d94edac9e5e5f1a51c4c22223cc614df97b24fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 374.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6fbdc561db5c4e2a2a84cec5785522112c4ff3dacd2e2be653d1fe977ef2b0a5
BLAKE2b-256 checksum
How to use checksums
77e642995be0287e8074fb8c87d1b191f23f13bae9067ae1c4ae5eaa34141ef1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 356.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
388ef3aa49d24df46278b1e67b8d9e2acd57d40c7032f75e012a825e396a5c20
BLAKE2b-256 checksum
How to use checksums
fa648e31f9a25d8aa2b5cd253b3429403d5b854bc2ab564786d2f06da702b64d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 394.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
357c44fcfffccca26662044e3dfe8da628a35f45d702cfcca49b64bd8d4a2e23
BLAKE2b-256 checksum
How to use checksums
16647375b85aff860fbd7ac70f8c70877a6f21e4b5cea4b8a115ac619fce90c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 73.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
60607e78c851da16fd728c40af66c965a5f00c44f67c95f960b79bbc882b79b6
BLAKE2b-256 checksum
How to use checksums
cb8ddb4eb47f786e0e44e584d9559df9fc7d8200bd26cd86f5ff7a4782bf51f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL heatshrink2-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 72.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2c990c42f5e6b5f5d004d52ba200dd13ba193b4631785fcbdf029411e5aeddbb
BLAKE2b-256 checksum
How to use checksums
dae8a72d9a1b7dd4eaab91e3d40e808b2a5e36956056988fd86d8fa101e5adf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-win_arm64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-win_arm64.whl
Size 52.6 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
db814ac1b98e68062a26dbe734fcba9e14d83c023f7a0f6cb58dcebed229e43c
BLAKE2b-256 checksum
How to use checksums
f000d54dfedd7066efb6887e9cd8a6fb45cc363b7490a3dde489a011506e7076
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-win_amd64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-win_amd64.whl
Size 59.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0bbd10bccac410042d15be2ee9b559990abb4366f3b080ab9a1067604817a8e2
BLAKE2b-256 checksum
How to use checksums
2e2ae7730b10783262ff138dc598da0f76410cf42b689f4cf935c1794674d123
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-win32.whl

Download URL heatshrink2-0.14.0-cp314-cp314-win32.whl
Size 52.7 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
0a9495f67cf8b3b925d160aba38b2adacb8e65da6354505139a976b203a39ed7
BLAKE2b-256 checksum
How to use checksums
628464d3fa6c9483673197d6182738f3a32a95d312e24e93aa913cb3a1d9c5bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 356.5 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f6114f2818a49b9a8e718db5d12156536bd40e85d17a047ae56766ca7097610b
BLAKE2b-256 checksum
How to use checksums
b0edbe4f63bd56e73a8e76d2cc47e675e86c8348cccec25e2b07d07c0acbb7b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 349.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ca5680aa9c1479485ab6c750c76d57e59fe3e9e776ae732788fcc260609e563c
BLAKE2b-256 checksum
How to use checksums
16c789e7b95d1139f3e77bc6ee75900d55c700f08c52f574427c6b79bde06f18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 354.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
93821ca2e1e4ba8d3a7056475be62f7a96915547b17b83c131fe18b5cd90bf5f
BLAKE2b-256 checksum
How to use checksums
172bd3bfdf5f7564142ff18eafc84fb1c6b837daf9ef49560ddc3c08dbb22386
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 367.4 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9542bf76f5462f9e2853f91ec0899013b4e8f923a97e87a7b6533c657e11f819
BLAKE2b-256 checksum
How to use checksums
25cdf4aa0f759ea894c211db23638dc7504f4c1434944e5c25afaf7589d5676f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 351.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
d392f03841f9cd49c4e6b7382991ff4efd40469d973650331d13810780a4edb3
BLAKE2b-256 checksum
How to use checksums
a5b636671546e4eabfe71988af888ecb4c3b01e33117bb5ce13c31bbd7df21df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 367.1 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3758f97aa79deb3e3e08a7f6af15df1d4ce0a6cf71a3b8f5f35bf6f98564399b
BLAKE2b-256 checksum
How to use checksums
59c2ac6be5a6988efe4478a01249d5b9a74e7eade08b5971a5116c546cb09c4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Size 68.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ad643148933d7d9fcbd53e9018d18e6b9bc49dcb4d1dc7e9239cdbaef0d077c7
BLAKE2b-256 checksum
How to use checksums
76549921f553e39e164fb8b8d7a4eac660f343b910470e2b05aacfca8cc1b869
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL heatshrink2-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 69.0 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
b056a28ec0611d784b031766097263247a1b4252da33f334b4569a8d7189e3f9
BLAKE2b-256 checksum
How to use checksums
e7af9ee856770ada9e24e8507288c01bd18b64d686252500e1ad266509d0d16a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-win_arm64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-win_arm64.whl
Size 50.9 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
9a81600427719680b51bb1c3d52e710d29242236eaabba2e7a0d6d3d4e7e7eeb
BLAKE2b-256 checksum
How to use checksums
e2bf8bfe3044b24a014759e4965439a419f847b391926de2e5d1e34ebc2c62e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-win_amd64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-win_amd64.whl
Size 58.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
87d7518f6224731dc6f28be8a2a096237ea2d48fe57750aaff0f086cb1b8ebbd
BLAKE2b-256 checksum
How to use checksums
c63289e139035b91e121a9c6ecaf08f511b0788ad9241c6db80237061061bb65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-win32.whl

Download URL heatshrink2-0.14.0-cp313-cp313-win32.whl
Size 51.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
9afe453d3126876d34f6dd7398f7fd0511de808ecb3056ed7f08d8c197b90e48
BLAKE2b-256 checksum
How to use checksums
468d0076422854754a405b5adba10dd57abfbcf910a2b8dbb1d41382075efeb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 360.5 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
193ad84a0bd3cc1fc6ca4e7009e4bfc33a44a903982f546b01ce93b3e4e11520
BLAKE2b-256 checksum
How to use checksums
508f1c9e341f11511b97fc5ed130f31030c89a1d2db768c6330a6855d7f870ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 355.4 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
dccbf107a3be8c4c97c89ffda6de6c2d51e7054296dc2c59dfa5fc3e98626540
BLAKE2b-256 checksum
How to use checksums
530c8beb503fd6e07c5e6515827b8ae9fbc061ddf5aa192bde6960b14c187af7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 354.1 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a2e511a09b7c052370710451d515f3f47d72399b459c014d0c92592180dffbb7
BLAKE2b-256 checksum
How to use checksums
fb728a5560f6751684def28e01b6ad85d80fdc83f0d8897241406754c19a5991
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 371.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
48b8d31f346b08e6f1ca6bef4745ca096a54d04387d1d8f6421b63750205ef06
BLAKE2b-256 checksum
How to use checksums
45a8f58bd22c73faf22e2a1a75f5ed8754909691b9270791b01603c7a09b97ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 356.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
0b19a15014b70d5cab80d2589a68bebfb76cfdbb371965dcf5a92ebd8297b550
BLAKE2b-256 checksum
How to use checksums
6415ca3b270616af99c2c82dccc1b909e6d8b108033f91d442ebefa60f31c356
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 368.6 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b81641c55d5b4140fd6e10084976ebba0c9bd6d7f83c265ac4f006260b97136b
BLAKE2b-256 checksum
How to use checksums
d9cc64f64348d2c3f73054542ca3c0c03fef37aa06bde625a9dc7a9bd68fe621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Size 68.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cf62c94d80be3e8c72f6ee32df0b8a1cab9f0700e6349f9b71db32de68088ff1
BLAKE2b-256 checksum
How to use checksums
39b30899fb69d4d7dbb9f77c82ab5d911dc42954acffbfc2c2ac7030e3e05cc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL heatshrink2-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 68.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d9533aac340b704a6b4d6357601e4fedaff942fd52e446bdbad9f902074ae23a
BLAKE2b-256 checksum
How to use checksums
6374bde65335422be3e38f9ece47e752486655df377b2d173141397522885f25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-win_arm64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-win_arm64.whl
Size 51.2 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
99fdf05e87c626e6d9be9342d7e3d6aee1f87b1a7cba29e607425aa6390c1885
BLAKE2b-256 checksum
How to use checksums
f988614d8e49f90ea4d4be4a4b40c5bddb6085e75939d18ce605a03c6eb5be90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-win_amd64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-win_amd64.whl
Size 59.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e222be6199921c424afa8f75a323c5b1d53b5e83ae1d4b0e92f7012b51ec4eb3
BLAKE2b-256 checksum
How to use checksums
c11589c6d6136e7af047bd79a5b87ac31acb45661f67620e0841fdfccf341aed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-win32.whl

Download URL heatshrink2-0.14.0-cp312-cp312-win32.whl
Size 51.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
ff06f081e141dd757e40871672f9047af8e9a84d17bdc9e39e66a00051843c8a
BLAKE2b-256 checksum
How to use checksums
63537e9b2fce0d840e16b44a39b37341e7828a138bafb5e9b1ec25de2ed4ac8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 366.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
eb9961f2d650a274f98c16341cc04cffa46899bfd6df3bb10d05a0b26e485e14
BLAKE2b-256 checksum
How to use checksums
0f781404058d39f919f8315021afd92bad281a92f26a793030daae92691a864f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 358.7 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
cef8abeb565c967e03c3407d693e5aa02d61a0f151ec7d65114e6b857d42f075
BLAKE2b-256 checksum
How to use checksums
d4bc1d8b1ce0dbf342d148eeea97e6cd7402f4c6849d1e75ebce7489865bbc54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 360.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
97e9c0c4ad8d36b81bf2cce4c7accd6b05375a6b24a9c195062b48d49fee6e6d
BLAKE2b-256 checksum
How to use checksums
2d49ed2b4dde2f9ee2cef0c11cc3fc0af70f50625a91babe71a03c2db45b24b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 376.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71dbbe1d9fbfd541cf8fdeee09b28d6171c6842c0cbedb389214cb3edc968285
BLAKE2b-256 checksum
How to use checksums
16183013f6a6eb855ab885fd91a6ecab8ab3cd04ae6aca770a1392d8d6f25372
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 357.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
d15e75a82fb85c3c0677f1a035ef6d3d06a734a89b0631ff6b3a039926998cea
BLAKE2b-256 checksum
How to use checksums
22bb04e8456e76a1b3f0573975769cb72923de3e637d13832a7e6a77bcf17ed9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 373.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e76cb65216d424de931391f42519ef94db837c04b3094950b8c406fa943ad7eb
BLAKE2b-256 checksum
How to use checksums
c9065accc9bbc8360ad74fc6289878046226cc49eede074f40511e50a1c7ccce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Size 68.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6dda905a7157ca25d9bcaccd1c10e24154493bf13b348165dec1e509cf318e98
BLAKE2b-256 checksum
How to use checksums
35d12593cdfff154b993eab4f931abefce789cec7c65fa39fae9661ceb12fab9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL heatshrink2-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 69.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
4c07b460ef66397284fc6f188662904f6f9a7cce6b25aaa2e7774e7b7fbf03fd
BLAKE2b-256 checksum
How to use checksums
73edf3c6f7e8065a9dc77b18d10c455ff9e2a613edd331516e00ff3c641b7695
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-win_arm64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-win_arm64.whl
Size 52.2 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
635b106676debe9f326cbf71bbf403108067b1cc0ec7e616826e7262f0931daf
BLAKE2b-256 checksum
How to use checksums
fd183138341b0930c1913315f13e9af0a68342ec327ca3b9ca99a1c575094d6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-win_amd64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-win_amd64.whl
Size 59.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
36a28b524d50029132b836281f8a705aeaf433a32ae29c1ed045f7d16ed3aa49
BLAKE2b-256 checksum
How to use checksums
a57406989f69e2f6524c6f719788276eb17a0e17ab937644558039ecb7a02727
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-win32.whl

Download URL heatshrink2-0.14.0-cp311-cp311-win32.whl
Size 52.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
37bb5f5aa3475926d7c223b1adf1522b813643b6d509d9a99294d42f3b3d91e8
BLAKE2b-256 checksum
How to use checksums
d9cdf6749e9ade3c3a9f312e8350b7d3c132cd0a50225657bf8de8491ce5376a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 371.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
23692ceb2a6123f12adb94414f9906cbd5f2f0496a4b3be6d2fd225fae372872
BLAKE2b-256 checksum
How to use checksums
a69ae02ed14e92bdff8e42e3112aac1a5ba66bdb5c375b92b7c5ecffc30c5f28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 361.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
4744545a7756c81f03d1b07821ebf37edeb4423c292d17cfc9c4551dae546ac0
BLAKE2b-256 checksum
How to use checksums
a8c1d9b17312324f302c46d40d5874211dd905ae3a651345829c24fec0cccb26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 369.7 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0525bbbfb2f1139a9dde09bb67a2ad0a3f1be6de95a7d072b47adae5ec072d66
BLAKE2b-256 checksum
How to use checksums
98573a582300348e8def2d5d8f111ceb5a37cf340a89500665e05ceeba316e40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 377.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6625bbef00e2fb404efb6613cf897f45043d1c256f17cdf2435e74fbaf56a5d0
BLAKE2b-256 checksum
How to use checksums
f6c5d2a4db360c4c2bd93aa504632a9b56151848637e7671591bcbca6399889e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 368.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
01341de16d0a566e5d4527ff6fdde3c6d6b399bb42256007ccb9f1538e4e0600
BLAKE2b-256 checksum
How to use checksums
5e9e5ec770e34576c7cb0a88c263ad6609eb5a04e564f1de463ece45301b3af2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 378.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a5bbb2de3656b125367b466e310db9971c11734714b3856763634c7a7a29960c
BLAKE2b-256 checksum
How to use checksums
4ed1c905f5dd935531a8a74f72bf2b26c706716b7f2459ff32ba3fca8dab1ee2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Size 69.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a97f50fedb266a6afbb2d83c64b6e7833a20ecfc2605d367bbf7e1d234feae9e
BLAKE2b-256 checksum
How to use checksums
489a73102ccbb120c7cf56b0ab140f5b28e121087dfefd290e9a64b9387e9a14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL heatshrink2-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 70.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
828a0b79c3e51c139f630feb705bed5a48580ce1cc5e17711c08e4c133800dc8
BLAKE2b-256 checksum
How to use checksums
9975682ccbe592e97e07c1f00f7c4188c7d4f09af466274aeb842f12f7309128
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-win_arm64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-win_arm64.whl
Size 52.4 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
55f8231d784ed0d27fdd83a5161dbae55de26f2586a3322fda21963efb0f8063
BLAKE2b-256 checksum
How to use checksums
a30a3866bbdd2cd702569ac8acaf4fd68a7a97e75221f5d4e73cf51524c655e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-win_amd64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-win_amd64.whl
Size 59.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
63a4c423723cd27c3838e87d00d6e87c061672471a9dd46e597cf0cb44d7bcf2
BLAKE2b-256 checksum
How to use checksums
f9041288b57546d9557abe0d82adc76d5343162cc54ac4a6dc0b94561465fde0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-win32.whl

Download URL heatshrink2-0.14.0-cp310-cp310-win32.whl
Size 52.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
78ccdd6b86fb59abfb8ddb63da42f6bfb6ba5b686fe13fd4fce9e53df5ddbfef
BLAKE2b-256 checksum
How to use checksums
ebde960f86862f09ace0e9196c60a8b42e461e3035177ea50e3c198d7488a42f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 354.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c5f250a71c058be9e1522d51910baa5597511eb7f3410feddf7984b6d5b45aba
BLAKE2b-256 checksum
How to use checksums
79a059f8159f286bb3e043f612304a443832b5e95d24de7ebb5a011213258e58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 347.1 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
92e4a67275f0af30c145070b7d899722f6ec540017567ff63e213984b9c53066
BLAKE2b-256 checksum
How to use checksums
9a1ee6d3664783b59aed64366b40ea6c11624c109030adfbdbfd3066ce6f946e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 352.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e90653ce1552b1fea41b8a99b6be69ec7ef8d97b324015e27de330d9870ceaff
BLAKE2b-256 checksum
How to use checksums
2d4255f7ac114f00b1165804357909ef039f893ee3ab440d453f9d32de4f4676
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 359.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
72b8f6cf17de95776fe49e568d265dd5629cd6d933d2a70539cad82f8c5ca4ff
BLAKE2b-256 checksum
How to use checksums
395ed6cf350105564bffe793cb6086eafc26476d5f8ef7dd6b07486503ebf6fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 358.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
2bc1ba34a8dac8c552cd56bf22a8b0f07eb0dd6ed78ec0ae45959a5970efbd1d
BLAKE2b-256 checksum
How to use checksums
f92897803c9f3485e0080fe896e91c9ca6445fdfe6597a8197c35f51810787b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 360.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e59d43d2e4935b43baa365246f1091000c1a0e723f3c519b762e5f75c1db20c6
BLAKE2b-256 checksum
How to use checksums
f960c7d43c425d155dc0da8a8b8a290bdb4ff63c44acc5c3112761e40c02e630
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Size 69.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
97238f3ab0f16c4729abe2451637a356ab953224705e30a5acfca6db8e9825f6
BLAKE2b-256 checksum
How to use checksums
7e08a642ebed76bd05190575f64ccc970e9dc9e57ddfad22703fa029648075b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL heatshrink2-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 70.4 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bec4da902b6a0ab8a4d70c6b44742c702e80d274d59fb0f1b82b39267f24cf64
BLAKE2b-256 checksum
How to use checksums
2ab896f536f3307b16c2ae14b04f92ab70d2332bd460c172649512514c9d6c27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-win_arm64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-win_arm64.whl
Size 52.7 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
bf4a6c891102d9f7bcd2ef79c869990857361bec75965527ed30c23b550f773b
BLAKE2b-256 checksum
How to use checksums
d5034cd4086ef42fe34526166ce1e6ba03ebb23a35759c942023edb4292b9164
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-win_amd64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-win_amd64.whl
Size 58.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
2f9081cacfa3242c91caf5ae63dff5a98502de9b0ffa24570f4df8c003f4d275
BLAKE2b-256 checksum
How to use checksums
a00a211a94856617d2f807e5acff54b8da96034ed23557e034bfe47d1839cdaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.13

Release files / heatshrink2-0.14.0-cp39-cp39-win32.whl

Download URL heatshrink2-0.14.0-cp39-cp39-win32.whl
Size 52.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
e59826f549afb7cfb979659906e98b2af205d79fd363f2645155a97995a6f6e9
BLAKE2b-256 checksum
How to use checksums
ea9cba42b451482815393042508983ef45a80e6f765648503acd3b8a7d8ae7c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.13

Release files / heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 354.0 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ca60e7fb0aa5e71bf3ec5cd7c3aabcaf595b73d5a184da407fb50438445dc321
BLAKE2b-256 checksum
How to use checksums
91db170cfd40cfe8e80867d564c28da3628b218ab05d0afdfe7f0e22a2c33619
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_armv7l.whl
Size 346.9 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
6dbf14ef0be2a37b8ecbb4f87bf055620cc015d306fc317f0c6643802143d97c
BLAKE2b-256 checksum
How to use checksums
971a47fe46c56abcc0711a1102fa6256f5c85ac6413b2860cd6f87e20b984c24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 351.8 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0f6e85e78c2a501b6a5edb2cc7ad491432728ec747484d728b7ac5a1f57d6caa
BLAKE2b-256 checksum
How to use checksums
36a81b4f918277c8036c8528d590fd0558b1e1caa38f88b92ab768551116e232
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 359.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71d15bcbdd02c83f925086c949b883f1b6c387bea579de6129a771d936ddc4b8
BLAKE2b-256 checksum
How to use checksums
67d4ea736dd88c70405f5ca72f9d961a283f1c0801c8c2def413a0d1bc712eb4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 356.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
9ce49c75cf9d4c0437913a75db0753b2aed3d4809d9467b6de3039b8e5eb5645
BLAKE2b-256 checksum
How to use checksums
fcd92473f2b3f0dec3a2604038ed201de920ed000b868a2fbf6af655abab7758
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 359.3 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7f68c9a0075867b5931b80d856ca4260b18b5e5e3395dfecbf41de582b7c533a
BLAKE2b-256 checksum
How to use checksums
2a91d56ea128029398f87446098bf5a8cd7e6a95797060f8fb4430aebec664e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Size 70.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2faf706674efc1503e8389a3f1afac412aa109bb1a76243955e4e36f263e7b6f
BLAKE2b-256 checksum
How to use checksums
3a697ce6f2d17c91ab8c1418572e20dacb6f307e815acb0720d78527934c70d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL heatshrink2-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 71.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0f56c71e695716a3c8b085cefb0e6e7d01e70a70db0d7cbf63e53c0d3287ce22
BLAKE2b-256 checksum
How to use checksums
7f6d2b661d2cadac3534d5fdefdcb17e00819b25ebbbf3315a2a4f5dd9935491
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-win_amd64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-win_amd64.whl
Size 60.1 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
9566d74fb33b5ee85e83136e6a856be4448be6d4f2a5f63d53c7a1c67513d8c2
BLAKE2b-256 checksum
How to use checksums
0b0a5567396ac25f34d80dbd9bd5dbe1b969bb799abcbf68dc59b870d7f3f912
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.8.10

Release files / heatshrink2-0.14.0-cp38-cp38-win32.whl

Download URL heatshrink2-0.14.0-cp38-cp38-win32.whl
Size 53.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
7a00b883a7289a6649a1ebb8c5eac0e3da061fa2332e0d01321856d7cc92df6f
BLAKE2b-256 checksum
How to use checksums
b9a50144f21aa3ce49e8b3025e600c7b2d0053af846d622584a8678de91c1adc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.8.10

Release files / heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 365.3 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9b8e5623a23fdc368728615ef290a6646dbac159afafbc782a9605b868a0bf7d
BLAKE2b-256 checksum
How to use checksums
2bcb96cbe13a8ceb171c7e72d104f5ee8f6d21cdf90ead849206872b67017c6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_armv7l.whl
Size 357.8 kB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5fc5b2cac5c052908210ab93837b2b465bb6f22e9d4d9245cf98a1c90749f936
BLAKE2b-256 checksum
How to use checksums
52cedabff3c01631e3681e601c4f5fae38473909dedf112c1f418ab7af9b6c10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-musllinux_1_2_aarch64.whl
Size 360.6 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a70c1d4985f1cdd58f3f6728960b8e6392d1aeb99c41c312e4003df0beb0ac27
BLAKE2b-256 checksum
How to use checksums
203c07366c56f36450071b162f624beda47f82dda974b0d469623e9bc50902a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 373.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f9dff7881599fc2b2b634c2e7826926fb056ab61e8d29c772b624e7e77c0f07a
BLAKE2b-256 checksum
How to use checksums
26bfc7d52c5c34793efab0605fd0dfb942b766c5ad7eb21a45b91ac202006ece
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL heatshrink2-0.14.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 375.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
820d716c82f09255aafc3a5ddac7c966c61f5b843234e01addb14337df819256
BLAKE2b-256 checksum
How to use checksums
d6a77d313e97cd2adbd1b836f30408ad6738c81dc7793893e5eed28887be01fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 372.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c5e8acf1f72d80e16773dd7df781db5a3b793e3b5df8a4ccf611864bcd1d445d
BLAKE2b-256 checksum
How to use checksums
7ab3d78502fdf3172b24b2a4558feb0500cebf17cf6201634b17e7b1da950c8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-macosx_11_0_arm64.whl
Size 72.9 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b2ec653d53e3c01f8a5f8385f1fe5a8660df40f65435236ead9a5b8e86b8b469
BLAKE2b-256 checksum
How to use checksums
29255dfd545cea59f49bc07737795d3cdb6134891b8e6346203416923540b2e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / heatshrink2-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL heatshrink2-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 73.9 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bf53bb20c4edf243334e839567760f9eb98169363b23d4b683b18010e43dffa3
BLAKE2b-256 checksum
How to use checksums
c918c576e396b8f57080984e542baa1461f6ee853e31b65b23b79dd7d37f49bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release history Release notifications | RSS feed

This release

0.14.0 This release

88 release files

0.11.0

9 release files

0.9.0

5 release files

0.8.0

3 release files

0.7.0

1 release file

0.6.0

1 release file

0.5.0

1 release file

0.4.0

1 release file

0.2.0

1 release file

0.1.0

1 release file

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