smaz-py3


Namesmaz-py3 JSON
Version 1.1.3 PyPI version JSON
download
home_pagehttps://github.com/originell/smaz-py3
SummarySmall string compression using smaz, supports Python 3.
upload_time2023-10-23 23:05:40
maintainer
docs_urlNone
authorLuis Nell
requires_python>=3.7
licenseBSD
keywords smaz string compression
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # smaz-py3

![PyPI - Downloads](https://img.shields.io/pypi/dm/smaz-py3)

Small string compression using [_smaz_](https://github.com/antirez/smaz) compression
algorithm.

This library wraps the original C code, so it should be quite fast. It also has a
testsuite that uses [hypothesis](https://hypothesis.readthedocs.io/en/latest/) 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:

```sh
$ 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.

```python
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?

```python
# 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:

```python
>>> 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](https://github.com/originell/smaz-py3). I am happy for further input!

## Migrating from Python 2 `smaz`

If you have been using the [Python 2 `smaz` library](https://pypi.org/project/smaz/),
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:

```python
>>> 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](https://github.com/antirez/smaz)
and to the [original python 2 wrapper](https://pypi.org/project/smaz/) by Benjamin
Sergeant.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/originell/smaz-py3",
    "name": "smaz-py3",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "smaz string compression",
    "author": "Luis Nell",
    "author_email": "luis@originell.org",
    "download_url": "https://files.pythonhosted.org/packages/43/ea/e861dfbaddba1470afaeadd9d3d2a2d95d11bc9d51a45444d413adf87599/smaz-py3-1.1.3.tar.gz",
    "platform": null,
    "description": "# smaz-py3\n\n![PyPI - Downloads](https://img.shields.io/pypi/dm/smaz-py3)\n\nSmall string compression using [_smaz_](https://github.com/antirez/smaz) compression\nalgorithm.\n\nThis library wraps the original C code, so it should be quite fast. It also has a\ntestsuite that uses [hypothesis](https://hypothesis.readthedocs.io/en/latest/) based\nproperty testing - a fancy way of saying that the tests are run with randomly\ngenerated strings using most of unicode, to better guard against edge cases.\n\n## Why do I need this?\n\nYou are working with tons of short strings (text messages, urls,...) and want to save\nspace.\n\nAccording to the original code and notes, it achieves the best compression with english\nstrings (up to 50%) that do not contain a ton of numbers. However, any other language\nmight just work as well (allegedly still up to 30%).\n\nNote that in certain cases, it is possible that the compression increases the size.\nKeep that in mind and maybe first run some tests. Measuring size is explained in the\nexample below as well.\n\n## How do I use this?\n\nLet's install:\n\n```sh\n$ pip install smaz-py3\n```\n\n_Note_: the `-py3` is important. There is an original release, kudos to Benjamin\nSergeant, but it does not work with Python 3+.\n\nNow, a usage example.\n\n```python\nimport smaz\n# First we compress our example sentence.\ncompressed = smaz.compress(\"The quick brown fox jumps over the lazy dog.\")\n# The output is raw bytes. As can be seen in the decompress() call below.\n# Now, we decompress these raw bytes again. This should return our example sentence.\ndecompressed = smaz.decompress(b'H\\x00\\xfeq&\\x83\\xfek^sA)\\xdc\\xfa\\x00\\xfej&-<\\x95\\xe7\\r\\x0b\\x89\\xdbG\\x18\\x06;n')\n#  This does not fail, which means we have successfully compressed and decompressed\n#  without damaging anything.\nassert decompressed == \"The quick brown fox jumps over the lazy dog.\"\n```\n\nHow much did we compress?\n\n```python\n# First, we get the actual byte size of our example string.\noriginal_size = len(\"The quick brown fox jumps over the lazy dog.\".encode(\"utf-8\"))  # 44 bytes\n# As `compressed` is already raw bytes, we can also call len() on this\ncompressed_size = len(compressed)  # 31 bytes\ncompression_ratio = 1 - compressed_size / original_size  # 0.295\n```\n\nSo we saved about 30% (0.295 \\* 100 and some rounding \ud83d\ude09).\n\nIf the compression ratio would be below 0, we would have actually increased the\nstring. Yes, this can happen. Again, smaz works best on _small_ strings.\n\n### A small note about NULL bytes\n\nCurrently, `smaz-py3` does not support strings with NULL bytes (`\\x00`) in compression:\n\n```python\n>>> import smaz\n>>> smaz.compress(\"The quick brown fox\\x00 jumps over the lazy dog.\")\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\nValueError: embedded null character\n```\n\nMy reasoning behind this is that in most scenarios you want to clean that away\nbeforehand anyways. If you think this is wrong, please open up an\n[issue on github](https://github.com/originell/smaz-py3). I am happy for further input!\n\n## Migrating from Python 2 `smaz`\n\nIf you have been using the [Python 2 `smaz` library](https://pypi.org/project/smaz/),\nthis Python 3 version exposes the same API, so it is a drop-in replacement.\n\n**Important**: While developing this extension, I think I found a bug in the original\nlibrary. Using Python 2.7.16:\n\n```python\n>>> import smaz\n>>> smaz.compress(\"The quick brown fox jumps over the lazy dog.\")\n'H'  # this is wrong.\n>>> small = smaz.compress(\"The quick brown fox jumps over the lazy dog.\")\n>>> smaz.decompress(small)\n'The'  # information lost.\n```\n\nSo, if you are actually upgrading from this, please make sure that you are not\naffected by this. `smaz-py3` is not prone to this bug.\n\nBehind the scenes, smaz uses NULL bytes in compression. However, when converting from\nC back to a Python string object, NULL is used to mark the end of the string. The\nabove sentence, compressed, has the NULL byte right after the `H` (`H\\x00\\xfeq\u2026`).\nThat's why it stops right then and there. Again, `smaz-py3` is not affected by this,\nmostly because I got lucky in choosing this example sentence.\n\n## Credits\n\nCredit where credit is due. First to [antirez's SMAZ compression](https://github.com/antirez/smaz)\nand to the [original python 2 wrapper](https://pypi.org/project/smaz/) by Benjamin\nSergeant.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Small string compression using smaz, supports Python 3.",
    "version": "1.1.3",
    "project_urls": {
        "Download": "https://github.com/originell/smaz-py3/tarball/1.1.3",
        "Homepage": "https://github.com/originell/smaz-py3"
    },
    "split_keywords": [
        "smaz",
        "string",
        "compression"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63e5a1e4f574a507bed407044e68b4a834b61b0be0a91eeb638ac9dd4912f473",
                "md5": "39cc96f7b8873715594b5443f3d8f882",
                "sha256": "fce3bb8edefb4de506a2c7022c1146f775459ddd0a72fc0cfc23743b0680012d"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39cc96f7b8873715594b5443f3d8f882",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10261,
            "upload_time": "2023-10-23T22:44:53",
            "upload_time_iso_8601": "2023-10-23T22:44:53.269892Z",
            "url": "https://files.pythonhosted.org/packages/63/e5/a1e4f574a507bed407044e68b4a834b61b0be0a91eeb638ac9dd4912f473/smaz_py3-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc835fb5bf789affe98b2b6e450b97a4f116d673e74e91fc97c2ee47058f865f",
                "md5": "1e36d8ff4b17c096c4847bcee1f512b7",
                "sha256": "ca069ef617ccd2f6f49af48c9937462e8874d2e73f22e35c9791954d48044520"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e36d8ff4b17c096c4847bcee1f512b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10549,
            "upload_time": "2023-10-23T22:44:54",
            "upload_time_iso_8601": "2023-10-23T22:44:54.731824Z",
            "url": "https://files.pythonhosted.org/packages/dc/83/5fb5bf789affe98b2b6e450b97a4f116d673e74e91fc97c2ee47058f865f/smaz_py3-1.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98df3a836d343677d17ca2b4d3c3e3cb3033307aff9c91f74adc50fce288ab54",
                "md5": "2294f91314993422965a80907f96085d",
                "sha256": "96e6c3fce36b532e08f8625f9a3e94f0eaed45974866d87ee1e2509ca9215ddd"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2294f91314993422965a80907f96085d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 22381,
            "upload_time": "2023-10-23T22:44:55",
            "upload_time_iso_8601": "2023-10-23T22:44:55.737328Z",
            "url": "https://files.pythonhosted.org/packages/98/df/3a836d343677d17ca2b4d3c3e3cb3033307aff9c91f74adc50fce288ab54/smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c00df533a7a2c4489a9fda0e57359eb5d67c57aeb57983a4cc9419ae5ad170d",
                "md5": "443833943e1d296d9194c9a3c1dcf1c1",
                "sha256": "34b269088bf9911b5b5acf02f609e82c8ae0b0b62ab1845b55ce53ca8cfbc96d"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "443833943e1d296d9194c9a3c1dcf1c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 22910,
            "upload_time": "2023-10-23T22:44:57",
            "upload_time_iso_8601": "2023-10-23T22:44:57.118139Z",
            "url": "https://files.pythonhosted.org/packages/7c/00/df533a7a2c4489a9fda0e57359eb5d67c57aeb57983a4cc9419ae5ad170d/smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd37fd1a2c08d9e5a63be781d844fb38a6e93aa81fcac1c7b22018a378afa712",
                "md5": "c26549e56860f30323cda6f2bff271f1",
                "sha256": "8db3ddf5a46c4729c83a887a5883b3448935df6ec8ea1e3ebcbe874aeaec9ef2"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c26549e56860f30323cda6f2bff271f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 22706,
            "upload_time": "2023-10-23T22:44:58",
            "upload_time_iso_8601": "2023-10-23T22:44:58.201854Z",
            "url": "https://files.pythonhosted.org/packages/bd/37/fd1a2c08d9e5a63be781d844fb38a6e93aa81fcac1c7b22018a378afa712/smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a82271d4ab88cf011da4567dc6fad02d61fb8cdf22fd5a336575875f5bf6a49d",
                "md5": "3f9dc397fcc066b5de1d14023a92bebe",
                "sha256": "0c47838afd04b551e76f538d375867c1f0e09d2181673c87b0fd2a92b2d3d085"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f9dc397fcc066b5de1d14023a92bebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 22085,
            "upload_time": "2023-10-23T22:44:59",
            "upload_time_iso_8601": "2023-10-23T22:44:59.857049Z",
            "url": "https://files.pythonhosted.org/packages/a8/22/71d4ab88cf011da4567dc6fad02d61fb8cdf22fd5a336575875f5bf6a49d/smaz_py3-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea888ae442cef4020a03b5f678605b0cb5328b0df51eb7e2abf7b7e7d9aa81eb",
                "md5": "114ac069c0a0139c7f47f79f1a786605",
                "sha256": "348d17e38a5d8575ee29a2e5f2e864aadcf0f27d8448f1a031223ef45c7b95a6"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "114ac069c0a0139c7f47f79f1a786605",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 20060,
            "upload_time": "2023-10-23T22:45:01",
            "upload_time_iso_8601": "2023-10-23T22:45:01.636397Z",
            "url": "https://files.pythonhosted.org/packages/ea/88/8ae442cef4020a03b5f678605b0cb5328b0df51eb7e2abf7b7e7d9aa81eb/smaz_py3-1.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21a501180336bc2a5434113cd880453c716d16dc1969c2d91080411a996007e0",
                "md5": "d5f3148c7df78c8c4a6fd5274dcb3c77",
                "sha256": "5fc69cc8f2d40aa18380716258d9d469271d6cbeee1b7e55a5ad0518db091b08"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5f3148c7df78c8c4a6fd5274dcb3c77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 27250,
            "upload_time": "2023-10-23T22:45:03",
            "upload_time_iso_8601": "2023-10-23T22:45:03.295542Z",
            "url": "https://files.pythonhosted.org/packages/21/a5/01180336bc2a5434113cd880453c716d16dc1969c2d91080411a996007e0/smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18935b0049a7b85face94671fb13e4371ce7177b4d49d9e8e45e4cd0032652c1",
                "md5": "f873de375436d440eb34bc854b6778fd",
                "sha256": "d66cc4129bfdf58ee3aa81e5e78986d43d6b1360dcc5b10a020581b0bcc96b2c"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f873de375436d440eb34bc854b6778fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 25005,
            "upload_time": "2023-10-23T22:45:05",
            "upload_time_iso_8601": "2023-10-23T22:45:05.099227Z",
            "url": "https://files.pythonhosted.org/packages/18/93/5b0049a7b85face94671fb13e4371ce7177b4d49d9e8e45e4cd0032652c1/smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a15f57f6c1220b2c1fbb7f79a043e025ca4cf85e1e6feee357f1867ff08dccf",
                "md5": "2c2d10942fb0674ac35beaf428ac00da",
                "sha256": "6b8dda1d1b111851c313d8f7fc40a229c7eea9f39e722fbd72f9a0c4d3e12d6e"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2c2d10942fb0674ac35beaf428ac00da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 27981,
            "upload_time": "2023-10-23T22:45:06",
            "upload_time_iso_8601": "2023-10-23T22:45:06.622287Z",
            "url": "https://files.pythonhosted.org/packages/8a/15/f57f6c1220b2c1fbb7f79a043e025ca4cf85e1e6feee357f1867ff08dccf/smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f46b568aa6e02b5b43d71b14dc9ba02ac3092d7bb0b0d6bb7801c61c1c70b211",
                "md5": "cc4be32a1bb93407e4c5e8b1357fc872",
                "sha256": "5d9ea1972f411acfa130c564c88bf6b01475674dc3897117a0b1829923cf12a0"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "cc4be32a1bb93407e4c5e8b1357fc872",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 27263,
            "upload_time": "2023-10-23T22:45:07",
            "upload_time_iso_8601": "2023-10-23T22:45:07.889148Z",
            "url": "https://files.pythonhosted.org/packages/f4/6b/568aa6e02b5b43d71b14dc9ba02ac3092d7bb0b0d6bb7801c61c1c70b211/smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a8d7a4672c040caa9651389105f0bba341d9c46cd50bb4f51543974077f866",
                "md5": "37ae43235757f0c05ea7dfe21006c395",
                "sha256": "2b217cc76f757a6dc7a378cc5f5919807d60362b965aa3d1c9c4d81e0d9e75ec"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37ae43235757f0c05ea7dfe21006c395",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 26865,
            "upload_time": "2023-10-23T22:45:09",
            "upload_time_iso_8601": "2023-10-23T22:45:09.379462Z",
            "url": "https://files.pythonhosted.org/packages/67/a8/d7a4672c040caa9651389105f0bba341d9c46cd50bb4f51543974077f866/smaz_py3-1.1.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6ee841c8dcc92687ab1adb15f7ce5868f9bc34b9e6b1b1e051bf834ab2229d0",
                "md5": "d76e5e5304b83361c3f88c6456a39355",
                "sha256": "55e69abd760d52941f3abd7abcd1b8b235abfdac8c3a728f949c3906d40cb1e8"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d76e5e5304b83361c3f88c6456a39355",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 14243,
            "upload_time": "2023-10-23T22:45:10",
            "upload_time_iso_8601": "2023-10-23T22:45:10.518802Z",
            "url": "https://files.pythonhosted.org/packages/e6/ee/841c8dcc92687ab1adb15f7ce5868f9bc34b9e6b1b1e051bf834ab2229d0/smaz_py3-1.1.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43f20cff381d47b3fab483763b9234d33a6c13c97bdc11de4819f4b4b22a605a",
                "md5": "b696dc38b8cc10fcff4feedeef3b13ba",
                "sha256": "2a6c26bd6a83dd14f7cd81f1f1bed40c8b2ef845385fc3100907c16678b537f0"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b696dc38b8cc10fcff4feedeef3b13ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 15403,
            "upload_time": "2023-10-23T22:45:11",
            "upload_time_iso_8601": "2023-10-23T22:45:11.931261Z",
            "url": "https://files.pythonhosted.org/packages/43/f2/0cff381d47b3fab483763b9234d33a6c13c97bdc11de4819f4b4b22a605a/smaz_py3-1.1.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c6eb6f21cb222f905c2796d8b1274098f6d34a7d1eda56cf12fc7af813ab277",
                "md5": "b25aa7ea73e3b0b136b32bf9d608d0e7",
                "sha256": "12ed9ad8b07571b045dc446591b7590777c8e4110967b35c3a6106669bd9d338"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b25aa7ea73e3b0b136b32bf9d608d0e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10261,
            "upload_time": "2023-10-23T22:45:12",
            "upload_time_iso_8601": "2023-10-23T22:45:12.906989Z",
            "url": "https://files.pythonhosted.org/packages/7c/6e/b6f21cb222f905c2796d8b1274098f6d34a7d1eda56cf12fc7af813ab277/smaz_py3-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a06240035c717c5e1c8fc99fc380341ebec65dcb7f928a814ede699f04304e42",
                "md5": "7345cdcafb1acbf2f90d37f715810696",
                "sha256": "8c5b0c93d294b608f4373bd73c852365071ced8e33140655512a3168287941a7"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7345cdcafb1acbf2f90d37f715810696",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10552,
            "upload_time": "2023-10-23T22:45:14",
            "upload_time_iso_8601": "2023-10-23T22:45:14.567147Z",
            "url": "https://files.pythonhosted.org/packages/a0/62/40035c717c5e1c8fc99fc380341ebec65dcb7f928a814ede699f04304e42/smaz_py3-1.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1edaa4fb97117ecade2cbe99e16fa32a60fc2e9c3fc226e06d95398280ed822",
                "md5": "fe5ae02a00e2985da1910dd153f6169b",
                "sha256": "c31082a0991154c6cae20ee0a536f1792086347c129f7ee8a4c374e77c238345"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe5ae02a00e2985da1910dd153f6169b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 22379,
            "upload_time": "2023-10-23T22:45:15",
            "upload_time_iso_8601": "2023-10-23T22:45:15.766485Z",
            "url": "https://files.pythonhosted.org/packages/f1/ed/aa4fb97117ecade2cbe99e16fa32a60fc2e9c3fc226e06d95398280ed822/smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7a6210c1ff5f316661939a65484ba652886572ef21898fc326d2b7c1261f400",
                "md5": "21fd6e609bc94359a99e4860a40791a9",
                "sha256": "d8ea731b86d815bb88036bfaaad9ca5ca15942ae4e1c9e59d9795254f9a16834"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "21fd6e609bc94359a99e4860a40791a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 22908,
            "upload_time": "2023-10-23T22:45:17",
            "upload_time_iso_8601": "2023-10-23T22:45:17.488836Z",
            "url": "https://files.pythonhosted.org/packages/b7/a6/210c1ff5f316661939a65484ba652886572ef21898fc326d2b7c1261f400/smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "998d27549ef17109560743fcdfc49db14f9d50474ec762b61fad6a381060b63c",
                "md5": "6cf81718966561d2d14dccdfb962d3bb",
                "sha256": "b6443739a25f0578bd12969ee89aec3a069f41173b32b51b100151c9c237b596"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6cf81718966561d2d14dccdfb962d3bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 22707,
            "upload_time": "2023-10-23T22:45:19",
            "upload_time_iso_8601": "2023-10-23T22:45:19.022486Z",
            "url": "https://files.pythonhosted.org/packages/99/8d/27549ef17109560743fcdfc49db14f9d50474ec762b61fad6a381060b63c/smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e5c535e95a4e416e7f236d3087995fa6741189752b0ffa8dab532f3a119af95",
                "md5": "85f0160b280441a9e84d20bda4e605a4",
                "sha256": "ff5c5048e82565fdb7a07c1e7d3218256463f0a8f08aba46c01ea4e368ffc3b3"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85f0160b280441a9e84d20bda4e605a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 22074,
            "upload_time": "2023-10-23T22:45:20",
            "upload_time_iso_8601": "2023-10-23T22:45:20.200901Z",
            "url": "https://files.pythonhosted.org/packages/3e/5c/535e95a4e416e7f236d3087995fa6741189752b0ffa8dab532f3a119af95/smaz_py3-1.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57334f6c3f27781c9921d1cedad6d43fe8d7619c6885f66bb9391ad60de205da",
                "md5": "994ad24423ce19272920e3e20b5de68f",
                "sha256": "e3e585d29de8a09688e225f773f2afe40a4510912f1de631adc8b95d33ce35d7"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "994ad24423ce19272920e3e20b5de68f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 20064,
            "upload_time": "2023-10-23T22:45:21",
            "upload_time_iso_8601": "2023-10-23T22:45:21.604700Z",
            "url": "https://files.pythonhosted.org/packages/57/33/4f6c3f27781c9921d1cedad6d43fe8d7619c6885f66bb9391ad60de205da/smaz_py3-1.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49259f110c81eb03095b10af9cf654621a6d94d354019d75ef7d0a334e42c413",
                "md5": "5f02fa25feb796873ff49ba7c4c475e4",
                "sha256": "a6aa9380bc3c53cdebf7542ce8bdb5def0aa69232cccde9baf52687343d3ecc6"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5f02fa25feb796873ff49ba7c4c475e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28111,
            "upload_time": "2023-10-23T22:45:22",
            "upload_time_iso_8601": "2023-10-23T22:45:22.617139Z",
            "url": "https://files.pythonhosted.org/packages/49/25/9f110c81eb03095b10af9cf654621a6d94d354019d75ef7d0a334e42c413/smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d45a3e8be027f0e0281e7a9bcb58566cf95184898413d9feb4e7be99d506dfa2",
                "md5": "5888cb6dca029b1e9650cf30a94a1f34",
                "sha256": "127bcbd78af4fba0580d4093f4f4b3774d3df91094332ce22f55d19de9bb9dc3"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5888cb6dca029b1e9650cf30a94a1f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 25876,
            "upload_time": "2023-10-23T23:04:17",
            "upload_time_iso_8601": "2023-10-23T23:04:17.708494Z",
            "url": "https://files.pythonhosted.org/packages/d4/5a/3e8be027f0e0281e7a9bcb58566cf95184898413d9feb4e7be99d506dfa2/smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a91ce8ab2f2b77f4035f625b00b300213ab2cfa0b03f32ae2684b6d1cda488c",
                "md5": "13b83e7a73865a0185624d82d455f72c",
                "sha256": "bfdfa6964047a564386e020c0f9ed3dbb58004ef8802235205c4c9ddf49f269d"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "13b83e7a73865a0185624d82d455f72c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28841,
            "upload_time": "2023-10-23T23:04:19",
            "upload_time_iso_8601": "2023-10-23T23:04:19.215314Z",
            "url": "https://files.pythonhosted.org/packages/6a/91/ce8ab2f2b77f4035f625b00b300213ab2cfa0b03f32ae2684b6d1cda488c/smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cee532ba13a52a1489912c89a67b5c7a420113f19895b40498152fceb3322ef1",
                "md5": "362b7000082cf7c5b274abfcac3ce92c",
                "sha256": "7f800b901438169e6fbda406d160af2221449353e906d7e1bb480ed5ee22064b"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "362b7000082cf7c5b274abfcac3ce92c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28113,
            "upload_time": "2023-10-23T23:04:20",
            "upload_time_iso_8601": "2023-10-23T23:04:20.814404Z",
            "url": "https://files.pythonhosted.org/packages/ce/e5/32ba13a52a1489912c89a67b5c7a420113f19895b40498152fceb3322ef1/smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36677f8ab43ab7b67768251f6ee73425ae17f6f64e6b534005e58535ab1b0137",
                "md5": "2886d83a4eabcaf1c086554ce1916a4c",
                "sha256": "5ba92bf0994ec34292f047a2deae8235845d8df07aadd59cd5ab39cb87b021d6"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2886d83a4eabcaf1c086554ce1916a4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 27732,
            "upload_time": "2023-10-23T23:04:21",
            "upload_time_iso_8601": "2023-10-23T23:04:21.875174Z",
            "url": "https://files.pythonhosted.org/packages/36/67/7f8ab43ab7b67768251f6ee73425ae17f6f64e6b534005e58535ab1b0137/smaz_py3-1.1.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0635f8f737d1169e4b8681fd1dffe1472aa7c99f5344b53ed81ed45ada6db3d6",
                "md5": "83b5ff032e7113178bda41e3a374a49e",
                "sha256": "7a7fcf617c553eae51a19b28c2ea3c4801cb9133b6f5d9b6380e3dfab5689ddf"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "83b5ff032e7113178bda41e3a374a49e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 14240,
            "upload_time": "2023-10-23T23:04:23",
            "upload_time_iso_8601": "2023-10-23T23:04:23.624035Z",
            "url": "https://files.pythonhosted.org/packages/06/35/f8f737d1169e4b8681fd1dffe1472aa7c99f5344b53ed81ed45ada6db3d6/smaz_py3-1.1.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c8d0e6605eadfae70f1e800930bf233cbb55f51d7f210acb48d398b07be2703",
                "md5": "f5bc18572789a8a773fcb97fed9d1fd3",
                "sha256": "7a2fb6dbdd42771c1792cfdf75295864d5523f99119069cff0c35bf9e9cc15d6"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5bc18572789a8a773fcb97fed9d1fd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 15405,
            "upload_time": "2023-10-23T23:04:25",
            "upload_time_iso_8601": "2023-10-23T23:04:25.431132Z",
            "url": "https://files.pythonhosted.org/packages/7c/8d/0e6605eadfae70f1e800930bf233cbb55f51d7f210acb48d398b07be2703/smaz_py3-1.1.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e90c04a23dd8450c7112f1547f2349aa8709437484f4f9d1b72d79419a3cec6",
                "md5": "72edb35b75d1f55e6d493f4014d96354",
                "sha256": "6fa55d873924fff153650330c70469d0a48d87f4c6225d0b74a64a389971eec2"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72edb35b75d1f55e6d493f4014d96354",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 10260,
            "upload_time": "2023-10-23T23:04:26",
            "upload_time_iso_8601": "2023-10-23T23:04:26.490945Z",
            "url": "https://files.pythonhosted.org/packages/3e/90/c04a23dd8450c7112f1547f2349aa8709437484f4f9d1b72d79419a3cec6/smaz_py3-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6ac90f2256a64f8a03ca2a5a90fde784b1908b9817c54eab01809c6b2bb322e",
                "md5": "704f576f65ae1bf02f4ca0128b918c9e",
                "sha256": "63c72134fa62232b5e62e7627018af658d14a10d099e71f175f8a61a08e65239"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "704f576f65ae1bf02f4ca0128b918c9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 22796,
            "upload_time": "2023-10-23T23:04:27",
            "upload_time_iso_8601": "2023-10-23T23:04:27.948445Z",
            "url": "https://files.pythonhosted.org/packages/c6/ac/90f2256a64f8a03ca2a5a90fde784b1908b9817c54eab01809c6b2bb322e/smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0edddb4f733f55bb5cca4cbcee686834932ad421fdce6e949fe0b3c033d742c",
                "md5": "04ba83c69d890600fb1ca63036902d0d",
                "sha256": "5f7a952f17bff8909fced2e1a11b1e8ae6f00a62c20a31d92434076b161085b6"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "04ba83c69d890600fb1ca63036902d0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 23339,
            "upload_time": "2023-10-23T23:04:29",
            "upload_time_iso_8601": "2023-10-23T23:04:29.573630Z",
            "url": "https://files.pythonhosted.org/packages/e0/ed/ddb4f733f55bb5cca4cbcee686834932ad421fdce6e949fe0b3c033d742c/smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12c7a46a1be8b5baa25fc428c05a5ed82d66c492dd6c2ed2f080075caad35204",
                "md5": "e0b7630c5a3929a0455a5df82bd2e0e8",
                "sha256": "ac697fff5d3679844416554e1e572d0cbfb1e790a8071fd71b40538e08ba96cf"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e0b7630c5a3929a0455a5df82bd2e0e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 23147,
            "upload_time": "2023-10-23T23:04:30",
            "upload_time_iso_8601": "2023-10-23T23:04:30.723460Z",
            "url": "https://files.pythonhosted.org/packages/12/c7/a46a1be8b5baa25fc428c05a5ed82d66c492dd6c2ed2f080075caad35204/smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bacefb79793890a7dd52a531d7be7129ccf0174906949223ea848d04fd198ca",
                "md5": "1c3b7c8750063254d9b95289863fcc8d",
                "sha256": "3de9e101fb111c064d6a0b3ac4e087c9b9a76d1540abb14df9e9bb5010b62e15"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c3b7c8750063254d9b95289863fcc8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 22495,
            "upload_time": "2023-10-23T23:04:31",
            "upload_time_iso_8601": "2023-10-23T23:04:31.984011Z",
            "url": "https://files.pythonhosted.org/packages/1b/ac/efb79793890a7dd52a531d7be7129ccf0174906949223ea848d04fd198ca/smaz_py3-1.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9d77b7b98c2c7158793c29f9b25b3b9733dccadc1ca5edb97ffa03ee4f3f150",
                "md5": "4b4a5fd0a940e210947939081618b7a5",
                "sha256": "73e0a108f88dd28d90b743b1394adbdf559e45c1138fc5e089b25a9f31353133"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4b4a5fd0a940e210947939081618b7a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 20484,
            "upload_time": "2023-10-23T23:04:33",
            "upload_time_iso_8601": "2023-10-23T23:04:33.035674Z",
            "url": "https://files.pythonhosted.org/packages/d9/d7/7b7b98c2c7158793c29f9b25b3b9733dccadc1ca5edb97ffa03ee4f3f150/smaz_py3-1.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beef3843adcf11d77a75ae72045437637c60088cbd7f03d979d33f7e203d5cc9",
                "md5": "81fe266f1e15e03d562a5c93604eeb60",
                "sha256": "83505782353063d6aea23fa03fc73f5c832e2f30bbe0e919d79a765f94ff66fe"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81fe266f1e15e03d562a5c93604eeb60",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 28365,
            "upload_time": "2023-10-23T23:04:34",
            "upload_time_iso_8601": "2023-10-23T23:04:34.559522Z",
            "url": "https://files.pythonhosted.org/packages/be/ef/3843adcf11d77a75ae72045437637c60088cbd7f03d979d33f7e203d5cc9/smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "072179479b246c2c12727cbb4ef27c6766da1030d5a6c9c3ecdbdb3c58192991",
                "md5": "2801cf7591e51dc5f02420326d23972d",
                "sha256": "ffc810164872e94b9d0d140fe9c04086e058180b4ba260711ced734b6dbdc324"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2801cf7591e51dc5f02420326d23972d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 26134,
            "upload_time": "2023-10-23T23:04:35",
            "upload_time_iso_8601": "2023-10-23T23:04:35.912751Z",
            "url": "https://files.pythonhosted.org/packages/07/21/79479b246c2c12727cbb4ef27c6766da1030d5a6c9c3ecdbdb3c58192991/smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85494927cc7f0eb8524405fe4d661b226c6bc096038dd4f5d07423cc78c9623a",
                "md5": "8779e674d603dfebe1983126166bb711",
                "sha256": "d141a798f58a3949ddafe4c13d6253a1fc5f2af4a7caccee0925a89ee181a109"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8779e674d603dfebe1983126166bb711",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29045,
            "upload_time": "2023-10-23T23:04:36",
            "upload_time_iso_8601": "2023-10-23T23:04:36.941149Z",
            "url": "https://files.pythonhosted.org/packages/85/49/4927cc7f0eb8524405fe4d661b226c6bc096038dd4f5d07423cc78c9623a/smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2f3c1279a53e8e7a3e5f403ab3276e0c7a14ea0c446e179367b59d5e5d38d2a",
                "md5": "6660b354b4b177c55cbfa3586fb3ada2",
                "sha256": "e88f3975cefb1bea4b49af08623ca1f641d5ec7e34fd59de9bf4ed9e075f86ac"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "6660b354b4b177c55cbfa3586fb3ada2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 28423,
            "upload_time": "2023-10-23T23:04:38",
            "upload_time_iso_8601": "2023-10-23T23:04:38.661151Z",
            "url": "https://files.pythonhosted.org/packages/a2/f3/c1279a53e8e7a3e5f403ab3276e0c7a14ea0c446e179367b59d5e5d38d2a/smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fd3b6650c7fe786db82b20133f3fb2def1c9cf5c565673c19defa1a19e42e4e",
                "md5": "be2ed228cbef6a69c1f12f008eae4c03",
                "sha256": "05cf109bfaca44e2e864236e20eb7ac0dbcfd27da186b5457ca196928c215456"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be2ed228cbef6a69c1f12f008eae4c03",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 27978,
            "upload_time": "2023-10-23T23:04:40",
            "upload_time_iso_8601": "2023-10-23T23:04:40.226844Z",
            "url": "https://files.pythonhosted.org/packages/5f/d3/b6650c7fe786db82b20133f3fb2def1c9cf5c565673c19defa1a19e42e4e/smaz_py3-1.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ce9151613bcdb347494caf65177101abc87427715c0c58fd9f350565996c4b2",
                "md5": "6ec8659f8129685100bd91411915dad7",
                "sha256": "8dc066459efa2b1172dd088e260f7b9f44bf61413a4e21e3722aa5e7a13df578"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "6ec8659f8129685100bd91411915dad7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 14243,
            "upload_time": "2023-10-23T23:04:41",
            "upload_time_iso_8601": "2023-10-23T23:04:41.765725Z",
            "url": "https://files.pythonhosted.org/packages/9c/e9/151613bcdb347494caf65177101abc87427715c0c58fd9f350565996c4b2/smaz_py3-1.1.3-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e15dc33d7af754450629880f3844263b511c739351046a2e0306be460b70c325",
                "md5": "197fa5ab939912b738984f33d7ca1e8a",
                "sha256": "69f5eb4a7b53d6875fe29c38611d520efdfc82640330af36a09debf4bf3cd581"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "197fa5ab939912b738984f33d7ca1e8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 15401,
            "upload_time": "2023-10-23T23:04:42",
            "upload_time_iso_8601": "2023-10-23T23:04:42.866820Z",
            "url": "https://files.pythonhosted.org/packages/e1/5d/c33d7af754450629880f3844263b511c739351046a2e0306be460b70c325/smaz_py3-1.1.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0427a063fd98926765b95d5a1a998849cd6ef6281b25071861757cb5005c4e8d",
                "md5": "a30498207e99c4f122b35210c4f5707a",
                "sha256": "e913d63dcc8856aff97f2c56978be4f9088ec6c4fbc05fa684a4f47a31279b8e"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a30498207e99c4f122b35210c4f5707a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10255,
            "upload_time": "2023-10-23T23:04:43",
            "upload_time_iso_8601": "2023-10-23T23:04:43.880052Z",
            "url": "https://files.pythonhosted.org/packages/04/27/a063fd98926765b95d5a1a998849cd6ef6281b25071861757cb5005c4e8d/smaz_py3-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a71bdf1b7598827bfa3f075dbe1825c5ee9f441757167b48d0224d752984871",
                "md5": "4267e5670f7bdc909b79033142e5173f",
                "sha256": "183fdf95a6e0f7fc0526abb09f3df4714a37e9292ac7108f8392c9c97b93ee74"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4267e5670f7bdc909b79033142e5173f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10544,
            "upload_time": "2023-10-23T23:04:45",
            "upload_time_iso_8601": "2023-10-23T23:04:45.645541Z",
            "url": "https://files.pythonhosted.org/packages/5a/71/bdf1b7598827bfa3f075dbe1825c5ee9f441757167b48d0224d752984871/smaz_py3-1.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc293670e6599b401143be7e8d16ed7ffd8c5488d0827766cdb92a9951f2ac74",
                "md5": "6d803218de974387d1a1eda18810d2ce",
                "sha256": "978770b34fc78fa9543d516202b0b73bf73d5c1c3444fd0982c38afc0958dd55"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d803218de974387d1a1eda18810d2ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 22792,
            "upload_time": "2023-10-23T23:04:46",
            "upload_time_iso_8601": "2023-10-23T23:04:46.991770Z",
            "url": "https://files.pythonhosted.org/packages/bc/29/3670e6599b401143be7e8d16ed7ffd8c5488d0827766cdb92a9951f2ac74/smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b690ea1b28240f3e9d27815f9aa4bdb5af5b4efe9f3890aff001ff6ae5e48456",
                "md5": "b355bae4d5b919d1a51b27abde7bafae",
                "sha256": "470245d70f1bbc81d7773f02444cb193f05fd8be25455fe1170beca469cc041e"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b355bae4d5b919d1a51b27abde7bafae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 23333,
            "upload_time": "2023-10-23T23:04:48",
            "upload_time_iso_8601": "2023-10-23T23:04:48.101066Z",
            "url": "https://files.pythonhosted.org/packages/b6/90/ea1b28240f3e9d27815f9aa4bdb5af5b4efe9f3890aff001ff6ae5e48456/smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "590d33c727814357412418702ad76a2cfafefbf3fd60fb28369bbcfc0935acf1",
                "md5": "46f4a4d421a7441e454d1a907cd84ab5",
                "sha256": "6c9cbb972d418606c70e725015b5b2d7774566fbea4977f9fcaa40e381a56fde"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "46f4a4d421a7441e454d1a907cd84ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 23120,
            "upload_time": "2023-10-23T23:04:49",
            "upload_time_iso_8601": "2023-10-23T23:04:49.387046Z",
            "url": "https://files.pythonhosted.org/packages/59/0d/33c727814357412418702ad76a2cfafefbf3fd60fb28369bbcfc0935acf1/smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ee027c15eaee0fdb3fafabdf9e8627946d22449eab8b49eb850c10802783261",
                "md5": "7307aa5c16943e10d7d149686e25e7e8",
                "sha256": "3e456da4639128ed5c7792240330c9a322af0cc0909b6488e3a5256d04bd5a95"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7307aa5c16943e10d7d149686e25e7e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 22488,
            "upload_time": "2023-10-23T23:04:50",
            "upload_time_iso_8601": "2023-10-23T23:04:50.400103Z",
            "url": "https://files.pythonhosted.org/packages/2e/e0/27c15eaee0fdb3fafabdf9e8627946d22449eab8b49eb850c10802783261/smaz_py3-1.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5e95334ca6ddea5ebe26b0737d453ba64bbcfb901b27ae6ee8bc3e5c2913160",
                "md5": "4a71194f816f4147a18fbf396377da43",
                "sha256": "169e3fc0519d5cc1250f9cf0691ffd856e8805f42eb933dae26d6177bfcea648"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4a71194f816f4147a18fbf396377da43",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 20474,
            "upload_time": "2023-10-23T23:04:52",
            "upload_time_iso_8601": "2023-10-23T23:04:52.122279Z",
            "url": "https://files.pythonhosted.org/packages/b5/e9/5334ca6ddea5ebe26b0737d453ba64bbcfb901b27ae6ee8bc3e5c2913160/smaz_py3-1.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9413d31e995001b1f664b8ea7a1211abf8cb513b1c09a37c4bea1fe01db54a8",
                "md5": "7dbae097203f09f28cd9116b9cfd1127",
                "sha256": "ba7bdcb5a463c70d738551fe7def1d45ed428fe807aec3a0599ab3c71929cce5"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7dbae097203f09f28cd9116b9cfd1127",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 27288,
            "upload_time": "2023-10-23T23:04:53",
            "upload_time_iso_8601": "2023-10-23T23:04:53.545758Z",
            "url": "https://files.pythonhosted.org/packages/f9/41/3d31e995001b1f664b8ea7a1211abf8cb513b1c09a37c4bea1fe01db54a8/smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b46e0f986565333273a7c901ce8411d046846142046b20a6493c68647d9ceaa",
                "md5": "7ee1d58d49e4d96fee8763aa436daa86",
                "sha256": "87ab6e431e88ceeba2fbb38fe1171877c9be07620b24730e865845d75e8a9529"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7ee1d58d49e4d96fee8763aa436daa86",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 25045,
            "upload_time": "2023-10-23T23:04:54",
            "upload_time_iso_8601": "2023-10-23T23:04:54.667260Z",
            "url": "https://files.pythonhosted.org/packages/0b/46/e0f986565333273a7c901ce8411d046846142046b20a6493c68647d9ceaa/smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54b90aba2fa112408cef736b51452a544b944020edaa1209e36ad4f64bb8344c",
                "md5": "f104b667bdce94e65e808c82cf61709a",
                "sha256": "1f7a3f869c273de9b0bfe4b7b7ff405cce347be5ce237b341288eec3a1af981e"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f104b667bdce94e65e808c82cf61709a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 28004,
            "upload_time": "2023-10-23T23:04:55",
            "upload_time_iso_8601": "2023-10-23T23:04:55.736847Z",
            "url": "https://files.pythonhosted.org/packages/54/b9/0aba2fa112408cef736b51452a544b944020edaa1209e36ad4f64bb8344c/smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0baf05bfd1efd7fd3df92293c955c8e766d0aa2b31befeb06330866d9188de0c",
                "md5": "ffd35bcec842e857bcfb02eb766c02c9",
                "sha256": "b2fc0ed2eb47293e4e11299e227186275cec7d8fb7ac7d10cfc5b03b3762fb5c"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "ffd35bcec842e857bcfb02eb766c02c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 27293,
            "upload_time": "2023-10-23T23:04:56",
            "upload_time_iso_8601": "2023-10-23T23:04:56.739876Z",
            "url": "https://files.pythonhosted.org/packages/0b/af/05bfd1efd7fd3df92293c955c8e766d0aa2b31befeb06330866d9188de0c/smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63bc8e0f667a9587b2d5f4f914244043b6562368a38bf91ed01aa6b99357b1db",
                "md5": "092651f2ecb0eb719ac2af1c1be66672",
                "sha256": "c7920f33f24ac452783c5bc4e9c3a4dd63cfc0f9bc7df9914ea825cb9fc451e9"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "092651f2ecb0eb719ac2af1c1be66672",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 26902,
            "upload_time": "2023-10-23T23:04:57",
            "upload_time_iso_8601": "2023-10-23T23:04:57.755577Z",
            "url": "https://files.pythonhosted.org/packages/63/bc/8e0f667a9587b2d5f4f914244043b6562368a38bf91ed01aa6b99357b1db/smaz_py3-1.1.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a982c2d238bcec58c146a3ce7b6b923ba2f70f1303df45f3463cbfdc70be01a",
                "md5": "dd211b67c029ebc7f0330cb5cac868d7",
                "sha256": "3d8cfb53eff740e6f881b2e05822fc467ae1c451e10052d028243229965be71f"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "dd211b67c029ebc7f0330cb5cac868d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 14242,
            "upload_time": "2023-10-23T23:04:58",
            "upload_time_iso_8601": "2023-10-23T23:04:58.888359Z",
            "url": "https://files.pythonhosted.org/packages/7a/98/2c2d238bcec58c146a3ce7b6b923ba2f70f1303df45f3463cbfdc70be01a/smaz_py3-1.1.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "071763f421af228b8424176a4dd2596e280ffd320582aa60c7684fa25a430858",
                "md5": "8d2aacb5d7f6cb1b4b6c9636c42a230c",
                "sha256": "d853e28b6415069ade09c8eb505874e1fe5658ffce18cdd645d81edfedfb6157"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d2aacb5d7f6cb1b4b6c9636c42a230c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 15402,
            "upload_time": "2023-10-23T23:05:00",
            "upload_time_iso_8601": "2023-10-23T23:05:00.064677Z",
            "url": "https://files.pythonhosted.org/packages/07/17/63f421af228b8424176a4dd2596e280ffd320582aa60c7684fa25a430858/smaz_py3-1.1.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b82b12203dc1da506fc5937580c0dcaf30e647430549e24503be0ff9c8f7fd4",
                "md5": "4f19f5473e606f1757d129c04f404963",
                "sha256": "407f32e4b8a02ee35d1ffa85124f139d181216cb49fd66cc88d21f0b310e23c0"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f19f5473e606f1757d129c04f404963",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10255,
            "upload_time": "2023-10-23T23:05:02",
            "upload_time_iso_8601": "2023-10-23T23:05:02.073393Z",
            "url": "https://files.pythonhosted.org/packages/1b/82/b12203dc1da506fc5937580c0dcaf30e647430549e24503be0ff9c8f7fd4/smaz_py3-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e309faa8fbfa486b36605bbcad4a8496a7fe3472b6025854d0ad5dd618efb627",
                "md5": "dfc46fe4c3abc612e23e6dd7a31103f8",
                "sha256": "b2d65961bfdb37186f248a56005f78169415a771674438719aa267cd1cf3db04"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dfc46fe4c3abc612e23e6dd7a31103f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10544,
            "upload_time": "2023-10-23T23:05:03",
            "upload_time_iso_8601": "2023-10-23T23:05:03.874055Z",
            "url": "https://files.pythonhosted.org/packages/e3/09/faa8fbfa486b36605bbcad4a8496a7fe3472b6025854d0ad5dd618efb627/smaz_py3-1.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2e4c3211c01e05b0fe474540dd180d2fb2d4c5fbced8397c9519525f5d6f9ce",
                "md5": "ffbcbd575322a04f2d73c8cb860b6762",
                "sha256": "f3ff7c444a92f700fe5bc0c221295d7494c8178277c920a79a6818c54c0cda7f"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ffbcbd575322a04f2d73c8cb860b6762",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 22213,
            "upload_time": "2023-10-23T23:05:05",
            "upload_time_iso_8601": "2023-10-23T23:05:05.775289Z",
            "url": "https://files.pythonhosted.org/packages/f2/e4/c3211c01e05b0fe474540dd180d2fb2d4c5fbced8397c9519525f5d6f9ce/smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60c97b09ae8a0db9f612e09fbaa4840159174b6edb10f7205fe65b7c6cca32ae",
                "md5": "5180a896d9fc275cba950088a0d363c1",
                "sha256": "b7c36e19031e4202582365ba51f94e8b9fb7d97a4fc9f2ea8995d2afcc204750"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5180a896d9fc275cba950088a0d363c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 22750,
            "upload_time": "2023-10-23T23:05:07",
            "upload_time_iso_8601": "2023-10-23T23:05:07.053959Z",
            "url": "https://files.pythonhosted.org/packages/60/c9/7b09ae8a0db9f612e09fbaa4840159174b6edb10f7205fe65b7c6cca32ae/smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0647d19e6611aa3b3a8bc14296a1db1137f92b813453e7a21ff5deb8384b49c4",
                "md5": "3968725f9abeb5e2d8f4adcb0ce7a6d2",
                "sha256": "945ac4524924f87fcfbe1d9b1d3ad0a6b8d85685f948171a0b85e44d6dd31687"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3968725f9abeb5e2d8f4adcb0ce7a6d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 22546,
            "upload_time": "2023-10-23T23:05:08",
            "upload_time_iso_8601": "2023-10-23T23:05:08.832946Z",
            "url": "https://files.pythonhosted.org/packages/06/47/d19e6611aa3b3a8bc14296a1db1137f92b813453e7a21ff5deb8384b49c4/smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e3f0ce8ae7c38aa097c3b217e007fde40e3a65bcbb6a920956c97c21be9b890",
                "md5": "2c6ecda64e0b1cf0c803f625d3eb5198",
                "sha256": "bb2be4ed84dbb672fdf63d6245a10c32efa12722ad33388c4c7f22cda1f11a81"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c6ecda64e0b1cf0c803f625d3eb5198",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 21915,
            "upload_time": "2023-10-23T23:05:09",
            "upload_time_iso_8601": "2023-10-23T23:05:09.948695Z",
            "url": "https://files.pythonhosted.org/packages/3e/3f/0ce8ae7c38aa097c3b217e007fde40e3a65bcbb6a920956c97c21be9b890/smaz_py3-1.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd4d643ad6f55807b5130a1a88444617fe688d113f70ce74cb5a7961b2fd36ba",
                "md5": "3fc6d983d918202de994de6654cc5c6d",
                "sha256": "9e0133143568c9d8648294fc15e43ddae61b1c101007d114658f7c6b3e806d77"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3fc6d983d918202de994de6654cc5c6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 19898,
            "upload_time": "2023-10-23T23:05:11",
            "upload_time_iso_8601": "2023-10-23T23:05:11.193265Z",
            "url": "https://files.pythonhosted.org/packages/dd/4d/643ad6f55807b5130a1a88444617fe688d113f70ce74cb5a7961b2fd36ba/smaz_py3-1.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d072ad19bec65f940c841d1c7e14ade0de65ebe1978de32f70ed321a495bda6",
                "md5": "874adc376cd13dbf20d017c2a1a45df7",
                "sha256": "3ff51c9262ea8adf0c963df21e1268768be463b66bfeb83e324c9e9dbb04165b"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "874adc376cd13dbf20d017c2a1a45df7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 27082,
            "upload_time": "2023-10-23T23:05:12",
            "upload_time_iso_8601": "2023-10-23T23:05:12.521533Z",
            "url": "https://files.pythonhosted.org/packages/3d/07/2ad19bec65f940c841d1c7e14ade0de65ebe1978de32f70ed321a495bda6/smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faeb8fb19289f43d9294b26f4b3cbaa29f1b430db7b7f9521775b75e938af84f",
                "md5": "a75075fac855adaae55ff527f39f5901",
                "sha256": "066a4afa12087b94afd37a9f6884d7de6e7022d2a82d861e510cf8faf4dd3e22"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a75075fac855adaae55ff527f39f5901",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 24814,
            "upload_time": "2023-10-23T23:05:13",
            "upload_time_iso_8601": "2023-10-23T23:05:13.544528Z",
            "url": "https://files.pythonhosted.org/packages/fa/eb/8fb19289f43d9294b26f4b3cbaa29f1b430db7b7f9521775b75e938af84f/smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "735d925a3fc74bd11d6c37e2cb7efc1243388c9d94054ae25a7548662afc0be9",
                "md5": "3520d2cf9b56ff74410bddffae2f555c",
                "sha256": "f633e7c856b42fcdf8fd8fc213a61c6c514ebb667cf85bfbc9a860a5a09883ce"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3520d2cf9b56ff74410bddffae2f555c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 27810,
            "upload_time": "2023-10-23T23:05:14",
            "upload_time_iso_8601": "2023-10-23T23:05:14.728216Z",
            "url": "https://files.pythonhosted.org/packages/73/5d/925a3fc74bd11d6c37e2cb7efc1243388c9d94054ae25a7548662afc0be9/smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c763049a9439c14cf929452f7bbe1c2edf68d082bfb12a1eb45ae5f3fa7644e",
                "md5": "c54435f5b5bdbb93bf54a5f94ea8f666",
                "sha256": "ca76366766439d9c6a57032d26fcd4e28f35dc7c18e2b6aa54ecaf9801f04232"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "c54435f5b5bdbb93bf54a5f94ea8f666",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 27060,
            "upload_time": "2023-10-23T23:05:16",
            "upload_time_iso_8601": "2023-10-23T23:05:16.005796Z",
            "url": "https://files.pythonhosted.org/packages/5c/76/3049a9439c14cf929452f7bbe1c2edf68d082bfb12a1eb45ae5f3fa7644e/smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a613cf4b531a80ff1d4400fed72eeb9a08a096f95087f4bac6ac274ff1b30800",
                "md5": "c63f7cbc72ee5ef48b1fbcbc0d7a7c13",
                "sha256": "09b80ebec2fc93e84c78be98cddde4b7b04865e1df976687c5d1cc127c09c93e"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c63f7cbc72ee5ef48b1fbcbc0d7a7c13",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 26685,
            "upload_time": "2023-10-23T23:05:17",
            "upload_time_iso_8601": "2023-10-23T23:05:17.851662Z",
            "url": "https://files.pythonhosted.org/packages/a6/13/cf4b531a80ff1d4400fed72eeb9a08a096f95087f4bac6ac274ff1b30800/smaz_py3-1.1.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11c72a2cb514ef7105a92fe5f9dbb79efc811ecdbc514f066da12e5160ab1e3b",
                "md5": "0b223932a5bb669c1a0478ca7eed7e23",
                "sha256": "f82d29d5631420a44d83e54afe824c669370a6a505ded3122ea6a625d6dc3bcb"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "0b223932a5bb669c1a0478ca7eed7e23",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 14238,
            "upload_time": "2023-10-23T23:05:18",
            "upload_time_iso_8601": "2023-10-23T23:05:18.873383Z",
            "url": "https://files.pythonhosted.org/packages/11/c7/2a2cb514ef7105a92fe5f9dbb79efc811ecdbc514f066da12e5160ab1e3b/smaz_py3-1.1.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "550f3c5216955690ae6a75b0b106ef8ef0630e1736938dd4bb72d39b963fd503",
                "md5": "fca156726e173d173fc595597a14d42f",
                "sha256": "788c2dc3f9486f7203bb16c025fde01464f20fd357cce3b1584423c5a190377d"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fca156726e173d173fc595597a14d42f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 15401,
            "upload_time": "2023-10-23T23:05:20",
            "upload_time_iso_8601": "2023-10-23T23:05:20.202514Z",
            "url": "https://files.pythonhosted.org/packages/55/0f/3c5216955690ae6a75b0b106ef8ef0630e1736938dd4bb72d39b963fd503/smaz_py3-1.1.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db6ef1bfc5b85e9b54339a791fb00b587935e24ec6c9dc2747918e89dd1f7989",
                "md5": "2c2340b4f4f7e2331f758b2de33e65f2",
                "sha256": "a717a10cfd6f6bf0f39877bde1fc9b19a58907be03b37b2c17c63a1b5f983283"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c2340b4f4f7e2331f758b2de33e65f2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 10081,
            "upload_time": "2023-10-23T23:05:21",
            "upload_time_iso_8601": "2023-10-23T23:05:21.674223Z",
            "url": "https://files.pythonhosted.org/packages/db/6e/f1bfc5b85e9b54339a791fb00b587935e24ec6c9dc2747918e89dd1f7989/smaz_py3-1.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b30470143c86d982729c382e150863b90320dfa04e721b76064113d05d128ff",
                "md5": "2de07b883e2c747351223283e9d8f076",
                "sha256": "b7f8f02c05af53fc201d4ec8668199dd348615866731d68eb5c168d7c1796900"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2de07b883e2c747351223283e9d8f076",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 14429,
            "upload_time": "2023-10-23T23:05:23",
            "upload_time_iso_8601": "2023-10-23T23:05:23.331021Z",
            "url": "https://files.pythonhosted.org/packages/1b/30/470143c86d982729c382e150863b90320dfa04e721b76064113d05d128ff/smaz_py3-1.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "867e88ccd3f10cc58804517a229c592cf09f24bd87a60ee81860c7f519d05a53",
                "md5": "f90d640df1dee0f5983f7d90d8724542",
                "sha256": "3a21469e775fc1c4885fa1ecee699348623953f0da0c2254d26728887ac79d80"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f90d640df1dee0f5983f7d90d8724542",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 14065,
            "upload_time": "2023-10-23T23:05:24",
            "upload_time_iso_8601": "2023-10-23T23:05:24.543464Z",
            "url": "https://files.pythonhosted.org/packages/86/7e/88ccd3f10cc58804517a229c592cf09f24bd87a60ee81860c7f519d05a53/smaz_py3-1.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65eb6510f961eff56135906268cfdb3cdd7603a6666e4173dd9f4967523e9107",
                "md5": "ad10ca35ec57722f2005eeb0dec6161e",
                "sha256": "6ee08b8d348fc57667c7386d1f503db7b32b33b2e6efdc8b167f00ff55756962"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ad10ca35ec57722f2005eeb0dec6161e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 12648,
            "upload_time": "2023-10-23T23:05:26",
            "upload_time_iso_8601": "2023-10-23T23:05:26.130576Z",
            "url": "https://files.pythonhosted.org/packages/65/eb/6510f961eff56135906268cfdb3cdd7603a6666e4173dd9f4967523e9107/smaz_py3-1.1.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e9debf72a2c030d59a27041d6bacaf400eed3119240b09b4b1b49488bf6fa26",
                "md5": "cdd9973983d0aaba845ec7c10e14b0c4",
                "sha256": "5a7779f37b666c07d721c65050bbb4e12f606d239d79a15b80ad0fceb861c914"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cdd9973983d0aaba845ec7c10e14b0c4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 15436,
            "upload_time": "2023-10-23T23:05:27",
            "upload_time_iso_8601": "2023-10-23T23:05:27.152994Z",
            "url": "https://files.pythonhosted.org/packages/4e/9d/ebf72a2c030d59a27041d6bacaf400eed3119240b09b4b1b49488bf6fa26/smaz_py3-1.1.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c5f1ed1de9d5805024a153efc530adfe6b27fe71b4c50588070ffc1cfbc00b1",
                "md5": "b93a6a4b60c79a9a6cfeefb28721fbd1",
                "sha256": "a9fa36fc6a113d7647a4e0803828c3494b7e43235adcccfceeea592e992abe6d"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b93a6a4b60c79a9a6cfeefb28721fbd1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 10081,
            "upload_time": "2023-10-23T23:05:28",
            "upload_time_iso_8601": "2023-10-23T23:05:28.752927Z",
            "url": "https://files.pythonhosted.org/packages/8c/5f/1ed1de9d5805024a153efc530adfe6b27fe71b4c50588070ffc1cfbc00b1/smaz_py3-1.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e9763e67486f64668a8ff6a2b2d11840746cd6ce4735e21dcd3edc22e0de57a",
                "md5": "1e51f3a84bdbb46126840ca20d01580a",
                "sha256": "76216669cf6cfdffc390e4227165a7da285049442b8d4c2cc0516954e8d22c85"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1e51f3a84bdbb46126840ca20d01580a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 14414,
            "upload_time": "2023-10-23T23:05:29",
            "upload_time_iso_8601": "2023-10-23T23:05:29.983463Z",
            "url": "https://files.pythonhosted.org/packages/4e/97/63e67486f64668a8ff6a2b2d11840746cd6ce4735e21dcd3edc22e0de57a/smaz_py3-1.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4c742ce7793214af176c2b8f37f9dc96651ce30ef3e1015153bcf73c3d1cd59",
                "md5": "801b046eb887959d00a0750f299b5fd5",
                "sha256": "2e7cad7b21d57edac5d399a5e48a764cce55d532cdf06a89ab6a92eea8e408c9"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "801b046eb887959d00a0750f299b5fd5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 14037,
            "upload_time": "2023-10-23T23:05:31",
            "upload_time_iso_8601": "2023-10-23T23:05:31.228028Z",
            "url": "https://files.pythonhosted.org/packages/f4/c7/42ce7793214af176c2b8f37f9dc96651ce30ef3e1015153bcf73c3d1cd59/smaz_py3-1.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bf6eec7f38e22f451ae05a09156752308612e35396dab14355f5c106d2f0421",
                "md5": "bc875f900d89f2bdb8b377aba9a7d910",
                "sha256": "c31f51077f8404833a41dd32714d61fc78307a8f1ae8934a68be3d703380a804"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bc875f900d89f2bdb8b377aba9a7d910",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 12627,
            "upload_time": "2023-10-23T23:05:32",
            "upload_time_iso_8601": "2023-10-23T23:05:32.319660Z",
            "url": "https://files.pythonhosted.org/packages/3b/f6/eec7f38e22f451ae05a09156752308612e35396dab14355f5c106d2f0421/smaz_py3-1.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fd77dec3f96f86b528d5adf0eaeac2f63cb10fd78090f310f0b315d0b21d5da",
                "md5": "bf1e17b65160749a0f39207d5ff3a17b",
                "sha256": "946d34122a991c020f66630123df17e4da3390f745a9685bc30ea3c1110a6255"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bf1e17b65160749a0f39207d5ff3a17b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 15437,
            "upload_time": "2023-10-23T23:05:33",
            "upload_time_iso_8601": "2023-10-23T23:05:33.533106Z",
            "url": "https://files.pythonhosted.org/packages/5f/d7/7dec3f96f86b528d5adf0eaeac2f63cb10fd78090f310f0b315d0b21d5da/smaz_py3-1.1.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60037126ded73cb3fac1897d21f31af4fafe3da1486bb25bc263493c4af5128e",
                "md5": "c59ff084f9f27d9a80d3b1b521f93c9e",
                "sha256": "6c433446ab20a49ec8d51088e60f3db4af035bd50e3aeb260858809eea5b4f3c"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c59ff084f9f27d9a80d3b1b521f93c9e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 10079,
            "upload_time": "2023-10-23T23:05:34",
            "upload_time_iso_8601": "2023-10-23T23:05:34.615525Z",
            "url": "https://files.pythonhosted.org/packages/60/03/7126ded73cb3fac1897d21f31af4fafe3da1486bb25bc263493c4af5128e/smaz_py3-1.1.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "476bf1ad7bf8b4cd060120fffcb12e5ee171cc4d2c1021e1d33fbae9be3ce884",
                "md5": "aa554d9d2a13126d7518625f40e6cd76",
                "sha256": "6de9d54599192e735a1d22b6e71d864315e3c6f498384cbf6185afcdc60b684a"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aa554d9d2a13126d7518625f40e6cd76",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 14415,
            "upload_time": "2023-10-23T23:05:35",
            "upload_time_iso_8601": "2023-10-23T23:05:35.546234Z",
            "url": "https://files.pythonhosted.org/packages/47/6b/f1ad7bf8b4cd060120fffcb12e5ee171cc4d2c1021e1d33fbae9be3ce884/smaz_py3-1.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdebce84e1da18de30766a13e0150b493626700db4af8d3b4c2c273f36a5de9b",
                "md5": "98afc4c467bf2f4bf521e1a24add2668",
                "sha256": "721b25f4e6e9d9416f1e115921f577536002aaa716afb40a29d9fcec493fd7c4"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98afc4c467bf2f4bf521e1a24add2668",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 14037,
            "upload_time": "2023-10-23T23:05:36",
            "upload_time_iso_8601": "2023-10-23T23:05:36.972891Z",
            "url": "https://files.pythonhosted.org/packages/cd/eb/ce84e1da18de30766a13e0150b493626700db4af8d3b4c2c273f36a5de9b/smaz_py3-1.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8bbd63654f60c0977a9087c717cb6763e6587c90472d8df72f1c3724e80a07b",
                "md5": "c125f704f3fda27d0595f898d06ba9cf",
                "sha256": "60b2b831eed84ab2f70badc32ffcdbd23a43fd38c953c3f33e0009f27902dd48"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c125f704f3fda27d0595f898d06ba9cf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 12628,
            "upload_time": "2023-10-23T23:05:38",
            "upload_time_iso_8601": "2023-10-23T23:05:38.113265Z",
            "url": "https://files.pythonhosted.org/packages/b8/bb/d63654f60c0977a9087c717cb6763e6587c90472d8df72f1c3724e80a07b/smaz_py3-1.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "079ef815c7c40a08ea0f75568b107af1fcf36f66cf42c84e02dcc47a37adce05",
                "md5": "e2ee2ab779871efcbb560904da03c150",
                "sha256": "6d9d8216236ffdb047527cbd3555d232b1adfef5c28d7c70756f40f7019a2673"
            },
            "downloads": -1,
            "filename": "smaz_py3-1.1.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e2ee2ab779871efcbb560904da03c150",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 15440,
            "upload_time": "2023-10-23T23:05:39",
            "upload_time_iso_8601": "2023-10-23T23:05:39.115710Z",
            "url": "https://files.pythonhosted.org/packages/07/9e/f815c7c40a08ea0f75568b107af1fcf36f66cf42c84e02dcc47a37adce05/smaz_py3-1.1.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43eae861dfbaddba1470afaeadd9d3d2a2d95d11bc9d51a45444d413adf87599",
                "md5": "3754c98b4db9514a29ae446140d989fd",
                "sha256": "a577dc6fd95f15a27196ebc96173fe907b07de173ea2234ddf6d18522499f6eb"
            },
            "downloads": -1,
            "filename": "smaz-py3-1.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "3754c98b4db9514a29ae446140d989fd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 22477,
            "upload_time": "2023-10-23T23:05:40",
            "upload_time_iso_8601": "2023-10-23T23:05:40.155138Z",
            "url": "https://files.pythonhosted.org/packages/43/ea/e861dfbaddba1470afaeadd9d3d2a2d95d11bc9d51a45444d413adf87599/smaz-py3-1.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-23 23:05:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "originell",
    "github_project": "smaz-py3",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "smaz-py3"
}
        
Elapsed time: 0.14585s