Skip to main content

Small string compression using smaz, supports Python 3.

Project description

smaz-py3

Small string compression using smaz compression algorithm.

This library wraps the original C code, so it should be quite fast. It also has a testsuite that uses hypothesis based property testing - a fancy way of saying that the tests are run with randomly generated strings using most of unicode, to better guard against edge cases.

Why do I need this?

You are working with tons of short strings (text messages, urls,...) and want to save space.

According to the original code and notes, it achieves the best compression with english strings (up to 50%) that do not contain a ton of numbers. However, any other language might just work as well (allegedly still up to 30%).

Note that in certain cases it is possible that the compression increases the size. Keep that in mind and maybe first run some tests. Measuring size is explained in the example below as well.

How do I use this?

Let's install:

$ pip install smaz-py3

Note: the -py3 is important. There is an original release, kudos to Benjamin Sergeant, but it does not work with Python 3+.

Now, a usage example.

import smaz
# First we compress our example sentence.
compressed = smaz.compress("The quick brown fox jumps over the lazy dog.")
# The output is raw bytes. As can be seen in the decompress() call below.
# Now, we decompress these raw bytes again. This should return our example sentence.
decompressed = smaz.decompress(b'H\x00\xfeq&\x83\xfek^sA)\xdc\xfa\x00\xfej&-<\x95\xe7\r\x0b\x89\xdbG\x18\x06;n')
#  This does not fail, which means we have successfully compressed and decompressed
#  without damaging anything.
assert decompressed == "The quick brown fox jumps over the lazy dog."

How much did we compress?

# First, we get the actual byte size of our example string.
original_size = len("The quick brown fox jumps over the lazy dog.".encode("utf-8"))  # 44 bytes
# As `compressed` is already raw bytes, we can also call len() on this
compressed_size = len(compressed)  # 31 bytes
compression_ratio = 1 - compressed_size / original_size  # 0.295

So we saved about 30% (0.295 * 100 and some rounding 😉).

If the compression ratio would be below 0, we would have actually increased the string. Yes, this can happen. Again, smaz works best on small strings.

A small note about NULL bytes

Currently, smaz-py3 does not support strings with NULL bytes (\x00) in compression:

>>> import smaz
>>> smaz.compress("The quick brown fox\x00 jumps over the lazy dog.")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: embedded null character

My reasoning behind this is that in most scenarios you want to clean that away beforehand anyways. If you think this is wrong, please open up an issue on github. I am happy for further input!

Migrating from Python 2 smaz

If you have been using the Python 2 smaz library, this Python 3 version exposes the same API, so it is a drop-in replacement.

Important: While developing this extension, I think I found a bug in the original library. Using Python 2.7.16:

>>> import smaz
>>> smaz.compress("The quick brown fox jumps over the lazy dog.")
'H'  # this is wrong.
>>> small = smaz.compress("The quick brown fox jumps over the lazy dog.")
>>> smaz.decompress(small)
'The'  # information lost.

So, if you are actually upgrading from this, please make sure that you are not affected by this. smaz-py3 is not prone to this bug.

Behind the scenes, smaz uses NULL bytes in compression. However, when converting from C back to a Python string object, NULL is used to mark the end of the string. The above sentence, compressed, has the NULL byte right after the H (H\x00\xfeq…). That's why it stops right then and there. Again, smaz-py3 is not affected by this, mostly because I got lucky in choosing this example sentence.

Credits

Credit where credit is due. First to antirez's SMAZ compression and to the original python 2 wrapper by Benjamin Sergeant.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smaz-py3-1.1.1.tar.gz (20.3 kB view details)

Uploaded Source

Built Distributions

smaz_py3-1.1.1-pp38-pypy38_pp73-win_amd64.whl (26.0 kB view details)

Uploaded PyPy Windows x86-64

smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (15.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

smaz_py3-1.1.1-pp37-pypy37_pp73-win_amd64.whl (26.0 kB view details)

Uploaded PyPy Windows x86-64

smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (10.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

smaz_py3-1.1.1-cp310-cp310-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

smaz_py3-1.1.1-cp310-cp310-win32.whl (14.3 kB view details)

Uploaded CPython 3.10 Windows x86

smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl (27.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl (28.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_i686.whl (25.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl (27.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (10.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

smaz_py3-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

smaz_py3-1.1.1-cp39-cp39-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

smaz_py3-1.1.1-cp39-cp39-win32.whl (14.3 kB view details)

Uploaded CPython 3.9 Windows x86

smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl (26.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl (27.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl (27.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_i686.whl (24.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl (27.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (19.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (10.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

smaz_py3-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

smaz_py3-1.1.1-cp38-cp38-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

smaz_py3-1.1.1-cp38-cp38-win32.whl (14.3 kB view details)

Uploaded CPython 3.8 Windows x86

smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl (26.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl (27.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl (28.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_i686.whl (25.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl (27.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-cp38-cp38-macosx_11_0_arm64.whl (10.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

smaz_py3-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

smaz_py3-1.1.1-cp37-cp37m-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

smaz_py3-1.1.1-cp37-cp37m-win32.whl (14.3 kB view details)

Uploaded CPython 3.7m Windows x86

smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl (27.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl (28.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (29.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl (26.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl (28.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.5 kB view details)

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

smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

smaz_py3-1.1.1-cp36-cp36m-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

smaz_py3-1.1.1-cp36-cp36m-win32.whl (14.3 kB view details)

Uploaded CPython 3.6m Windows x86

smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_s390x.whl (27.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_ppc64le.whl (28.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_i686.whl (25.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl (27.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.5 kB view details)

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

smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

smaz_py3-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file smaz-py3-1.1.1.tar.gz.

File metadata

  • Download URL: smaz-py3-1.1.1.tar.gz
  • Upload date:
  • Size: 20.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz-py3-1.1.1.tar.gz
Algorithm Hash digest
SHA256 9b084c983eb7e2b410cb0d993971e655364ba1041e46c316fa2d46665a6bcca9
MD5 94f46bc3b4af5ff83096431cbdbeecc1
BLAKE2b-256 ad77835d8c57dcc5478f30dd69addd1f569cc407ec8e1eece04f450d88a0a72a

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 26.0 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 22bcc5c79f573ccf648e9a5ab514e290d143211f345a8e1ad860ad6f6dd49899
MD5 245f055129173fd00cd76b5ba7e1d041
BLAKE2b-256 dbe621ced2621a90135a233b940ce5ada9a49b820f46f805363563e315ec435e

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 31.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef7fb8687fead42ad2d7bd337c88d64cf04e78b4f0f2dc28c4d8fbf700c96d2b
MD5 9838af5d4d34c5184553e6e0f0acb4f8
BLAKE2b-256 4de1736567f94b24ec309a710d241593a531ba9930408d0a20ba51e324692b5e

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb7004fb42fd1584cb18af239c4cda9da18c2d836be1177108b0977ad3caae47
MD5 9d26ecfb5047d6925831c05bf2d5bb28
BLAKE2b-256 2a538b7402cbc67a0a30063b135453ae9ed5de4715440c3f5161d5f7462ff545

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44f34638dec5b22f653b09d39202efcce99c36012e90576bbcfba6ae87f35572
MD5 95da04431df22964e963198fdc67e576
BLAKE2b-256 56fa13d862c6947488a634224b80caf7ffb0ef7995b6f4216483c51407f4075f

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 15.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1c3a70813309e4665b54092f07fa9433fc9b204872f9b3095517fcfb737a2ef
MD5 b829b85294ae56a593d5d62cacebd276
BLAKE2b-256 45bf4429c29eea750ce7cb3dc9c95bb9c78a04b1c6bc1b8f3dfce66337709e03

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 26.0 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ca1d0f7ec202a0ef8647bc621eeebd2df16cf374f05cd42cb6a00c7ca539ee7e
MD5 4480b192db0cf89af686e178ce3d1606
BLAKE2b-256 9789649c131dc98f15ba211d752bb160208534338d8a0bef0bbddc061a196564

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 31.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c19bb1e7ae50deb5f49873feb161fe40cd90c8c6e36d7cd52e4a1477d9bcec04
MD5 2914a8b0fde08df976fc3fb6ecb59d3d
BLAKE2b-256 24cdb9a55651d7770b1a53381135e8462b9eeee52a620ecee9636178607180fa

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d88be0578ee095aafe6b383e0524a54ee452f901775d85521c77f7cdb86a0ef7
MD5 339dfcf9ef14c7e2523b127268999ef7
BLAKE2b-256 2710370151e1bbe188a1fabbfb105325a59278f42014665663caeb18e895798c

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec3dab5f564784829c542a63e5426ec96cfd5f3820b45c4e607384dc8b9d5f78
MD5 8b4e22dbf5714ec4994784f0500ce1f9
BLAKE2b-256 2cfe3cc2aac4e7b7ab9c310f9165ccc5fd2ef304a243ddd64b359b89054262d1

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.0 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f06c19167c61dd0a1d84f5fbaee6db9135e04df41660095761138c7d637c49e5
MD5 d343839dfe453b5626b17d95e79cba56
BLAKE2b-256 cfc9e7043e9fd1065a3343dbe1e28074e818e67f6653ce76501110110c22aebe

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eeadedd4a11164b1985cedc85fceb409de688a39c59d2dc6c0d98ee3cd5f33bc
MD5 2de14b2f1613551520212426e862ae13
BLAKE2b-256 a7bf1ddf65730876558db7032e39f31211d4c633e8246a7c7c09c37997ce5da8

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e1c75d680d05a01634bf6437f0044a5fa4394e9d2b5a902f61a304bdb5078056
MD5 085d04ab4f8373fd91d57f8d91b836b7
BLAKE2b-256 eac62570a4e9daa7ab0abb63ab3133eeb84f09b2cd0336349339cc072acae138

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3c97125297c3c9784a5e1d10d6188dd85f653451f189d58897956e41f22aa757
MD5 ff87e533e1e4e5ba674e5d46bf9f5010
BLAKE2b-256 6d3f0c5bc5266139f711006a39aa67da0865c18ab2b675bde5389378fd55e381

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 cff9bb8abad71626d8d7a6755bf87c09d555ff697778106e598f5e436d8b2a85
MD5 9ebcf1d5ac95d749767787c3e19ff443
BLAKE2b-256 cc8e7c02eabccf4f19735e91a2157ab9627ee654d2e602fd339b1fbedefe10ea

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 28.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0cf65e67fd23121b7f514b5f9f054962b65c5e51d6c4249605c99434bde446ee
MD5 8d3c9b13a63b3e93acd87694e5cb688a
BLAKE2b-256 b6b27618098866eddcc51a0f1b2a261c6c08d5d73b73ddd669e629981b5a658b

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 aec56c89521f28b3be06fd22cd38ef686417357fa4968d60bca91a26de11cd46
MD5 d33e318cc2e756c2021523ed7bc37b6e
BLAKE2b-256 4bf010554e4d9ccb951ccc9859eeea6ff1df3d431beed1425edda0a804f8c1a9

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 77941daea0431362c9303428fa35ff4e06e393f88453c8753875491003a86393
MD5 d6491203a5a1d5bec55021ff82e527b3
BLAKE2b-256 38fa8b44ae235ce7eea6e039fa071ce73c2388fa1831ceb0165a0d414bd88839

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eca35ff5a25723d7f4fa62e89390484eeddbe5af063ddb34596840791a0e95a
MD5 876e75f8003f850d0dc8bca09de09d5f
BLAKE2b-256 d1740c347304205f378cf083c4f91bc15ccad63ae97209626616c5f806d608ce

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 22.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8b1ed664b6eb8df6c4c0b2a647f9c4c7c81f3e91e4a64c2cbe57dc7d8bde24d
MD5 87330126c2238e25d1d480b9827615e3
BLAKE2b-256 e01c7379c2a0ba846815b92650cb19488faac234ccb4c07e33914054eae04d39

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 22.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8192d04208881dc5832fea648e253afe9dd8f16edd8cd9903abc59e0065fbe36
MD5 50a7da084834f1ab0ba3364d345f1a1b
BLAKE2b-256 28510b87190ae2b5fd86ea6bcbbce9abbe9d57c2f08b7de3a05490177b75b592

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e145b195fa19cef868f109c0fa74dfe8ea9a73719e1d6ec96194e5ff773ebfd
MD5 dd964e3ab269df68093eabf4b2847571
BLAKE2b-256 c0153ceef2e80571631e1d370a8625624d4f8eddaa9cf1f7f95ed4a02b61111f

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cc4c13440e700c03293565cf0563ce3a32abf78ad86c12f0a2e5f93516c48d4
MD5 4c02322d1d6c98ccd2ef4137beff4e41
BLAKE2b-256 4e4be8211cf5f59e867e566e248daf52afdc2b741ebb2bd184eaf5359feb8fc3

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e785ca6d3aec378d3cb613cef2d2191f20f2f1276d8abb5a7992f7b83152f22
MD5 54354961e34a8f70744e44c831dfc089
BLAKE2b-256 dab0bb126ec1244fdaab5acc9b4855fa07f74fcc610db06e03c60704dd5be9ba

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1842ebb3fd25eb194e11f61d98e166fe1b8f68c5a02f90654774af5df9a60e7a
MD5 7229b93f4a72c2d367a94c64d24ed740
BLAKE2b-256 e3246b04f71e9128efc679893522876aa33add20d0fcc6e47e486902ea6d74a7

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 91eeaa3a6fa8421807082329f74f87241f78dffd841f64aaf3207b592d431aaa
MD5 51c4bbf0158748435efc890c5d8c2145
BLAKE2b-256 160b56151f56182b4d7239400178f9f3130a7ba86cbc8a1864ee50d9608f6ee1

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5e752863efa0a7975f2bd96cf6c02bff5125162e4e1e3e9ffd4be778af6f5af7
MD5 696ebdab38a8800e3187501c36d1b12f
BLAKE2b-256 d08217c3e3b50dce08743aa7fe2a149c4455a980697f9a7589efe7a3ccd949a7

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bd0ef71daf1cf5c7d86378728b0d78673215da4ca1a9d818915280819207386
MD5 0c5aceaa638b7c9f80343f7574194df6
BLAKE2b-256 a84ec32920136991ccbfe44567e088388118aeb97a17ab53887606f4283a51d6

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 49b33f7bf6a00d5c3805c9a217360c9478cec64899e27647b86e8f9edcdf2f03
MD5 0941a288d585efb22af92db645637801
BLAKE2b-256 1c87d166fe62592d1d9fe62c80525cdc89183e4286ee31879b2403dcb5d386c6

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 27.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8663b643d8644d4a0c893e5357080223d5f1a8792e6045f1b69ebb1e33e6d629
MD5 0aa6900a6fc8cb048f59d39d30ee411a
BLAKE2b-256 0427626fc365b8192b82925072aafc9cdf3ca209fe6bea781f1439a7b15c9d24

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 65aaaa9e335144673ea03e4272481be4699eba07ca83931361605f0331964a88
MD5 db9d0a8a504b74771ec6a437db5c26e7
BLAKE2b-256 668773662d3f9ce1d51695e6920bac6754a5c987a761430bfec731a31bb18555

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6dccea77ec21d9926e8e20028c00676d08ff04365db9d25c05d90998ebe0c79f
MD5 91f54c6b118084a209ae01d20f696364
BLAKE2b-256 02a5bd65eddb20d533a73d6bc8f8b8f00cd00d7e5e2dd1bab22512b7664b2ac1

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 937059439422b07a432c1c5cde74d3dfc703e1bd40f382034eb8ab9611f3d8d6
MD5 4b7dea71ccf808de512a70e537195f35
BLAKE2b-256 a12166f9bbd84f7a776f2ceed8832b35a870158aebad653dc1c51f8946cf8421

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75f9f3d5d932ae157a424942388c6ee2466e2f6a3b535adcf29eaff7639a54a8
MD5 ee80dc2a00617166bff99b6f914c8e46
BLAKE2b-256 9a4b73832bfae79b75d7e6b08e7ae1e1c55338316951ecb498c77cf096d3deb3

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a8eee44efc87b157a6e143d42ec3bca6c45db050cd8af1fd62aaa0dc1078787
MD5 0af0ae6e00647ab5640f846b9de59cd8
BLAKE2b-256 e878c64eaa097b742dbd709b9f3b3278eeeff0f0a46ee7371dee828f235eab2c

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 22.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f9c7f6e098cb4652ca6913f2bb447c27271f554feb7b7d0a836ed7e06dbe6f2
MD5 3ad16537de991432638e8b5e2c2a23a1
BLAKE2b-256 d3b4e97d8dbeeeb4ee14cf8717d6e3bc1ae4bc2efed5c1db54c3317b0ec3e400

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6143f5857f3658e7073bec48868edab5933eebc53f89baf8d8f20a894f9c4b9
MD5 231ebedda20290a7c2d145401dbcbc09
BLAKE2b-256 f474882cb7190b1fbbe40c53495684f74063d84bf7ec885f2588237e4d1b9dd3

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 180a767f313534ac74eef46e0bad77fbd2839290f07eed166c6b8fdfc5e2dc9b
MD5 540ec56e9f1cae9a78138055745f2149
BLAKE2b-256 4f2955bdb825a060dbfe5131cc74e033c38a500b7fe603b2d7d1d49f4a0ba6f9

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73bf5d9d51e08bd7d1a938dfae0551b29908497a56d09c96dbe8695114806bb5
MD5 9104b4a6c54c53fa49dea09694b3054b
BLAKE2b-256 1e4c5ae2184c67cbe12252e73271cbbad942c46ed035c3228d2977864a7a96db

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c245a6d58f3fd5873c641831fe7b5c58155b6984af7f1d695c6dd11a9da3c1e
MD5 1adba5d3eac9b0a96c0a3f63087ac566
BLAKE2b-256 ce483dfbbe37814eb69a95d3991701ec54f9fcf0ad610f5ec6b8537fc4e17cdb

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 482d4786225c9803e5b6939ebaef4ac90aa8d5f485b35bb13bd7cf888b846abf
MD5 832332e2e4e855d16088a1dfb57c8f73
BLAKE2b-256 cb23c22f99b23283722897aec9e69c5e0368c05a4b302f1432988a61a8ea76ae

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9b84bb9282248e36fd9fc19339fe442598bf839180020dc41cfe68625ef93197
MD5 3e74f7682e3270e757a2524027032c8d
BLAKE2b-256 bed6fe2fd49162aeb74d49447345d4d265f78051e3724f348be131ac8dc76b1f

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3765843d49c9c0bd604c699be232882d8a82165f1c700b3b7b397a49c6c57e67
MD5 306b40092847a596584297b2ae59ebcf
BLAKE2b-256 82a5d85689cc4b1d3834baaced42d70c439cea44590234c715793c11dd169f34

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 28.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 7ac604f8876283ee6c1416359ca206a39514110a5c0ddf3c41bf6b1938ae0052
MD5 562c53fc461a45398022d9721b82db1b
BLAKE2b-256 783af98335b999e254b8e762756b6f9377e1aba63dd8f9a5e0f62b1d686c1648

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f34fa6d40650386895d5cc08eb038a5742780dfe97568e7fe89f62f258db0a8b
MD5 9df3d688df8ed8c3f46d70cf9c98152f
BLAKE2b-256 120ea729906883aa25ebcd1046d445399ab8909a23a345d20c24b60b1df6a00b

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 67b2659343d794cc5fdac1d9d377229a6f4330c2b0c88174f64c432a9fb66a12
MD5 939c15bdd979b8fdaff4597a613de4af
BLAKE2b-256 437981e74e471abaaf8ba9ad0d04dab600062931f86b95340c0eff9c7613799c

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e878718c066425f21150d8f5e4648bb412958576b9fd9bc044dbe1f875a4ccc4
MD5 5d7c07b5f40b637fc2d5759c05251c95
BLAKE2b-256 66ba53fc09e1ad9b7dfe26746efe30b652ca2e18cc0d8ce16312081e3f2f0ade

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e65e2220f0ee3ff40e4d78be0a7023fb8a91feeaf0652e03d106a4e36a48e21
MD5 64ceae31d2d4437a46c19f9d618440d5
BLAKE2b-256 ce9cde137f618a4cdcd73ae0634f36aa5f4abf99dbbff230b7f6e4b903c1dd18

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad07dd362d10d8ae2f1c09548b537a67baa446cfc16a75640cc51b643c1d94c2
MD5 f81600d86c1ccc5dea232fe1052f4c85
BLAKE2b-256 72f137894f4cb43ef6d0bb16dd282a458980aaa6cbc04f00a87ebbc38d7d1f51

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 22.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 268dda28801705b8306d9bef9d9c3dc898127148fcb4f2c56d0120dffb581c31
MD5 0805a4dccb91cfd85c911e6812c9ff15
BLAKE2b-256 052a77065f79a6ed892bd79bdb22a64e7db4d0bcae0ca6dedb3feba7db03b601

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05b91a23f74b954e25562590089567b6acfa5e78b8b4ad3349fe65b0accb6383
MD5 706cd88e7b3534230b1bf5ef412b8b27
BLAKE2b-256 9d34241d4efa2f5413f151dc91270c98fafaf47d9509f9dbb62570d3bf032a1a

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dec3040b1d1e2737709da161ef81f1b24c0c236c59ef21b12605a7d1a61b4fae
MD5 97ffdc2078380df487634a9247a37138
BLAKE2b-256 3f61c5c14271887ea26e1d8024e6e1ac60fee30ad3e2be62300672f306c56506

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c7a3c34fa3cbd946bfbd7a1cc49dd0be358e7e6317f5714a18ea79a62d29a21
MD5 0a341a406ff33a2693c0ac78bf4d5492
BLAKE2b-256 5577b98bac43b127a3a315f1ff1469c4d6ef8331d51044e90f97e8591f835edd

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b4a2a88a27782cdd4eb85715d030c8895eee843a31738c62596e815a5ce52c70
MD5 7df1d32a4d9607b2fd1138ee0d251e80
BLAKE2b-256 b8a30ec98cc229091b1c84910d91a3a38a670cb22faf275c746686e3fc960ff9

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aeb8a067634d7f466554aa6c67ebfc1f0dd8298f09b22c394def957cdff2864d
MD5 a47c87f3b22fe183b3f03c9cadf30569
BLAKE2b-256 0da8b4555d8b58e0e19776aaa1c483850edec2f42f31eee9c627ad5d49ed8e82

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6427e9fb93efde9ad8e1467bfc344e719d329b46afb07b407760ed95983bc1ae
MD5 2c359722757e5caa946f10877239a29d
BLAKE2b-256 0a6808f70b0923345c6e6752ddaf7756e445cf7ba36e30ce589ddbbc6b54ed61

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 28.4 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 da04b71fecdc1134f1bc21e8a746f41c417fd3b6f858697c8c1a99fb9fed2d2a
MD5 3d27159d8e81a25a3e1241322ce4cc4f
BLAKE2b-256 0ff9c254f35dc04a03cd6d149b8673f21cc4b63f16b23ef10572efc2a06d3b74

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 29.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 62d6f0198108bc32ea22902d89437fd66afc8f6073800425f67a56fd0e452a4e
MD5 4df015b2a00f7a1aaa1e681faf6e9b99
BLAKE2b-256 f4fd4170192207ab535d249a722d324685ce716357f550246c2dff4429356869

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5875e67c25f96cee2ed8e964d8752d8428a878fb4ceda0fba0a938894fce7e54
MD5 e570a6fce3380e704aa2e84d4b34f75f
BLAKE2b-256 c8eab6aa3c6ccb73682438164fb8b3053f207579eafe949f8bdd398ce2d83e6c

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 28.3 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 831eb619f862f4c15e46024cde6e66a55a745ed325e21697d8a31af1141f155e
MD5 db6630753b61b5ea9bf7d9159fa94290
BLAKE2b-256 e13b1443a43c9928734dd6c9240add59f60e576a1b27eef9e48b846e64eb1fd7

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b2f7ae163c3ff17ef513c9ae9031ad122f2070ab5b25c68e877f01c96e66cad
MD5 81bb35517acae483829d31ebbd300ca0
BLAKE2b-256 c61357d62f2f973b1cdca453c41bcd63acb94812b4e5d91f55dc2579f37745a0

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a0103eda98c53ba16f5e44582948bb16935542d630f97a077aa1d4f0369eeec
MD5 9b74f776bb707efad204e47a22b82d39
BLAKE2b-256 1be1baa4cdd0c41116c0c6005c97146995f5994d47fdc426d4ab13f4c8604707

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b95a5383370ce788daf1a68279ea7dd11956d39374e2eb056fad503e3a96cb4a
MD5 cac18cc2e459cc8e8068447e32771255
BLAKE2b-256 6c8d8b406c0102fec28408c8fe9342f7d291671b523de4e78d25e1e48d4f9cf9

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 22.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69d7c5787349ddd6c9245dd2136bef2dc06a8222b1cb9bf8c31ea2298b107e1a
MD5 e553706e986e1c70fa3fb0332d9b8874
BLAKE2b-256 b781e97e7589b000016072a58d6ef4d5500f3d2d38f5335c25621ef86f0f319e

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92349fc7729048ea3ee2111057aa03cb9ce133868d22b456b87d9f3971e61b8a
MD5 d082ce31c6cc46b64defc254cf788637
BLAKE2b-256 41c7529738aebef714633474924b9076990a31d51e7aa860e76f9e0bcf92ef12

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be193c4b6f16a5499321606c22d3ba2182ad0a8a1330e344d76e34cfc754a469
MD5 fc0d12c2d4437e29d4aacf3135bd84bd
BLAKE2b-256 c9ae5cdb651588d57c117b63990184e58a4851afe41d102c86e64447c5aee4a5

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3603c0b8ce95005356cd0da1a2f360e262c42e7890005c56763b31b73ce68a86
MD5 af5b9d73912fba83c95a3522fe678bfd
BLAKE2b-256 4762628cb9ef23d54e6d7710b2b323d29dc6cb812a5938659cd4e729ba7f03ef

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4af8e3c68b22a7a40563aa8d89365b2ff7987ff27495706201e93308c9c61a47
MD5 2e3c4b5390b117593679b3bb8bb52e27
BLAKE2b-256 d228a4ff2026e11d1eecce3597e20cb0b6a399bdd996402141259d4aa41dafb0

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d1bbe227fb2e325a2d27b7b95068f040899051c9b8c013b0755b5eabc80b1e0
MD5 6fc44382c09ccafee0e1bd191922f05c
BLAKE2b-256 53e32ac2298361eb65040f1f5726324e2e8ced98fa62a2f3cba9c8111b9a8a40

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 935ad1642aaf51c4f530d5a5821260522b1f9c496bb47e77deef1c042a53bb9f
MD5 4de2f10cb6fb8f6df4546239dffb6a20
BLAKE2b-256 cd6b248228a79614da906938925b97629c79015e749d852b0ace3a02f49262ca

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 28.1 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 bd1bd94ac227125274bff161aefdba2279d397236f093fab6f56786e212648df
MD5 0a044fbcd9349e07899fb29738d44675
BLAKE2b-256 14d59f18e5b246e994d5e6d083a91108935584fc45f939c97d98251f682ea665

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 af946389736c4f6a9538289a94da0c836f1258d81b700f30c017bdfdc6b08ebe
MD5 4ff4a9c5ee045aa6804ed8f88307836b
BLAKE2b-256 64ebd715e53d26f59952b5196b295034ac836d7244c6bd57da98e4901a8006d9

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7c63e4153b42e3e4eb61d960ea82f85c61490a58570fe397deb635942eb9cbb1
MD5 6494fb174d5861421a5498224d06b7bb
BLAKE2b-256 96a1bd0aec7274b78a88528d8354e9fd2fc7d6cd17c9ea9c66d22c16e0a460b5

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f70431aa6590db9c214d26ba4c0afdae3d59ffd8a561da391c54a53b0d956453
MD5 37b9b63478a45b5b2d4d32a0db3a3af3
BLAKE2b-256 72333beb91dd0a506ea0412ee4dfe8d9a32cb74d8b1b9604971035b1ee83b5b6

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0afcd35875a7c47ce0714b97e88e4d37e29d389c4998c4c8282a1b9b8a00d06f
MD5 f4109cf8508d75d7deeb0bbf8ccc353b
BLAKE2b-256 baeb2bd6a2f8da2bf029e87fa2bdaa9c185dc9b45078178557509e97456f5c6e

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e57005c691a36ddc763cf7b22084371b942af64eba07e3edb5f3d2b6bb9095b5
MD5 7530ff10bcd774ac48efa083f3d0f79f
BLAKE2b-256 c870a11a1b163e896cf8d240908d133f51848f539751225799c5a0b52659758d

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 22.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48898624c14a749f74d133734da79880beb73a3fe00cf528e5d43dfe9a8eac04
MD5 299c1d5f03246b9daea34408ab756e93
BLAKE2b-256 7bd1ea1d19856223a8e1242d219c576cd0686b47f45cb4a64f69556a5d60308b

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce43e7ff6846d5df2c778465e635f1424db1dc5a11774e0cd33fb351342371d3
MD5 6b4ff852e7984a190bdb424b30158bff
BLAKE2b-256 8046437c60f6ec1f3b7a6017928216b7a68b35b1f16e5fcf8cb0b3869b084628

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: smaz_py3-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for smaz_py3-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8175115df4585b78a7fc0800ef6efaaecec452ad684bd886fa8ccdd1d0a43833
MD5 0e7f149f4a3eabb61e94997a6613e3c7
BLAKE2b-256 c88353d9fb4f46d6feec9a7fa871b9bf15b5677fb2f6936ee0bdfa692d12ab4b

See more details on using hashes here.

Supported by

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