Skip to main content

unishox2-py3

License Downloads Code Style

This package enables Python projects to easily use Unishox2 from siara-cc/Unishox2, which is a C library for compressing short strings. Unishox2 has many potential applications, and this package can enable developers to make use of it for several of those:

  • ✅ Unicode-native text compression. Unishox2 is NOT English- or ASCII-only!
  • ✅ Bandwidth and storage cost reduction for databases and/or cloud services.
  • ⚠️ Byte columns can result in a faster retrieval speed when used as join keys in RDBMSes.
    • Author's note: haven't tested this, but I'd trust the claim generally
  • ⛔️ Compression for low memory devices such as Arduino and ESP8266.
    • Author's note: just use the C bindings for this, they're very approachable

Want to learn more about Unishox2? Read the source paper here.

How to Use

This package is available on PyPI, and can be installed with pip3 install unishox2-py3. Please note that this package only supports Python3, and does not work for Python2 or below. You can see its CI status and testing matrix in this repository's Actions tab.

Getting started with unishox2-py3 is easy. If you want to give it a try via the command line, you can use demo.py to compress some sample strings or try one of your own.

If you're looking to integrate, unishox2-py3 currently provides two APIs that pass data to Unishox2's corresponding simple APIs - accepting the default optimization preset, which is good for most data. These are:

  • unishox2.compress(str)
    • Arguments:
      • str - This requires a string as input (generally, Unicode-encoded).
    • Returns a tuple:
      • bytes - The compressed data.
      • int - The original length of the string.
  • unishox2.decompress(bytes, int)
    • Takes two arguments:
      • bytes - The compressed data.
      • int - The original length of the string.
    • Returns:
      • str - A string, the original data.

Taken together, this looks like:

import unishox2

# the string we want to compress
original_data = "What the developers know:\n1. Whole codebase is spaghetti\n2. Also, spaghetti is delicious."

# drop that in as-is, nothing else is needed for compression
compressed_data, original_size = unishox2.compress(original_data)
# compressed_data now holds bytes, such as b'\x87\xbfi\x85\x1d\x9a\xe9\xfd ...'
# original_size now holds an integer, such as 89

# to get the original string back, we need compressed_data AND original_size
decompressed_data = unishox2.decompress(compressed_data, original_size)
# decompressed_data now holds a string, such as "What the developers know:\n..."

Important Notes

First, you have to have the original_size, or know what the maximum original_size can be for your data, as Unishox2 does not dynamically allocate memory for the resultant string when decompressing. If you need to track the exact size (ex. if some documents are KB, where others are GB), and you are saving the Unishox2-compressed data to a database, you must store the original_size value as well.

As mentioned before, any reasonable maximum for the resultant data also works. So if you are storing usernames that must be 3-20 characters in length, you can skip saving the original_size and use 20 as the original_size for all values during decompression.

Conversely, if you give an original_size value that is too small, too little memory will be allocated. This means that Unishox2 will write past the memory boundary (as it's C under the hood, which is just bound to Python via a module), and your Python program will crash.

OS/Architecture Support

Since unishox2-py3 includes a C library, it must be built specifically for each CPU architecture and OS in use. Wheels are built and tested for many platforms via cibuildwheel, allowing for unishox2-py3 to be used with the following platforms out-of-the-box:

  • Linux: x86_64, i686, aarch64, ppc64le, s390x
  • MacOS: x86_64, arm64, universal2
  • Windows: AMD64, x86

If you need another OS/architecture supported, please file an issue and I'm glad to look into supporting it.

Performance

While Unishox doesn't provide guaranteed compression for all short strings (see the test cases for some examples where the output is larger than the input), it tends to provide better compression than many competitors in real-world usecases for short string compression. In addition, as unishox2-py3 is using a C module instead of reimplementing Unishox2 in Python, there is acceptable performance loss across most applications.

When tested on Reddit data (technical subreddits, mostly English-oriented, 3.3m entries), the average number of bytes required for storing each post's title was:

  • Original: 60.34
  • zlib(1): 61.83 (+2.47%)
  • zlib(9): 61.80 (+2.42%)
  • smaz: 43.46 (-27.98%)
  • Unishox2: 40.08 (-33.58%)

And the average number of bytes required for storing each text post's body was:

  • Original: 561.07
  • zlib(1): 319.93 (-42.98%)
  • zlib(9): 312.87 (-44.23%)
  • smaz: 369.04 (-34.23%)
  • Unishox2: 310.56 (-44.65%)

And the average number of bytes required for storing the URL that any link posts pointed to:

  • Original: 25.72
  • zlib(1): 30.08 (+16.96%)
  • zlib(9): 30.08 (+16.96%)
  • smaz: 20.78 (-19.21%)
  • Unishox2: 19.76 (-23.16%)

Unishox2 shows clear benefits over traditional compressors when compressing short strings, and maintains comparable performance even to moderate-length documents. Unishox2 would be expected to pull farther ahead of smaz for non-English posts as well, though I don't have data to test that. I welcome a PR with additional performance tests.

Integration Tests

The original test suite from test_unishox2.c has been copied.

Tests were added to ensure the Python-to-C binding is type safe:

  • Ensuring compress() only takes strings
  • Ensuring decompress() only takes bytes and an integer
    • Though it will still take a negative integer, and instantly crash, so... don't do that
  • Ensuring compress() won't take a Unicode surrogate e.g. \ud800

Tests were also added to check certain edge cases:

  • Ensuring Unishox2 allocates enough memory for rare, very-high-entropy strings which are enlarged when encoded by Unishox2
  • Ensuring Unishox2 works with ASCII inputs

And finally, hypothesis based property testing was added to generate random inputs which:

  • Build confidence that as long as a minimum length is known for strings, decompression will always work, and original_size doesn't need to be saved
    • This runs 25,000 tests which allocate 44 bytes <= x <= 1 gigabyte for decompression
  • Build confidence that Unishox2 is resilient and functional when presented with arbitrary Unicode input
    • This runs 25,000 tests which generate valid Unicode of any length and composition

Note: 25k property tests per test type are only used for testing when compiled to x86, tests of each built package (ex. for aarch64) only run 100 property tests per test type per package. This alongside other tests provides assurance that unishox2-py3 is working as intended, but not as much assurance as x86.

Credits

First and foremost, thank you to Arun of Siara Logics for the incredible compression library - Unishox2 is lean, fast, and versatile. I am looking forward to using this in my projects and hope it benefits others as well.

In addition, this package is largely based on work from originell/smaz-py3, and would not have been as quickly-developed or strongly-tested without Luis' lead.

Finally, I would like to thank Josh Bicking for his debugging insights and pragmatic thoughts on C as a whole.

Release files for unishox2-py3 1.0.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 unishox2-py3 1.0.0
File Size Uploaded
unishox2-py3-1.0.0.tar.gz 28.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for unishox2-py3 1.0.0
File
unishox2_py3-1.0.0-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
unishox2_py3-1.0.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
unishox2_py3-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
unishox2_py3-1.0.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
unishox2_py3-1.0.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
unishox2_py3-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
unishox2_py3-1.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
unishox2_py3-1.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
unishox2_py3-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
unishox2_py3-1.0.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
unishox2_py3-1.0.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x Details
unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
unishox2_py3-1.0.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
unishox2_py3-1.0.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x Details
unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
unishox2_py3-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 4.0 MB

Release files / unishox2-py3-1.0.0.tar.gz

Download URL unishox2-py3-1.0.0.tar.gz
Size 28.8 kB
Tags Source
SHA-256 checksum
How to use checksums
cd2595de196ffd8b93bea7a76f5796d8293f32d1f7c9d3660af0b764ab917963
BLAKE2b-256 checksum
How to use checksums
71f037ee868b6113f007b81cc4ad84d66ffe34055e1300a5d142f926337e56de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp39-pypy39_pp73-win_amd64.whl

Download URL unishox2_py3-1.0.0-pp39-pypy39_pp73-win_amd64.whl
Size 24.2 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
7793b57ec419e61719b0d8c06fbb56eff6b25b578b330e494ffb536170248697
BLAKE2b-256 checksum
How to use checksums
ef23594256bb4f06aab6af475378084358e163d28b365c3f190c490fe7f8352e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 24.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
09eea1e2b5536bbc868d9b4ca344819c62579f754774acb879256ae71a3f1d4c
BLAKE2b-256 checksum
How to use checksums
3ca9c0c2841b8d47a230e5b5b51444141b8488f6454c698adbb3248748befa6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 25.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
176a5ba8106b5abacb752656962437717ed7d3e989612759a18abf7b62881a12
BLAKE2b-256 checksum
How to use checksums
dbaf0d27a81a9d0b5ed580984ab487287a905e8542cf4adc50925bfa365fa576
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 24.7 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
abe18403e0a0ad02dc1f8dcd90a86a9e94b93fab3df674e43bae35d0671c364d
BLAKE2b-256 checksum
How to use checksums
985d1daf0e2b520325caea44c7fd95ec3db8a473ac76d49c89131a0548cec190
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Size 25.1 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c1c767b85849c6c485c9ab65ff71d7bed5d5cd0f96daec9437c5a5651c5ce08a
BLAKE2b-256 checksum
How to use checksums
21c7b0d95ed490d7c0c644459e84b907d298e55b6efca8e15cd52d53e3b4cbaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp38-pypy38_pp73-win_amd64.whl

Download URL unishox2_py3-1.0.0-pp38-pypy38_pp73-win_amd64.whl
Size 24.2 kB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
c3dfe91f29de2b20db806513f3b0e7ec6e578cefc2ae4e93b79237a3eb43cc32
BLAKE2b-256 checksum
How to use checksums
811ede4ddf247e65a9032005ca4f52c1a4cef36da023b0b7274a8f37dbbd3cc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 24.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
bfabea5b35f4a79ba29291be31e4f7eec415bf3552231a939a36f036a3609c08
BLAKE2b-256 checksum
How to use checksums
d856df17ef466cb20fe73353e83e8599542af097dc08eef408ee3f9ba5012de0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 25.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
31d1f1dea8cc77ef7b8789b67a6084717385faf5b30e00490edb5dc8eb071c55
BLAKE2b-256 checksum
How to use checksums
5277af082f003b9cbc75b5628e6b4333559cc6674544fefc5b38287068260bf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 24.7 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
c3427a41b01116842d948179f9795bfc23b9063408e8331c0a0de3e30d870f1e
BLAKE2b-256 checksum
How to use checksums
016d145672acc5c14169a34b0cb5267f97bb1b6a0f0be79e49b8422039e54256
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 25.1 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
62e5cf26760449c2869f097f664e4e2952a9a0b1a5bd87740764a3c274d0eed7
BLAKE2b-256 checksum
How to use checksums
840d17b2c6e1465bde91b44bb3ae6bc16ca774eaca847897baaf0deda7407709
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp37-pypy37_pp73-win_amd64.whl

Download URL unishox2_py3-1.0.0-pp37-pypy37_pp73-win_amd64.whl
Size 24.2 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
5e80d290abe1fe0c60ca9783e3a712b7cf4ab3592b5c44f8ab7f528b85018e98
BLAKE2b-256 checksum
How to use checksums
58bd075df9155aa400176c27bdb859cf520fde3b402a1699aaf69ccdffd690fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 24.9 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
b446ed3072a79f26ab3a83c44a4924ead422741aaff3650dac7c8284f3a39946
BLAKE2b-256 checksum
How to use checksums
d443740cd5a61bbbaf82beca077eeecf8b687f3d59b419dbea59338e58b0776b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 25.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
beee1e131fd9f35ef39e1a85904bd87863ef3810e96eb8b65142d26200f1e887
BLAKE2b-256 checksum
How to use checksums
48b15c3f532677314f54a1dee66a8b660ba52b8cc3aada121d6bbd04310738c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 25.1 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
fc9ae7c1d5948b03d8b1934748ee773053c44c134e7e2eda71a36b251edfbe9e
BLAKE2b-256 checksum
How to use checksums
07c3b7258dd8f7ff5267a51f29024a52fc0a9efa81a23ee6a84bba07e7fc82d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 25.1 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
dc44f6abe7b067eeb189e0b62e1ceea94016e613539c66b03dbc869a5cf2a94c
BLAKE2b-256 checksum
How to use checksums
9580167f16107ce54c9ddfd59bd385afeccf4c4c009b8dd7149b6c04c9bba529
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-win_amd64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-win_amd64.whl
Size 24.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9df0dff51bf9e3405917fa271115d61113f66c6d7644132cfcf86ccaf85e4341
BLAKE2b-256 checksum
How to use checksums
a7c7f1201605f2c8ee80c88541fdfc98055088bb1906d1d8481ecb0923df8b16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-win32.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-win32.whl
Size 21.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9b70e8d50b586e648730a9d860888ceabff1d471393229dff73eb827b12f2f10
BLAKE2b-256 checksum
How to use checksums
4e10a85d3b1a13edcb0c4f2bcf5e05c6a466004cae225c57308465492ec01f8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 61.2 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
5e162dda6969298342e1f98ac234078602301b635e87f3e69ded86ace586b69c
BLAKE2b-256 checksum
How to use checksums
4d09985e07679207f782c1be6a73f7c1d7cede36e3cb58e751177e263c9769f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_s390x.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_s390x.whl
Size 62.3 kB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
64aad25f8b793c67a349b1e0101823d82ad23759da8de0e87463dc06f76fe137
BLAKE2b-256 checksum
How to use checksums
ee3d3a87be6cfd20f9431fc4b48b6af49b7951e2ff3577375177f4cd81980b2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 64.9 kB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
48ca3b099d5f465de828fc8a2f722ff3f967ae8c63c893ca8301f905ee1380a9
BLAKE2b-256 checksum
How to use checksums
5613b48cbdb6833e2c4b9bda21597eb1893ffb107263dedcfb41cb3caac8aa17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_i686.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_i686.whl
Size 57.4 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
5ff21bf8593ee664609e3f71cc6155bea52bda807db951ffd003b52f151e0361
BLAKE2b-256 checksum
How to use checksums
45ee53ebc4854ccea91ce22a41dde75e9758e2a9b6a7779fff3983b92bdd1b47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 62.0 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
a76b5cc7474897a960cb974125d3cef461b809819707572280e97c8db7b85e4a
BLAKE2b-256 checksum
How to use checksums
09712c6a94fd0707d04f881a94f5988e1376460fbd7f448cab391b95dc9d68ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 57.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
df94044b4d2f7dbf129638dac3692ab6714a8b7046175124c1059fb89d4dd2de
BLAKE2b-256 checksum
How to use checksums
9d64bb8436aa7c1cb1d26ae78b6d2e75c498ff7ef99ea6c360fb0f3a3858689e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 58.7 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3f6c1a050f52b352802777f9df55790631505fa13f53ba40ce481477986f70e5
BLAKE2b-256 checksum
How to use checksums
212373556797b4ebcd6e026dd5569a0a285f599fa59462aafb63c0b9915b80b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 60.9 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
069ee84e570fb69773a2ae25b3b42590c6db2e22e3400cb49383e0e3aed8cee5
BLAKE2b-256 checksum
How to use checksums
5684702f3c08e4ab68f5c05c947638fa8aa883185e005a544ce26a83f9931131
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 58.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e71ca8321af9a38a35143f3eaccb55e496dd04ae560f8fbb8596f9d93d0a39fa
BLAKE2b-256 checksum
How to use checksums
5fa1f7f0ef50e7150c74c234b6721c4adf1856c2f82dc2fe8ce2340f1b4266d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 52.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c2a10afb76a08b3eabbf8404e0952f366216d4d241c879528f7ff2bea92b3343
BLAKE2b-256 checksum
How to use checksums
0723e40c25fbd3f039c82b035d2c27b1a72b7403efbfbfda56377a5624ab0ccf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Size 26.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
76fe1053d39eaa3c07d084b31e65a7797962ef9d879da94cfed86cecc52344c6
BLAKE2b-256 checksum
How to use checksums
97e7e69656b4740bbd3a4a24b882a98834b5832f59734705e54356c6e43d166b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 26.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
44a8fdd736a948c68bbe5eab092f1fc322941e3602995b9de4f35e05d99e34aa
BLAKE2b-256 checksum
How to use checksums
04a6f364d513ceffdc4654aa124e7b0bdaa5cb882752e745055ac35e773fb85e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL unishox2_py3-1.0.0-cp310-cp310-macosx_10_9_universal2.whl
Size 44.1 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
94e5cb659da8b25eacfbef00bb935821afddd9eeb79a873f8641ed568789b6b0
BLAKE2b-256 checksum
How to use checksums
3a5855810b27960381f6d93bea27282062eb3509f565a3f7a144b517c11cf0f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-win_amd64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-win_amd64.whl
Size 24.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4217aabb5ae28c3d944e3666a49eeaa5778ed9aadd71abc60b29576b371bd0c9
BLAKE2b-256 checksum
How to use checksums
9c5101b544e56e832e7697e2b8afbf9dcfce71d1781cdcca8d4c2062221377b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-win32.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-win32.whl
Size 21.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
0039eb558fdc1f6aca8e2a8bb22822704cb1f394cc75069931c39ba3519ba758
BLAKE2b-256 checksum
How to use checksums
18124a6bc76e35686c30a57cc36f1760b3ea61ccbc3a18d86e5d9ee65580a439
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 61.0 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2cccc7e42bd1ec7f0c8cccdeb83358159a9b214e150482752ae854bdd196ec8e
BLAKE2b-256 checksum
How to use checksums
ea19c29dea02f2d701154a00048aadeb22b6934eec43d72bfae0297f19da19d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_s390x.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_s390x.whl
Size 62.1 kB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
494888bee0b6ec38b4408218fe4233a3afa65e503aa95395eb432eb16e20577d
BLAKE2b-256 checksum
How to use checksums
bf6a2aa647ee73eba95ccacb0dbe01d907e68c1d5c9d58e9e4cb9b8163554fa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 64.7 kB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2c7555545d9edb8952f8434b2a726fde25c954c87870f8ef55c976ca6da2699d
BLAKE2b-256 checksum
How to use checksums
69cfa65f15ababa40db46cbe372ed874b1f1cfc797c8217c3963c7ed4565ad4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_i686.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_i686.whl
Size 57.2 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
16ebf0be88bf1ee7a0e49a9a6039af359608618a4e4cecc1dd47b25664eaecc6
BLAKE2b-256 checksum
How to use checksums
c32810503f9dde7faf8a7962d4c9b2f4b69718a6509617e6b2c622bebb07a5de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 61.8 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
5a6f6635153d326a62b50e35db8d406bffbced7439a884001875f0dd0e0fa037
BLAKE2b-256 checksum
How to use checksums
b0033afd4d59a75c86c07abe75f0af77a138c9daa888c6f0b88b2a13601682c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 57.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
846573efdabd4133824c84e8dc015cfd42e3272d0ab651a717d87664d72847ed
BLAKE2b-256 checksum
How to use checksums
e6b7624a38e036b04964ba13907fc145b2eb21ab3f3a41450ea0a4aa4b1465d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 58.5 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
9d77ef45aad32f05fb745309a8ced74774f663499b9858d816a39dd241da850a
BLAKE2b-256 checksum
How to use checksums
9457d25e468abfc407c87916e2d552d036bdc9dd98808b4fe9cf82e7251e791b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 60.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fd8dd05e3ef2012b0ccb337e77c77dae79443eee2be011eed8fcdf2698ab6e8c
BLAKE2b-256 checksum
How to use checksums
21ec88c6b19957ddbf2a28b4f446ddc74892fff2d9bf98dc4bca691c5684d477
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 57.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
24f35bc6b90c639b21e4911b9d75f69e1699728e4ee022f312b976315cfde58f
BLAKE2b-256 checksum
How to use checksums
d67240ed1d218f2a90ab6dfbc89477e86bb174251b467babee4029c3531c7809
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 52.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
132921e32754dbe1d6b1aa5f633a1942920c8442aedaf599b91d0cc5e406e458
BLAKE2b-256 checksum
How to use checksums
e900f035ec5ad31413e8c2adcc9d5778a46fd921b2ce59bb8b9525fa210c00c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Size 26.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3cc311a3d33b86b8360c7fcd443d5431e31515abe5aa8e78c111ff3435e4c2c4
BLAKE2b-256 checksum
How to use checksums
4fa3c91c1b065b81ceea6884cfd961747e3e5d4eb911c92d1e168529c9e8d4a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 26.8 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
273e63cac376f1761866259b8bbb66e310452cfec249465df78eef707a2ed7e5
BLAKE2b-256 checksum
How to use checksums
69ac46f5ad3fdd66df89e53573c0b4a6c5b0637dc78e66516afb9938822f46ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL unishox2_py3-1.0.0-cp39-cp39-macosx_10_9_universal2.whl
Size 44.1 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d2b33a40df802e4c921e5d25c29e819f1276f5bb16a8ef20c411eaa69e2d7ac7
BLAKE2b-256 checksum
How to use checksums
3736661ccf33f09406d44ea9a449a974f7213348b04da673f9b27fec812ed924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-win_amd64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-win_amd64.whl
Size 24.1 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
f0043ea0fb6d88b715bc07129bbffa494405838ee2d75ffa95ae0e5988c5eccd
BLAKE2b-256 checksum
How to use checksums
b26e518186633c28746e86895103a23911a9464e7476e97f55b13b993a8ee17a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-win32.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-win32.whl
Size 21.2 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
5976a1666ac61eb952bdddbce7e6f7aa3436a34f2054114f89560998b79fde08
BLAKE2b-256 checksum
How to use checksums
d63a6762dc5deabf26c0b1aec9eb8dfaa3f0779addfc0425fcc16215e5484fed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 61.2 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
5f645764c6004c80f43e4432178dd44aa183983fb10df3d523b32d8ede07a212
BLAKE2b-256 checksum
How to use checksums
2f1a481ab407f88b279e2c9b899a2c59d21ffa20e948d23a3ecb7565746316b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_s390x.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_s390x.whl
Size 62.3 kB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
e4add234e6779d7db7c150e016eba11167c991e17b1fa093e25f761297cf4dd2
BLAKE2b-256 checksum
How to use checksums
6707e76ccd6c954fc22d5646e1ac08d991d00208936209b23580130197b51c12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 64.9 kB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ca39630c0b29cec639fd5631c88d97916d1c0967b06fe2a2a92e76945ff850a8
BLAKE2b-256 checksum
How to use checksums
6c347609a0900a07c2c55f6e5edb4f0995ff4ebf65223ff584afcaa2be385418
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_i686.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_i686.whl
Size 57.4 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
d0948e20c8662420ac20fe2b424846e821911bfb90f1367b59db5c0afd374095
BLAKE2b-256 checksum
How to use checksums
47a1a4e029a31414752311569c8bcdb883546fb16c9fdb410955f77557e85aef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 62.0 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
d6709963fe34c841ea0cb33c001595274e7143a828f2edb788fdc9b3845d6e18
BLAKE2b-256 checksum
How to use checksums
11870e892183fd22cb62985bfe0d7508eb020ebdba81f5e1f67c4fe238af34fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 57.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4c483bd753f98674a74cd0355779db97c7083cf9e0673a02045c08f8e52cc60a
BLAKE2b-256 checksum
How to use checksums
6af5bfb791a0aa11b5df9112c1d1156a588c87ca412404c3c8ceb54f718f21f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 59.1 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
68c97aad6ab715e60fb4d597c36a19c64a3b6f062d7440b09a8fd066d9ad89a8
BLAKE2b-256 checksum
How to use checksums
a34d99cc1053ce5f14fe8ada8907b72aec26d2567c89e63be31087b3ab6e6da8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 61.3 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cbdb3b4733706c35acaf31a212ee388bd0da31ed6f15ba3ebb99a848892470ae
BLAKE2b-256 checksum
How to use checksums
227ba361e8d23249f0327212f34a52c7ac2374618932bc625ebdb6b78337fbe4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 58.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
82b50931836c36445f49dc5ee0223579801af3846a9245dcc94d9becc53a42f4
BLAKE2b-256 checksum
How to use checksums
27690d1c1de4c9e62b18c157b4d2742664fe353596324c0cbc4cd58a416e5579
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 53.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
92dfd9d3abf6fd014470cacc8b0acc4198af3364b65486752d2f995751f83a2d
BLAKE2b-256 checksum
How to use checksums
92f4cd756794fc9c06ccf09dc25fcc0ae31637d5e1142732ca111da39df49a33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Size 26.3 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2501e23a2dc6946cfc7cb8dd66c056f046db940e8166b6ad16509d573fdf5602
BLAKE2b-256 checksum
How to use checksums
589504a0ec1852c68fd7b22c58d343e0525cdd242a355b9216363a469280f3ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 26.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6185f93355b006acb5434e9f88101748e597cec98a5c941d15402a0344b01f4f
BLAKE2b-256 checksum
How to use checksums
960be4c78cbd05412670b01609ba0c6bea1bdef86246776d30c08581bbc62cbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp38-cp38-macosx_10_9_universal2.whl

Download URL unishox2_py3-1.0.0-cp38-cp38-macosx_10_9_universal2.whl
Size 44.1 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
373737ca39ca1938d603de37563078132d68943621f3435222523f336695879b
BLAKE2b-256 checksum
How to use checksums
f035a058685bcf87ecca50cdada0a18695d51315a8f2304784c7b25dd3b67661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-win_amd64.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-win_amd64.whl
Size 24.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f2a6da2663c0705a273e60eb780e7f6cb111db5f6b4d2ef6f08f0ada12d202ac
BLAKE2b-256 checksum
How to use checksums
3fa5972899043754df36528f7ef756f9d4807d2687299d74685b9c7040121eb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-win32.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-win32.whl
Size 21.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e668169db566aa517446019f0fd43b9db3c28ff093298cf21c522bb0c4a19480
BLAKE2b-256 checksum
How to use checksums
a1238e9ea6860f572620cf26aab73192da7f2e66992793e9c0e508ccabdec233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 62.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
b5313bc896b038beaada033fec4cc6fb161ed58c0dbaede14b9d7cf8c0577b8a
BLAKE2b-256 checksum
How to use checksums
1e47cbca3ae314d92ef6da5847c91d2d1c597ef701e9f8a44c00c13edcebd1ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_s390x.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_s390x.whl
Size 63.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
565cf23b7933fa36cda32c7177e66f8304bca75db0a1502324b9aeab1e0e2a10
BLAKE2b-256 checksum
How to use checksums
054a59c08548edaddf36a246c42157dc5e64c5902fcff02f209085748a00050d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Size 65.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fb9c57bcd3414355825040d10120d076cb162a5eb509abc17b7a4ccd87021006
BLAKE2b-256 checksum
How to use checksums
5ae964db8fcbc00ea302abd9ca18b0e15767d1ad4ce816146b8bae6d7b35ad3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Size 58.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
0a888f2ef896460cde7d5735feb76fb3d6c2c8f94b1b6bdab11817a2053c3267
BLAKE2b-256 checksum
How to use checksums
1456b42f18c8b8d8694c109333116d81c68c22cc7524f7c67fc97d12f1bc7f25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 63.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
37edc3cfe20c209333403950b25bd54685dd33aeeeb31d25ac7cb24ac9e41d77
BLAKE2b-256 checksum
How to use checksums
e90942058f883bb7f51c5d07ee8aa4ac737b816fa7fd4a0ea5f96ac4bb97fdc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 57.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8e93b492431e8024c4d4e907300653cfb3fa3fd34977333e2a78db05b7c76496
BLAKE2b-256 checksum
How to use checksums
e0c78977dd5b4d5a7c74cd82b6c758444b9ce9efcfcf15940825daf73304c9a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 59.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
250ae10a8fb6f3141490ed9c85cd26d675e6fe098d09f5c62d73af2b7184d988
BLAKE2b-256 checksum
How to use checksums
2b478f227394bc14bc5f6f3acd759a1c2fd7e2d79f33088649c8a99f713f94c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 61.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b85ed64e730c7564b5cce4a5e49692414c0325d2c0e4bd6545a2a1870d268dcd
BLAKE2b-256 checksum
How to use checksums
11af79152a74134a39e2f4f082bab8f18da979997e1a9923e7965fbda4a41173
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 58.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
96b957e7d992da497241ac02e902a0fcc2d3319385466912101490c7092d2ef3
BLAKE2b-256 checksum
How to use checksums
fea9182d3593f404e8bf672f6941c593b987147b655f243176cc153cb2fafc4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 53.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e7705cb504ccc518a65ba003956c9f5ce0c5bcc87ffbfbce7647cc1d0874c154
BLAKE2b-256 checksum
How to use checksums
ef6d0ed366ad4e8e9273c58f797a1fcbbb52a280bd89675bd5448784983c7753
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 26.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b6f5821a51cf4f88e852b5f6f67338127ba3772058031de875c4f06e5559941c
BLAKE2b-256 checksum
How to use checksums
e965cfacacf4599475b8bc3ac2e337138e8efcc5841825635cf424b73c1e520e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-win_amd64.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-win_amd64.whl
Size 25.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f4f8fb865e762b3c9b4517f967f794860b70a50f3936ec23ec0e513e2bf87092
BLAKE2b-256 checksum
How to use checksums
afc267953049304127f243c59fcc9be343f3e3abc3f35ef4ade75f98adedf6b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-win32.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-win32.whl
Size 22.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
962a784d2c4ff25bab0bbdeaf9ffb54cb29e2ec96bd2c765b961b1b9185f7063
BLAKE2b-256 checksum
How to use checksums
3a4775c76c30b9b6b183d48b3e51591dd74019b1968fe8a0df4b9ef80d6299f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 61.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2e68bbc6d87adb783908609a7e8afb05337e410afc32c6d6dfbdb3119da3adc4
BLAKE2b-256 checksum
How to use checksums
14b19464b07bc5e4bace9b739aab5d41d10c84cd1ba69bf0ed6d967077060e12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_s390x.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_s390x.whl
Size 62.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
09d734272b1cfd9c9bc8c58b583073ad1a9451cb359490e4ff9e1a59bf9bab8f
BLAKE2b-256 checksum
How to use checksums
5da9794ef4b2f5cc68e71746e20f78064043f40665610371af7f57df05efe7fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Size 65.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f90c8949627a94d6c97d39b85c12184ea4d9662fc88cd0157ad24efc805e9196
BLAKE2b-256 checksum
How to use checksums
b9b9564dd2508641cf94635d6f360a9cf56ec0a1a983a36c8d877eff6e7d5253
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_i686.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_i686.whl
Size 57.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
b16c42a2c12ae426cd9703433d62d7f1e08f98c303e4c1289da6aca75387b19f
BLAKE2b-256 checksum
How to use checksums
32fb0f3438fee00758b68824b1989d9a2b6a63b67f25d6bbc0ec0f6b67dfaf8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_aarch64.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 62.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
aac0b440f161b97418be5e8e956a1c39a0e7135cac2d9503f6f937aff770c3b3
BLAKE2b-256 checksum
How to use checksums
8baca4011cbeaafddfaa85638c9e93057dc4cf6995e628d58323710ea391da58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 57.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
29abce767fa9d0a2e97207bf7916b4ea94e9a072badf505931512298c1961edf
BLAKE2b-256 checksum
How to use checksums
bc820c7385abba2c48ca51a05099d6427a9ebb7b06be544fd167c097bab19ba2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 59.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
471c374168d3f0d40fae997fa21ac982d2e00d0fbb24f5580dd324cf44bd3467
BLAKE2b-256 checksum
How to use checksums
b07fd4dc40666c4c2751402e3805052584a6bd34d577e680dfc112086a732e30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 61.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b29a9075990f81c15adbd3e7ded44ea5451265facde4304a557a4d37a61b8e16
BLAKE2b-256 checksum
How to use checksums
51d7328d034cc6cd60f1ab565bcf7245c53784987b7b6af718eb7fc721c31dfc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 58.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8b773d3a5d54122ed915b88c128f6d1400e5cc872e54697deb13d6139d54db94
BLAKE2b-256 checksum
How to use checksums
3752c92bfc4916294ad8d7f1e759378c85a0b6847a01fd9715dd9c764b187e05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 53.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
dcd6d5280f01017285e6ca3bd51020d5040a9254df8adab95fa2e573f8219f73
BLAKE2b-256 checksum
How to use checksums
a879d6ca0fe494f7a8da057eefbbe1e792a3c5b816879b3bd6dcff8a2f6a9b7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / unishox2_py3-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL unishox2_py3-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Size 26.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f1f6afa23b05860b12327a8939ac55ce4998b299da49027f656f7340425cbdc5
BLAKE2b-256 checksum
How to use checksums
3457d5f9f8f71ea88a27ab6b651a750b6c1e209a260070bc8cb5336cf4e852d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release history Release notifications | RSS feed

This release

1.0.0 This release

87 release files

0.9.9

92 release files

0.9.7

12 release files

0.9.6

12 release files

0.9.5

12 release files

0.9.4

12 release files

0.9.3

12 release files

0.9.2

12 release files

0.9.1

12 release files

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