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

Uploaded Source

Built Distributions

smaz_py3-1.1.0-pp37-pypy37_pp73-win_amd64.whl (15.4 kB view details)

Uploaded PyPy Windows x86-64

smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (13.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (12.5 kB view details)

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

smaz_py3-1.1.0-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.0-cp310-cp310-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

smaz_py3-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

smaz_py3-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

smaz_py3-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (25.3 kB view details)

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

smaz_py3-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

smaz_py3-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

smaz_py3-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

smaz_py3-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (27.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

smaz_py3-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (25.1 kB view details)

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

smaz_py3-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

smaz_py3-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (10.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

smaz_py3-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

smaz_py3-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

smaz_py3-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (25.4 kB view details)

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

smaz_py3-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

smaz_py3-1.1.0-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.0-cp37-cp37m-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

smaz_py3-1.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

smaz_py3-1.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (28.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

smaz_py3-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (26.4 kB view details)

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

smaz_py3-1.1.0-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.0-cp36-cp36m-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

smaz_py3-1.1.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

smaz_py3-1.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

smaz_py3-1.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

smaz_py3-1.1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (27.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

smaz_py3-1.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (25.5 kB view details)

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

smaz_py3-1.1.0-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.0.tar.gz.

File metadata

  • Download URL: smaz-py3-1.1.0.tar.gz
  • Upload date:
  • Size: 23.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz-py3-1.1.0.tar.gz
Algorithm Hash digest
SHA256 8149a45040739e6cd224f66232552235d7aecab03a53876f6f68ceec7ccc7575
MD5 efd196d9a8561f8b7816ddf59c10c380
BLAKE2b-256 2fc93c72bcc665a05fb19320cf043786299c8144572c2bbafedbab8587e85fbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f0a6ad57bd08d5805dc5a2645539861ed91ecdcaf191d4ff650f5d6b84d4f255
MD5 bed6bc4ae437166cb8ffc4e4375d0c5e
BLAKE2b-256 783e8e06967b267efae6ac4cfafa4ef4df2aae6a96bc28d4eba2986ed59a6ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f7d3432102a719898e53a35b8001cc9bf7d2512b670f0a3b38aee7c3aa483d4
MD5 0ab5eca207913eae5d656e6bf9b4457c
BLAKE2b-256 86e37a550f7ff9b929a77d851eb74f4b6503fca6780b76ffdb431cd324637c42

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cb2f545bbbe0dd0ad34988b768764c9302f88fc03d10c57696b3e76b576934c7
MD5 eb17ff0a84cbb9438161d569b39f09e8
BLAKE2b-256 f3d71ecf0da7c4aebe53c0699610f0f822cb932160b39c7da4fe6ce6f18f5809

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 072cd43b4c576eee2a7c6f7a32a4737329c9e2396f0be7cd7316d9c6d5e3d971
MD5 e69fc58b4f3322f4162c99674691c325
BLAKE2b-256 bcb70dad13e1dd115a23f46a6d4643a03f84cdcb65f051a006c60426161d7942

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c2473972bd8d864c4e3e4cc58517c27d72f7059a841f0acd1bec532b80e3da0
MD5 e87d62a58eeb65ad81beaef84f1a19c9
BLAKE2b-256 2c4d1a27e5e700e7a2f584ed754e69843ebf2468b50b1e0514cd4e061d667f55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b739cd113aa4f668138fc7d3886ac3dd62f38ac2ca40432e493ae286e054aa2
MD5 7ee0b26134a6f908459b44669b88c4fd
BLAKE2b-256 71d3db4cb5d7a48bb72a8eb1ebd9792884558ca9cb0d0a61c3cf83aea5dd769b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1c2d394bb25b26cdad4fdd23a6214b7c8674edad359bc724be69006af3f097b7
MD5 7245e051342e04d709b8dbfbe83571a3
BLAKE2b-256 dd83cd22bee13821091698dee0ce75ac5aafc6c52ce82b668068a69966724d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ef95f250167374c5750af3dc1bb538d7c3b323fcf7e957b1df786d4f193a1f4
MD5 f0c6cc3f699fa016813dfef113f12075
BLAKE2b-256 a9c38d7a4682337caaf0bc4e7d52561e5cb1aeca828430e3d0fa401482b2e385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e179c2319dc084aa5428bb5370497d591cdc1d79166aab0a466c2d5d9d9d72e9
MD5 a747dc81992cc2def1c5abd6d907b7a8
BLAKE2b-256 cc6b1ed5315dbf0997c5e43156c98087cd94f2508637933336970e822e101594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15ae70016258fba423894388746fe6987d49566d799d1d950e12ff12998fa9d0
MD5 09b614e73c7315e9f4c5efdeced73e5d
BLAKE2b-256 fbf1937c2bd9d0644b325bf18c6f3111d200f7d76eed159a8e5134b1021d9359

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 90ef6e279dd0bfbdaa72a382253f011fa8a21021596dc2db7171a0ad0bd24316
MD5 3931113dd495d88dcb5af7b571857fe1
BLAKE2b-256 71b4a197e7f9d59ec7519a9c0517b21338ae296140849aa9b6c8b2d787923682

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 97f33c41fe7739301c0253b5e6f190613194bb9c6485b99efe0145102ca1d8a8
MD5 dcfef9ff2b0e6454f68b23258e1333cd
BLAKE2b-256 026cda3d6f9bb1447ebc636f3acf1d626553394830904d0283fa1cbf2a41c38c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ec5b7d9411dc117bf6b3ccdb3aa58b2c4828155209654bc306fa532fc4a29b8
MD5 c3a004af9647179be2a07a9ede728f28
BLAKE2b-256 287bd084740032ed194e3b7ae296ad8d2d25309244267c05110123954c12e902

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e37e8adf1225b40177aee2957deea3901d3337b2c54217ab740a6f4beabd9eb
MD5 77527c55bd86f9895a6d13f5c524daad
BLAKE2b-256 f717f56f17e1e86e1f4e5ee891c4fa03b0f1e1a9217686899c6e583fd102ba12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 865a6a9cedfad580bea4c5aae6d9506d7bb833ebc87318d6edbb12a36b7caaae
MD5 f982009e28747018da36ff31a7c5fa1d
BLAKE2b-256 2d40fc5a902e3c02d996d4ac4ba3cd5a5e6529078634d8cc8a17a75624cdfc56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0b47fc3e791c0b206123936dd766d93a2227bc609b7e6c8272d014456dbe6a7f
MD5 752af29bb12c6ac079a159e5c2b95e9f
BLAKE2b-256 3f4c3044866dcdb83331b5c812f5d8d46692bed332ae3764b93cecfac4709cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e93520b2fc0c7295549100da83f8d3a2048600f4dcd013e38a94b5fd81f5715a
MD5 fa826a20fa80568638379bf97798abe0
BLAKE2b-256 8bf74cc1fd7039c9918a8ae8d6cbc0059030a203599f59f92f400e0c0d61b6cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf380e4cb38dcd4e244b449f7432cc8beb9a6058e7407fd5611c3cb6d256b5b2
MD5 8b837defec22357054cdf65cbfaa4e5c
BLAKE2b-256 de5511c6555db48e6ee489d1dda20e35c97fbc8fbc96319ac0165ec2ca9a4511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c1278d1ac828a33e14b7b881c23fe64c16126592f805c82195108806caa8f69
MD5 057eaacf76f08e546c4eeae75a5c4b02
BLAKE2b-256 d7ba55e5e678585fbb0bd916d524ada034b64f51bb1c71cd984ba277e86d9a4c

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0ebc64043969fd04b85cb5467a218ec264d8f05700e8cbc42fb38eaab34ac43e
MD5 434f8d2f5ae88a62c97fad3c2aa225e4
BLAKE2b-256 1511d3f6b8592dcf66562ceeea823ed574223da29980afe06c28d753f4b24072

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8b25f9061db8243559e0aed27e8f32b95e260b355832e41b2ce1418b5caacef2
MD5 40e105b7889905fd73c21fc49a9499c3
BLAKE2b-256 d35b103e3db5ebd40c892672b8e68ab69f22ce27aa736a7d39fac3b28c068506

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a985e852fc4b110072edc4e567b07f48c195ccfff13f0ca45b9fc5770f11fcd6
MD5 cec8c65b468cf124fc6ca68601530b57
BLAKE2b-256 3140be0f3ddeb31ad9b3e1190a20d878b9db079b250845e9188c5c8074a67511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7cc32d7af8feade2ace6321ca37f10d61b3cca2f16a9bdcfeda19b401d907af4
MD5 417f89420252cc25ca5adc49a21eb401
BLAKE2b-256 aacab0a024133dcd7bcf40f3b73d383fc5777975fa085e1713952367529748b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 381c926143f6f0cd63eeb3abcf437442c8d26a316c534a4b780dd419d48d23b5
MD5 90b40c7c286cb438bb20f2def1d08261
BLAKE2b-256 a08b5d8317fdbdfd7f00d3ed2c6aabede15aff1836998f430cd8cfaa022e5a4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 63309c3e3782a6888e622660040c1fd94e75738e8b742272cd85091f5dc01025
MD5 50cd715c6f81747a11e0f5df2e54fb85
BLAKE2b-256 11cbf3cac566af4c03cb187218a09fbdd2e12e152cedbfdbf52a860e4c181eeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6230c2f429c98c3813c568f8871a5ec8400b3f5e22ae2528632d4dc5c2e4825
MD5 b6bbc3762c19e904601fb0ff81339f3c
BLAKE2b-256 7cf292c05aa6d60dfd4993ce602f53edec8f832e144ced091d9fda5e70740949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50c88ffdeb7de98f7b400df84dc8bd65994985edc8702ec6496903fc0604e278
MD5 e8254341cc6cb6a357e89311fa95a57c
BLAKE2b-256 106bcef1e6e3da5edf8d726c07021fcf09237fe6bcd468205847b39d675a9563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7df88d4a420c6da24d04bef5a842d52673a8527ca76f3d0a3a25facef5c9df5
MD5 b5eeb0842752bb048d9294d64366c6d1
BLAKE2b-256 5b9199946da6b8b95c8994c5c32ca8bc3fad9551b074532c605ff0f882b5f117

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7d282b031777db2591a62b19513fa35fb98d465c7c751228bb530ef06764cac
MD5 db1096db19c82b2b8441bfb6e0dd5ffd
BLAKE2b-256 2944dc735fcc709796ed7fb5affb0796aa7b7c6acbac18f537eb0814036823d2

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f2a5e2a3abfc94ca4bebb883144287a1a1965bfd57bb40cd4146b570377b814c
MD5 d534bf0b7303d906129cea04940da658
BLAKE2b-256 424c2da177946b08b00c0926ea64184d91b418c7c9e9062a6fdd0b87e0db7300

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d987a499ee1893017d6a3b166663e9ca85086736ce4e429fa496bab78a3e1301
MD5 1ff5b9d7ae26e5f0ede8a25b3b985b98
BLAKE2b-256 47b9f4097e85da75db5529a9df68c6021c1cc9cf48f1cf8251af1688de5aa722

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f698a6063f2468fcf14fa2362e332cfcbbf229c548145fd9ca497309faff771b
MD5 ed2349c38383a20ab3ad9caee03eaa2c
BLAKE2b-256 3a6f1a44a260bc119637317c8037f2cce7ed735291070a6b67a4247340557411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f9262b7a0ec6fe53de5db60c04771cb5ffd533639936e982d5e64e6d3c2d79ae
MD5 ee1ddf2eeea631fb359b084bae203d7b
BLAKE2b-256 ed368c89928db56e9486c51157ffd21a4ce6e0a527b03dbc3ce97269c0dab93c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cdc926ea9c1749ee5c89dbd9e45bb5d3b436e2b262c49477cb1e3e226aab0b35
MD5 eb0decae55443e970114e132fa74e2fa
BLAKE2b-256 e9798d6709d221464869a83310b44ec8ca979983ec96bf9c1c12f05d28751ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ada89d79f16693071da35e4227d064b17a224c85dcea59c80e6e0aedb25c500
MD5 f9c4067233e1371ad1cce2aa1a303187
BLAKE2b-256 527cf6227f43942f7d7abcc75006e594f71628cc13017beaed70f5ac7cdcd30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cacb6d0db4ae8c8f78dd8ee1e049bad47ff29d48cd2c27e09bbf0df6dfedb165
MD5 da63b6424e67eac589fd4f48e47f74cf
BLAKE2b-256 4040963010a864116e7a3b8927facc6c87b1905810a46074ca66bcd96b421707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a66bc90f0b1f38c231168f0322c414d72bf798c34ce487cca6f225af5e12d5e
MD5 ce8bc416e7de200230119464418135ab
BLAKE2b-256 b74029e2bd7e238cd5a9661ae91cb091a65e7b4674a9a1e09361aa5ae6faa0a5

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6039e330b088ca7217bb14dea8da7d4d801cea67df4a1e09090ed48f962c1cac
MD5 fa28202a05e1595af0e741b0c1acb3aa
BLAKE2b-256 24e68dee81148d758f7c7e6771c3043ab63f9c115ff60b25c5945afa12957042

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a9a08167181f0a5f8027f5ca338b25b1f5b710f01be9965cb54d7ebee8d82a58
MD5 cdd3d48b3bdea7559c4fd35d4727c663
BLAKE2b-256 cfa180af3313dcd07980f1bc80561feef58b4b3065eebd2ea80a2dbdf7a1c569

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3961e4a167cd62dca329ffdd3b65343e9a020b35d1279c904a4b7e5ff13b213e
MD5 c085d0338f75e23555e02d97434e2ef8
BLAKE2b-256 af7be8eefe9f3766f8271ed00af2a075d44507422e8d221e25b5521e8cdafb47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c288fe0343c0b722d0dc949ee899aea36174602fc6d21b1494de0f89fdf4b992
MD5 dd23ca4ccb9e7e4030bed606b88746ea
BLAKE2b-256 59fb2c4b573954b24a8de2bbcf325b3431e24588cd9edff5a3d0687c32b8451c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5e26ade2ae826faee63267d725dafc30700ad6491c3bef18134b53aa57e37b49
MD5 c0069312e854ff6f3aa20c6b00615cab
BLAKE2b-256 0ab905c09f82284c7b67353c86554b15fe7a57a3f19cdfd5b080e30c1311ab4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc19e2bebdd44ca457a457a4c00086d5d676bbf32fcb9df56ed9ab7cd8a58329
MD5 522e541677f5a3d95aa0e3fe9a284a2a
BLAKE2b-256 5b700133441a225986d752a215c9f403aa80917668122bf6a159b8828bcd81d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18f629aefd613911dba1c6ac5f2f641e88719e803f8e9860fafdb9c45c6a7f65
MD5 b61952e4e2f98b9aea392a0da27ffc85
BLAKE2b-256 25204a211d35d10fc205c55950fc8a05a367a779d9e61d90cf9e0383ad73f716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae6baf43f7639adfcf71b68d9ed7577c81112f1b47d064aede90c92ff110b7d2
MD5 e8e2d1649e13a764d44a0a840543a671
BLAKE2b-256 c836ce084f816297ed078bb006c07f7f69931b0d68fad80c4017803e83c496a9

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ba73957e9dbbc1258ac25d407dad7b1a12349993c12899a3766c0afe35615881
MD5 325613c03dbb845ea66aa798e8ca2622
BLAKE2b-256 37a224a0199a0b4f07a584a230d4208163b83550fd9410267958adc59a184655

See more details on using hashes here.

File details

Details for the file smaz_py3-1.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c926455479c7d9f4194dc0846da2ff3769eda86b207953c801a3fd64376af2c6
MD5 ade0c489cc889cc67afcdb956bda03d0
BLAKE2b-256 c38044740fbfe54af5d028fd7bc69f1ee6068d27e184fcfcfda578304d26f7f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smaz_py3-1.1.0-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.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for smaz_py3-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff12d377a3f63260d29b80caf259fac4572a1f6838f72de0ede5d2e906722a1c
MD5 1ffc21f737f3f6626895a22b0f4f1c7b
BLAKE2b-256 0f574649c34c6f10327260ad10e30e9096be07c5f71326a2bf598e375405d2c9

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