wassima


Namewassima JSON
Version 1.2.1 PyPI version JSON
download
home_pageNone
SummaryAccess your OS root certificates with utmost ease
upload_time2025-01-20 16:44:55
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords truststore ssl tls root ca ca trust https certificate
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">Wassima 🔒</h1>

<p align="center">
<small>I named this library after my wife, whom I trust the most. ❤️</small>
</p>

<p align="center">
  <a href="https://pypi.org/project/wassima">
    <img src="https://img.shields.io/pypi/pyversions/wassima.svg?orange=blue" />
  </a>
  <a href="https://pepy.tech/project/wassima/">
    <img alt="Download Count Total" src="https://static.pepy.tech/badge/wassima/month" />
  </a>
</p>

This project offers you a great alternative to **certifi**. It is a simple yet efficient wrapper
around MIT licensed **rustls-native-certs**.

This project allows you to access your original operating system trust store, thus
helping you to verify the remote peer certificates.

It works as-is out-of-the-box for MacOS, Windows, and Linux. Automatically fallback on Certifi otherwise.
Available on PyPy and Python 3.7+

If your particular operating system is not supported, we will make this happen! Open
an issue on the repository.

For now, it is not supported to call your OS certificate verify native function.
Use your Python native capabilities for it.

## ✨ Installation

Using pip:

```sh
pip install wassima -U
```

### Get started

*A)* Create a SSLContext

```python
import wassima

ctx = wassima.create_default_ssl_context()
# ... The context magically contain your system root CAs, the rest is up to you!
```

*B)* Retrieve individually root CAs in a binary form (DER)

```python
import wassima

certs = wassima.root_der_certificates()
# ... It contains a list of certificate represented in bytes
```

*C)* Retrieve individually root CAs in a string form (PEM)

```python
import wassima

certs = wassima.root_pem_certificates()
# ... It contains a list of certificate represented in string
```

*D)* Retrieve a single bundle (concatenated) list of PEM certificates like *certifi* does

```python
import wassima

bundle = wassima.generate_ca_bundle()
# ... It contains a string with all of your root CAs!
# It is not a path but the file content itself.
```

*C) Register your own CA in addition to the system's*

```python
import wassima

wassima.register_ca(open("./myrootca.pem", "r").read())
bundle = wassima.generate_ca_bundle()
# ... It contains a string with all of your root CAs, PLUS your own 'myrootca.pem'.
# It is not a path but the file content itself.
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "wassima",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "\"Ahmed R. TAHRI\" <tahri.ahmed@proton.me>",
    "keywords": "truststore, ssl, tls, root ca, ca, trust, https, certificate",
    "author": null,
    "author_email": "\"Ahmed R. TAHRI\" <tahri.ahmed@proton.me>",
    "download_url": "https://files.pythonhosted.org/packages/7e/b2/c1d47c3a397b24c3e9d240ea57186becfd10728c9ed3847f91437b366fab/wassima-1.2.1.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">Wassima \ud83d\udd12</h1>\n\n<p align=\"center\">\n<small>I named this library after my wife, whom I trust the most. \u2764\ufe0f</small>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://pypi.org/project/wassima\">\n    <img src=\"https://img.shields.io/pypi/pyversions/wassima.svg?orange=blue\" />\n  </a>\n  <a href=\"https://pepy.tech/project/wassima/\">\n    <img alt=\"Download Count Total\" src=\"https://static.pepy.tech/badge/wassima/month\" />\n  </a>\n</p>\n\nThis project offers you a great alternative to **certifi**. It is a simple yet efficient wrapper\naround MIT licensed **rustls-native-certs**.\n\nThis project allows you to access your original operating system trust store, thus\nhelping you to verify the remote peer certificates.\n\nIt works as-is out-of-the-box for MacOS, Windows, and Linux. Automatically fallback on Certifi otherwise.\nAvailable on PyPy and Python 3.7+\n\nIf your particular operating system is not supported, we will make this happen! Open\nan issue on the repository.\n\nFor now, it is not supported to call your OS certificate verify native function.\nUse your Python native capabilities for it.\n\n## \u2728 Installation\n\nUsing pip:\n\n```sh\npip install wassima -U\n```\n\n### Get started\n\n*A)* Create a SSLContext\n\n```python\nimport wassima\n\nctx = wassima.create_default_ssl_context()\n# ... The context magically contain your system root CAs, the rest is up to you!\n```\n\n*B)* Retrieve individually root CAs in a binary form (DER)\n\n```python\nimport wassima\n\ncerts = wassima.root_der_certificates()\n# ... It contains a list of certificate represented in bytes\n```\n\n*C)* Retrieve individually root CAs in a string form (PEM)\n\n```python\nimport wassima\n\ncerts = wassima.root_pem_certificates()\n# ... It contains a list of certificate represented in string\n```\n\n*D)* Retrieve a single bundle (concatenated) list of PEM certificates like *certifi* does\n\n```python\nimport wassima\n\nbundle = wassima.generate_ca_bundle()\n# ... It contains a string with all of your root CAs!\n# It is not a path but the file content itself.\n```\n\n*C) Register your own CA in addition to the system's*\n\n```python\nimport wassima\n\nwassima.register_ca(open(\"./myrootca.pem\", \"r\").read())\nbundle = wassima.generate_ca_bundle()\n# ... It contains a string with all of your root CAs, PLUS your own 'myrootca.pem'.\n# It is not a path but the file content itself.\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Access your OS root certificates with utmost ease",
    "version": "1.2.1",
    "project_urls": {
        "Changelog": "https://github.com/jawah/wassima/blob/main/CHANGELOG.md",
        "Code": "https://github.com/jawah/wassima",
        "Documentation": "https://wassima.readthedocs.io",
        "Issue tracker": "https://github.com/jawah/wassima/issues"
    },
    "split_keywords": [
        "truststore",
        " ssl",
        " tls",
        " root ca",
        " ca",
        " trust",
        " https",
        " certificate"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3ff78ba5a86595021168e126605123eacc1fcffaeb15ff56c5b666f534ded6a",
                "md5": "5dcc3ee4c24bfff97d44c3306774fcb3",
                "sha256": "d25a1c5bb8b18a54fb274f123a56688525069726851f7f169e2524d03f3733ec"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5dcc3ee4c24bfff97d44c3306774fcb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 245606,
            "upload_time": "2025-01-20T16:42:14",
            "upload_time_iso_8601": "2025-01-20T16:42:14.115742Z",
            "url": "https://files.pythonhosted.org/packages/d3/ff/78ba5a86595021168e126605123eacc1fcffaeb15ff56c5b666f534ded6a/wassima-1.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccc0625d00dcaee0c6381d3c84d447d0e5414aebcd204277e0a5dd7350fda68b",
                "md5": "020b2aee6ea49f1a23ca118106ee558b",
                "sha256": "cec51d905a3571c5b1a927d94182b20da037ba45a9d85b58189f56636be511e6"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "020b2aee6ea49f1a23ca118106ee558b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 252251,
            "upload_time": "2025-01-20T16:42:16",
            "upload_time_iso_8601": "2025-01-20T16:42:16.786225Z",
            "url": "https://files.pythonhosted.org/packages/cc/c0/625d00dcaee0c6381d3c84d447d0e5414aebcd204277e0a5dd7350fda68b/wassima-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8634746152c486ea13bec5cd76ed42a6d108bc72e8277272d7f7a33f393f5d5",
                "md5": "b7a547667240aa06886cbc738c3b948c",
                "sha256": "64a1dce6b0bffa1b50b089f995df684e8e9ae3d364872fba15580afea907a0f1"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b7a547667240aa06886cbc738c3b948c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 301229,
            "upload_time": "2025-01-20T16:42:24",
            "upload_time_iso_8601": "2025-01-20T16:42:24.780344Z",
            "url": "https://files.pythonhosted.org/packages/a8/63/4746152c486ea13bec5cd76ed42a6d108bc72e8277272d7f7a33f393f5d5/wassima-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1e0d79f1ce4bb6c92b045def4d8bdd403a60d6948a877561715659cd13e13d7",
                "md5": "b45233d73cad50e17f17bceb29b3632a",
                "sha256": "48fdc5c8c5bf9c5877d07c7e4626a34f6857529187472ce315eea87b4bd3e4cb"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "b45233d73cad50e17f17bceb29b3632a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 301857,
            "upload_time": "2025-01-20T16:42:20",
            "upload_time_iso_8601": "2025-01-20T16:42:20.273848Z",
            "url": "https://files.pythonhosted.org/packages/f1/e0/d79f1ce4bb6c92b045def4d8bdd403a60d6948a877561715659cd13e13d7/wassima-1.2.1-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "922d927eda36c0e40c1a93b3bb794546b57dcaece9d9af1c145d1f69b744f1cd",
                "md5": "0f1f21a2ec19d45c250c7d32f3a4ee23",
                "sha256": "726974452375348a21a3676403b9085bec9f64361010e862f199c9636755fb41"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0f1f21a2ec19d45c250c7d32f3a4ee23",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 282067,
            "upload_time": "2025-01-20T16:42:30",
            "upload_time_iso_8601": "2025-01-20T16:42:30.606784Z",
            "url": "https://files.pythonhosted.org/packages/92/2d/927eda36c0e40c1a93b3bb794546b57dcaece9d9af1c145d1f69b744f1cd/wassima-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b131554246c560e4a679e296c814a9032c59e654021caa02f19fad1f6ae8d442",
                "md5": "eaf5fdcc596e82f04617e0863b5e4202",
                "sha256": "f798b298904e908407dad34597e482be6f21b4ce9fd8d68af988229d31f4666c"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaf5fdcc596e82f04617e0863b5e4202",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 246552,
            "upload_time": "2025-01-20T16:42:32",
            "upload_time_iso_8601": "2025-01-20T16:42:32.715471Z",
            "url": "https://files.pythonhosted.org/packages/b1/31/554246c560e4a679e296c814a9032c59e654021caa02f19fad1f6ae8d442/wassima-1.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "312f4d1f474a75d9c04e09eace6441dc4afac679f124fea33c224ba92575a9b1",
                "md5": "45c57351447059e83021aa14d130751a",
                "sha256": "eec6d9904a9b27d6a4ce74e5348c0e34847fe9ca09a60676006fc0262ed0543a"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "45c57351447059e83021aa14d130751a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 261201,
            "upload_time": "2025-01-20T16:42:34",
            "upload_time_iso_8601": "2025-01-20T16:42:34.211591Z",
            "url": "https://files.pythonhosted.org/packages/31/2f/4d1f474a75d9c04e09eace6441dc4afac679f124fea33c224ba92575a9b1/wassima-1.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a3c81dd9e76fa5d99bca9749523f954e5e0f230e96bb07e9bcf4505fb874e60",
                "md5": "515971bb5d951fbd50b5dfb9da74f2bd",
                "sha256": "75fcf7b29ce0e5b4ee27da1d42a7b944614b80ce71da66dd07e8053aa47876dc"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "515971bb5d951fbd50b5dfb9da74f2bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 419484,
            "upload_time": "2025-01-20T16:42:36",
            "upload_time_iso_8601": "2025-01-20T16:42:36.951458Z",
            "url": "https://files.pythonhosted.org/packages/4a/3c/81dd9e76fa5d99bca9749523f954e5e0f230e96bb07e9bcf4505fb874e60/wassima-1.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "457268fa4c4edb55c2d37123c36e60d010242a602a4d09f5a5edb1be25995533",
                "md5": "b0d955849239c5344abbfc660c500208",
                "sha256": "790279a3fac25595a28f480418be025c69b48a6cf21374594d46c00156a9a1ed"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b0d955849239c5344abbfc660c500208",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 511054,
            "upload_time": "2025-01-20T16:42:39",
            "upload_time_iso_8601": "2025-01-20T16:42:39.784375Z",
            "url": "https://files.pythonhosted.org/packages/45/72/68fa4c4edb55c2d37123c36e60d010242a602a4d09f5a5edb1be25995533/wassima-1.2.1-cp313-cp313t-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "841c3292a93c9331f36616bdcd47b77960410083415e6e4da85ef0fb4493e28c",
                "md5": "8435aaa44c95792a02c214218d8dc281",
                "sha256": "2af9c0c1959eb0e0f96896435c31a786a8156a87ec4f2e174e5a471bed59487e"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "8435aaa44c95792a02c214218d8dc281",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 438688,
            "upload_time": "2025-01-20T16:42:42",
            "upload_time_iso_8601": "2025-01-20T16:42:42.165537Z",
            "url": "https://files.pythonhosted.org/packages/84/1c/3292a93c9331f36616bdcd47b77960410083415e6e4da85ef0fb4493e28c/wassima-1.2.1-cp313-cp313t-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9254b8487ee0b43aba06b3b67a372897c86993919037819f0b49865d64528c3",
                "md5": "e651707873f53c3a8529e84d6a6934f6",
                "sha256": "920fb91af668c7e2e1ce79174147ab3f08b54d44ee2c3cbd272b075d0881271b"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e651707873f53c3a8529e84d6a6934f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 413568,
            "upload_time": "2025-01-20T16:42:43",
            "upload_time_iso_8601": "2025-01-20T16:42:43.554365Z",
            "url": "https://files.pythonhosted.org/packages/d9/25/4b8487ee0b43aba06b3b67a372897c86993919037819f0b49865d64528c3/wassima-1.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70b4bfedfbce6eefc0637a35d4728915c07f43fd21db40bae84983034ba2285f",
                "md5": "7b2a1c4c2361f52277bcdcb388b71d04",
                "sha256": "64ff8c0633640e5f271de41ac09b8a72ee77042573cad3c22b2230fcbbc7c828"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7b2a1c4c2361f52277bcdcb388b71d04",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 125267,
            "upload_time": "2025-01-20T16:42:44",
            "upload_time_iso_8601": "2025-01-20T16:42:44.987052Z",
            "url": "https://files.pythonhosted.org/packages/70/b4/bfedfbce6eefc0637a35d4728915c07f43fd21db40bae84983034ba2285f/wassima-1.2.1-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06418ab27acd474655a7d4708d5ca58624bac2c13d3cbea091da7b3e57fd4da8",
                "md5": "3c6e6ca65879b79b990686d2575908e1",
                "sha256": "941d34418c967b1f4891e74925149479670723d32fbae3c32c0ae11868fbf398"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "3c6e6ca65879b79b990686d2575908e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 120371,
            "upload_time": "2025-01-20T16:42:47",
            "upload_time_iso_8601": "2025-01-20T16:42:47.702205Z",
            "url": "https://files.pythonhosted.org/packages/06/41/8ab27acd474655a7d4708d5ca58624bac2c13d3cbea091da7b3e57fd4da8/wassima-1.2.1-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c211a82d92440bbdbae38e694bddc9c340e4a8c21a5ba29e020654e2fc1d9e36",
                "md5": "7d3852ad4a3b263446c371d9d7ee363d",
                "sha256": "b3c03e88e87d4b8dc87756cefa452de60faf2a5a4ea4a52cd859d9d9806a6d04"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "7d3852ad4a3b263446c371d9d7ee363d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 455601,
            "upload_time": "2025-01-20T16:42:49",
            "upload_time_iso_8601": "2025-01-20T16:42:49.659505Z",
            "url": "https://files.pythonhosted.org/packages/c2/11/a82d92440bbdbae38e694bddc9c340e4a8c21a5ba29e020654e2fc1d9e36/wassima-1.2.1-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d58e670a56f324923410e5e80156b02857b3e5f29d91b9961776a578613b0542",
                "md5": "781f4786256ff7bfe2de9043a74dc547",
                "sha256": "ebe1a61eb9416504d7d0a825d45b703a8b9684ba03792378ecb54ed2da37e357"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "781f4786256ff7bfe2de9043a74dc547",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 246418,
            "upload_time": "2025-01-20T16:42:51",
            "upload_time_iso_8601": "2025-01-20T16:42:51.947848Z",
            "url": "https://files.pythonhosted.org/packages/d5/8e/670a56f324923410e5e80156b02857b3e5f29d91b9961776a578613b0542/wassima-1.2.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c178e0ffa1b854f27223820a2ec5798cfd46690609c3e99ca6b720ae5cafa92",
                "md5": "5ef46014748315f2fa283a2ef87ec661",
                "sha256": "c1eeb1a577f915c69a9353ef7c1ecfb5dff752ebf9259116bf497a0ebd847b5f"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5ef46014748315f2fa283a2ef87ec661",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 253647,
            "upload_time": "2025-01-20T16:42:53",
            "upload_time_iso_8601": "2025-01-20T16:42:53.895468Z",
            "url": "https://files.pythonhosted.org/packages/0c/17/8e0ffa1b854f27223820a2ec5798cfd46690609c3e99ca6b720ae5cafa92/wassima-1.2.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23d2efc1fa347f17f78cb4c73e5b59f84ddd253781c4b5457cc4207340c60dcb",
                "md5": "6f1e2c419551b89c5dee7a0d668728b2",
                "sha256": "9f69aae8f8af70647aec634658802b0362dcc9ac50c0657408b23d7f77ceb3f6"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6f1e2c419551b89c5dee7a0d668728b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 302895,
            "upload_time": "2025-01-20T16:42:56",
            "upload_time_iso_8601": "2025-01-20T16:42:56.861480Z",
            "url": "https://files.pythonhosted.org/packages/23/d2/efc1fa347f17f78cb4c73e5b59f84ddd253781c4b5457cc4207340c60dcb/wassima-1.2.1-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e73238727ca16ea03e1c0218ebe75098d85001267cf25b335468904311ae1e1",
                "md5": "c9b84766102a1c4b9de2590b720e0a53",
                "sha256": "f8634b2c418dfc673c5832a4b3d523bd2814d7144294f4d4d9ec2fc608610cb0"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "c9b84766102a1c4b9de2590b720e0a53",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 302724,
            "upload_time": "2025-01-20T16:42:55",
            "upload_time_iso_8601": "2025-01-20T16:42:55.268325Z",
            "url": "https://files.pythonhosted.org/packages/9e/73/238727ca16ea03e1c0218ebe75098d85001267cf25b335468904311ae1e1/wassima-1.2.1-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1258d4a6a16ad2c153050e02dec5bb602102d76577d158d3b060c48521d6c1ef",
                "md5": "f255a534892b9d0e9c17a1f503d24912",
                "sha256": "c33bf88a4268d40d7de44c1ae551877d592a8c05c54335920b4c16ea8e8e1f59"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f255a534892b9d0e9c17a1f503d24912",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 283242,
            "upload_time": "2025-01-20T16:42:58",
            "upload_time_iso_8601": "2025-01-20T16:42:58.325065Z",
            "url": "https://files.pythonhosted.org/packages/12/58/d4a6a16ad2c153050e02dec5bb602102d76577d158d3b060c48521d6c1ef/wassima-1.2.1-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5ea193780884f5704b3c6793f799115d1c1b73f2b69beb2b40d222b2efa5816",
                "md5": "5bcb824073388703332d35c178089534",
                "sha256": "b2db3c48779b8a514bb7de1b8ac5079dcec9781efb8b0f90197af3f30919eb87"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bcb824073388703332d35c178089534",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 247569,
            "upload_time": "2025-01-20T16:43:00",
            "upload_time_iso_8601": "2025-01-20T16:43:00.201259Z",
            "url": "https://files.pythonhosted.org/packages/c5/ea/193780884f5704b3c6793f799115d1c1b73f2b69beb2b40d222b2efa5816/wassima-1.2.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c7a47ab78c5a1d3b853e26aeb058c073fa1ff619c363d2a72c7c85b51af0341",
                "md5": "5a44544dec6c42a761585af0fdb88770",
                "sha256": "74603e51b57ddc60763b310a47ca882bc17ee789e0590a21b842bbf8f03c5454"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5a44544dec6c42a761585af0fdb88770",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 263254,
            "upload_time": "2025-01-20T16:43:02",
            "upload_time_iso_8601": "2025-01-20T16:43:02.890209Z",
            "url": "https://files.pythonhosted.org/packages/4c/7a/47ab78c5a1d3b853e26aeb058c073fa1ff619c363d2a72c7c85b51af0341/wassima-1.2.1-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "875486ec05b264445869cd043a066fda1daa479db7c86996ec5f8f65d4b36f59",
                "md5": "a50156176b2045fccf3a278907400c32",
                "sha256": "b9939fcf31898ce236c9c5b77222e9fcbf528382db9a6268044366e837d56435"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a50156176b2045fccf3a278907400c32",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 420347,
            "upload_time": "2025-01-20T16:43:05",
            "upload_time_iso_8601": "2025-01-20T16:43:05.203084Z",
            "url": "https://files.pythonhosted.org/packages/87/54/86ec05b264445869cd043a066fda1daa479db7c86996ec5f8f65d4b36f59/wassima-1.2.1-cp37-abi3-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b999e669e95a997fdcf67a1610eacc1dec2061fa4f0289aed718e7bf8157003",
                "md5": "312ded023f912a362fa2393ffd0f6528",
                "sha256": "10b1c6acd08e890d1c1d3a61e9956ca7e47514ab6767b4ebf5e038ef19e5f223"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "312ded023f912a362fa2393ffd0f6528",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 512354,
            "upload_time": "2025-01-20T16:43:06",
            "upload_time_iso_8601": "2025-01-20T16:43:06.501303Z",
            "url": "https://files.pythonhosted.org/packages/8b/99/9e669e95a997fdcf67a1610eacc1dec2061fa4f0289aed718e7bf8157003/wassima-1.2.1-cp37-abi3-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c1c16ceeda4cc2f100a55f8e1ee4a9d973d31f9af751ed055504498bc3ced75",
                "md5": "b911f387a32e3a7aaecd54ffc2611955",
                "sha256": "d8ecbe60a41ae84bdf99db35b9790c31253a84bbfd85a5d4e5ad00b43867875a"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b911f387a32e3a7aaecd54ffc2611955",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 440053,
            "upload_time": "2025-01-20T16:43:08",
            "upload_time_iso_8601": "2025-01-20T16:43:08.030007Z",
            "url": "https://files.pythonhosted.org/packages/2c/1c/16ceeda4cc2f100a55f8e1ee4a9d973d31f9af751ed055504498bc3ced75/wassima-1.2.1-cp37-abi3-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "173afe283eea5f8142c2d844268aebb29d441932eba2ba6524bbb0b24725def3",
                "md5": "8f8be28f48b19d09cccbe1801982f1a1",
                "sha256": "4bc4ad06f450fa289353b9c4f0459157910538513657798b8ad2371ed2689448"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f8be28f48b19d09cccbe1801982f1a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 414694,
            "upload_time": "2025-01-20T16:43:10",
            "upload_time_iso_8601": "2025-01-20T16:43:10.231925Z",
            "url": "https://files.pythonhosted.org/packages/17/3a/fe283eea5f8142c2d844268aebb29d441932eba2ba6524bbb0b24725def3/wassima-1.2.1-cp37-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "612927a79e0676522760e814f35a5821e80aa01f125c53466d36fbb8780d6f4e",
                "md5": "2348154a834b276a12e4ee4930366dd5",
                "sha256": "9cdaa278e8a74ed147b7b52d5cc51b2fbf08f9ea38dc3bf080b2058583e1c4e8"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "2348154a834b276a12e4ee4930366dd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 120494,
            "upload_time": "2025-01-20T16:43:11",
            "upload_time_iso_8601": "2025-01-20T16:43:11.878943Z",
            "url": "https://files.pythonhosted.org/packages/61/29/27a79e0676522760e814f35a5821e80aa01f125c53466d36fbb8780d6f4e/wassima-1.2.1-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23b1fe3b41b1d56a608c114520771067754f229ecef760cc86ffaa845a05c775",
                "md5": "df2a65acce5a1d00956ee554fea44809",
                "sha256": "25efc0332996e0896c7ea11bc93815ebec50bbea1e115b9f1c92c7fd8bcb97bc"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df2a65acce5a1d00956ee554fea44809",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 125502,
            "upload_time": "2025-01-20T16:43:14",
            "upload_time_iso_8601": "2025-01-20T16:43:14.162186Z",
            "url": "https://files.pythonhosted.org/packages/23/b1/fe3b41b1d56a608c114520771067754f229ecef760cc86ffaa845a05c775/wassima-1.2.1-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70efeb45e3e3b24d461a6b9fad5792344fde3b8b457ee03c62a6d621a0bc5614",
                "md5": "26515ef7a6e01cb33f7df44692c08bca",
                "sha256": "f7e560ee96121269c0faa8c357284d23b41b636dc65b14edb512363605de74ee"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-cp37-abi3-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "26515ef7a6e01cb33f7df44692c08bca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 120679,
            "upload_time": "2025-01-20T16:43:15",
            "upload_time_iso_8601": "2025-01-20T16:43:15.548868Z",
            "url": "https://files.pythonhosted.org/packages/70/ef/eb45e3e3b24d461a6b9fad5792344fde3b8b457ee03c62a6d621a0bc5614/wassima-1.2.1-cp37-abi3-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bca9a76e9d9048960bce0420bb47b4e6514540d0b5878ea5441db4b3e0e06710",
                "md5": "384e8491f88647c7091226d1a0c4b3ff",
                "sha256": "04f22ca4dee0694230ad065dc8b21501da9f87c0cf1e7f3e5ecbe8ea0192d51d"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "384e8491f88647c7091226d1a0c4b3ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 246584,
            "upload_time": "2025-01-20T16:43:17",
            "upload_time_iso_8601": "2025-01-20T16:43:17.577782Z",
            "url": "https://files.pythonhosted.org/packages/bc/a9/a76e9d9048960bce0420bb47b4e6514540d0b5878ea5441db4b3e0e06710/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "469b1f19b65cb5a4fe24d5cc81e5f40452fb179dcc029151ec3b963b27d8bd77",
                "md5": "722288f7b1c0fb25966d7311dde74a00",
                "sha256": "4ea2d6353be1d6ce8fa4cf73c643e9705baf77c4dcdbdabd4d39711fefae59aa"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "722288f7b1c0fb25966d7311dde74a00",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 253847,
            "upload_time": "2025-01-20T16:43:19",
            "upload_time_iso_8601": "2025-01-20T16:43:19.692344Z",
            "url": "https://files.pythonhosted.org/packages/46/9b/1f19b65cb5a4fe24d5cc81e5f40452fb179dcc029151ec3b963b27d8bd77/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca02bc8e7d17aaf2a9f3906f4888e183c69ea326c853a7ad95fbf444e2f83126",
                "md5": "1d97f20a162f4e52baaeb4cd75243ea1",
                "sha256": "699386e6d8f0561dc28564c0288a673e2f47ff21d50d4b784b1c1a4bbb184e97"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1d97f20a162f4e52baaeb4cd75243ea1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 303144,
            "upload_time": "2025-01-20T16:43:23",
            "upload_time_iso_8601": "2025-01-20T16:43:23.601638Z",
            "url": "https://files.pythonhosted.org/packages/ca/02/bc8e7d17aaf2a9f3906f4888e183c69ea326c853a7ad95fbf444e2f83126/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "498d71e2648a76a69bb7eab9b21df6304dcffe0d2b07a0ab481e89168431c678",
                "md5": "438d6d13b76a75515de7907848bf5f17",
                "sha256": "b87385c4fcc43730f7570e6aa937ecde395d2aed491c8a2e28237801cd583b41"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "438d6d13b76a75515de7907848bf5f17",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 302827,
            "upload_time": "2025-01-20T16:43:22",
            "upload_time_iso_8601": "2025-01-20T16:43:22.089583Z",
            "url": "https://files.pythonhosted.org/packages/49/8d/71e2648a76a69bb7eab9b21df6304dcffe0d2b07a0ab481e89168431c678/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a18652ed99f964b93ca6764e2f681fb0360181b95b945a298bf63ca29a83306",
                "md5": "f97dc2fa5ea413fe54d9f0f5c726b9be",
                "sha256": "78962d0cb83efbc3497e9d39e174dd5bd259966c22cd225b4b847629bdef6fe9"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f97dc2fa5ea413fe54d9f0f5c726b9be",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 283630,
            "upload_time": "2025-01-20T16:43:24",
            "upload_time_iso_8601": "2025-01-20T16:43:24.943415Z",
            "url": "https://files.pythonhosted.org/packages/6a/18/652ed99f964b93ca6764e2f681fb0360181b95b945a298bf63ca29a83306/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "438ba0e3bd29da4e5e0ea56e62137681318167afb4e7eebb403c883dd2ae0503",
                "md5": "6045ca74fcc4053990f9aa9ef6a17767",
                "sha256": "650a354f614bfa008d202331752de07f81e677a842233699d043a4fef6b1de6d"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6045ca74fcc4053990f9aa9ef6a17767",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 247787,
            "upload_time": "2025-01-20T16:43:26",
            "upload_time_iso_8601": "2025-01-20T16:43:26.221359Z",
            "url": "https://files.pythonhosted.org/packages/43/8b/a0e3bd29da4e5e0ea56e62137681318167afb4e7eebb403c883dd2ae0503/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9215ed8b52444de7b8ca7675dbf7f7ac843edbb2b99abc20d16979cab4d4c301",
                "md5": "0f227fb4902d9bd0c175f5e383e7e92e",
                "sha256": "0c5f57696f6547c3dc7b6132720323baf346ceb3ad17a47f92422218434edcae"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0f227fb4902d9bd0c175f5e383e7e92e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 263427,
            "upload_time": "2025-01-20T16:43:27",
            "upload_time_iso_8601": "2025-01-20T16:43:27.552466Z",
            "url": "https://files.pythonhosted.org/packages/92/15/ed8b52444de7b8ca7675dbf7f7ac843edbb2b99abc20d16979cab4d4c301/wassima-1.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "733970a130101ca2f7b136699e00a16616eed6140994cde0d5bdfbf938734005",
                "md5": "d7417369212431b5443706c7cfb3053a",
                "sha256": "f168f4a61a53ef420ae63e64004518008aaddd280b7170ebc50f2564c25c0939"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7417369212431b5443706c7cfb3053a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 420318,
            "upload_time": "2025-01-20T16:43:29",
            "upload_time_iso_8601": "2025-01-20T16:43:29.992851Z",
            "url": "https://files.pythonhosted.org/packages/73/39/70a130101ca2f7b136699e00a16616eed6140994cde0d5bdfbf938734005/wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b1d81cad971dc8e18fc0fd359bce5dc3fb4823c313bb21cfc5e8d0b4fb2de1d",
                "md5": "05daacac05c33f23398beb6a92202f7c",
                "sha256": "9cc6e5dea2d079a8997e55d573be524a96cffe6e1c1841c3452f64f2071b65d6"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "05daacac05c33f23398beb6a92202f7c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 512812,
            "upload_time": "2025-01-20T16:43:31",
            "upload_time_iso_8601": "2025-01-20T16:43:31.790407Z",
            "url": "https://files.pythonhosted.org/packages/2b/1d/81cad971dc8e18fc0fd359bce5dc3fb4823c313bb21cfc5e8d0b4fb2de1d/wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89cf19d562023ff9a8399c175d81a6cd5edfcba5f89ac3f8418e8ffcce99e285",
                "md5": "a1d309caf2127eabaede85bc684652f6",
                "sha256": "65b513017d3d0686e7d0d8914ee56d5b1de7a0d11f602364809f51ad6d54a541"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a1d309caf2127eabaede85bc684652f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 440579,
            "upload_time": "2025-01-20T16:43:33",
            "upload_time_iso_8601": "2025-01-20T16:43:33.324919Z",
            "url": "https://files.pythonhosted.org/packages/89/cf/19d562023ff9a8399c175d81a6cd5edfcba5f89ac3f8418e8ffcce99e285/wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5580e7c75cc4941999da2e24fdeaa1fb490d491ad210d774c4c1bfd11ff8e81e",
                "md5": "1c3036934274fd7ae5436e82fa6c7020",
                "sha256": "79418677b983ae64c1081627d8753be4dd0ac6102906e66927f00f278077ba1d"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c3036934274fd7ae5436e82fa6c7020",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 414855,
            "upload_time": "2025-01-20T16:43:34",
            "upload_time_iso_8601": "2025-01-20T16:43:34.707655Z",
            "url": "https://files.pythonhosted.org/packages/55/80/e7c75cc4941999da2e24fdeaa1fb490d491ad210d774c4c1bfd11ff8e81e/wassima-1.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f347942b5ce4d4a0609004eefbfd2faee5a3e2a16f9f4214943f2982339287a",
                "md5": "6a635df166b98aba4da3b5197dcc97e8",
                "sha256": "36386f8a7b95447646d30e172aba4b4444161b3a14eb946854ac9db2a89769a9"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a635df166b98aba4da3b5197dcc97e8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 125960,
            "upload_time": "2025-01-20T16:43:36",
            "upload_time_iso_8601": "2025-01-20T16:43:36.834836Z",
            "url": "https://files.pythonhosted.org/packages/3f/34/7942b5ce4d4a0609004eefbfd2faee5a3e2a16f9f4214943f2982339287a/wassima-1.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2e2fa229676f639e08af994cc9449129c6234bea8f83071d6240afea10341af",
                "md5": "f4b307a32c44f5db516484242b237ef7",
                "sha256": "6a924c97c158468e1c10af8e4432f2ad8ad86e60cbb17b416169ff906c558886"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f4b307a32c44f5db516484242b237ef7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 246325,
            "upload_time": "2025-01-20T16:43:38",
            "upload_time_iso_8601": "2025-01-20T16:43:38.114216Z",
            "url": "https://files.pythonhosted.org/packages/c2/e2/fa229676f639e08af994cc9449129c6234bea8f83071d6240afea10341af/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9df21c4690087008bf3def7bf02ec53cd1d89468e0ecd11bb73d179c8f737748",
                "md5": "4b4227bb750e16fccddc335d7697f38f",
                "sha256": "f48924f09cb48844a6ae43d764ee08801cb44da0950300a5fd3884c351d54480"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4b4227bb750e16fccddc335d7697f38f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 253760,
            "upload_time": "2025-01-20T16:43:39",
            "upload_time_iso_8601": "2025-01-20T16:43:39.518988Z",
            "url": "https://files.pythonhosted.org/packages/9d/f2/1c4690087008bf3def7bf02ec53cd1d89468e0ecd11bb73d179c8f737748/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17c0c49c315d451818b4f0fb333be75a669d52a66bda171569c335da51727335",
                "md5": "b71ae5af665c30586c53fed986e24c1d",
                "sha256": "4c13974448c396d3449d128d020db4d94ca37ab0e11eeeb6c75e1950195be309"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b71ae5af665c30586c53fed986e24c1d",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 301877,
            "upload_time": "2025-01-20T16:43:43",
            "upload_time_iso_8601": "2025-01-20T16:43:43.055430Z",
            "url": "https://files.pythonhosted.org/packages/17/c0/c49c315d451818b4f0fb333be75a669d52a66bda171569c335da51727335/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aeb934ba9778f0a31097051699e3621c5f3e6940f496d861511c832c89175c5",
                "md5": "428197fdcfbe457e25a4ceb0b15960dc",
                "sha256": "de79a68b903a9c0b2c93e5b83671cb2912e9aa706056d1ea3e7464a8b0c2163a"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "428197fdcfbe457e25a4ceb0b15960dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 301749,
            "upload_time": "2025-01-20T16:43:41",
            "upload_time_iso_8601": "2025-01-20T16:43:41.789121Z",
            "url": "https://files.pythonhosted.org/packages/7a/eb/934ba9778f0a31097051699e3621c5f3e6940f496d861511c832c89175c5/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc3b4e768fd47dedc1ab8bcf11dfbe1beb179c1b53143f04d988e3b6b8d85ed0",
                "md5": "770d3cd9cc8fcaf94cc7df55975750c9",
                "sha256": "87facb3e6d12bf50961e1cc85b0e8f280d3a9625892f4dcdfbd06604218882e3"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "770d3cd9cc8fcaf94cc7df55975750c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 283753,
            "upload_time": "2025-01-20T16:43:44",
            "upload_time_iso_8601": "2025-01-20T16:43:44.333615Z",
            "url": "https://files.pythonhosted.org/packages/bc/3b/4e768fd47dedc1ab8bcf11dfbe1beb179c1b53143f04d988e3b6b8d85ed0/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2bc75e15fd585642be7abe11824849cac4ae991734243ca49202581a963bbda",
                "md5": "b0c4f095167009af7a6b53da8f1344d2",
                "sha256": "b14876a3ac290db9075a46b6c56e1034fc9019a106b024fe32d0c51f2c4f0624"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0c4f095167009af7a6b53da8f1344d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 247597,
            "upload_time": "2025-01-20T16:43:46",
            "upload_time_iso_8601": "2025-01-20T16:43:46.532255Z",
            "url": "https://files.pythonhosted.org/packages/c2/bc/75e15fd585642be7abe11824849cac4ae991734243ca49202581a963bbda/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cad42cd6ab3f9e22c577f74787b7f581241e9c6bf6a5aec23f8706a27281e73c",
                "md5": "b74e85a09f17060e6eb3b1ba2202c579",
                "sha256": "bffd8a52ed32c381116575b37961bb6346d7e9b3e1adc296c146e0f58668743a"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b74e85a09f17060e6eb3b1ba2202c579",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 263333,
            "upload_time": "2025-01-20T16:43:48",
            "upload_time_iso_8601": "2025-01-20T16:43:48.837147Z",
            "url": "https://files.pythonhosted.org/packages/ca/d4/2cd6ab3f9e22c577f74787b7f581241e9c6bf6a5aec23f8706a27281e73c/wassima-1.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3300ea9579b6cfcf30d024eede5907238886f591725b458892e2cd8b050ad38",
                "md5": "bd413446fa1a1a54beee102ef682ebb0",
                "sha256": "48b8fb2b13ac94e2e70a676f4ab62e3feb27270d0f3cf2a85f7b566089b0118a"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bd413446fa1a1a54beee102ef682ebb0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 420598,
            "upload_time": "2025-01-20T16:43:50",
            "upload_time_iso_8601": "2025-01-20T16:43:50.752925Z",
            "url": "https://files.pythonhosted.org/packages/b3/30/0ea9579b6cfcf30d024eede5907238886f591725b458892e2cd8b050ad38/wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee4c1d54cafb7bff618140b8c61a50d4475339f0006a95ce09bdf57e5fb46d45",
                "md5": "b63814ad2bc69c232fddc31e9419ccc6",
                "sha256": "9703187bc688f269223f1e97c6ba3057a3d0421c5540d23ed359fdcd1b597e56"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b63814ad2bc69c232fddc31e9419ccc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 512607,
            "upload_time": "2025-01-20T16:43:53",
            "upload_time_iso_8601": "2025-01-20T16:43:53.090557Z",
            "url": "https://files.pythonhosted.org/packages/ee/4c/1d54cafb7bff618140b8c61a50d4475339f0006a95ce09bdf57e5fb46d45/wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98cdbf23838614492c4e71fb471b48a4084d28056e55902060f631bd9dee45b6",
                "md5": "e5a96bd5acb9a344dea943c951c1305c",
                "sha256": "6bf578d402d5f81b43f8e213d7c8ae2196b7577394534b08e8e62cab88c20230"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e5a96bd5acb9a344dea943c951c1305c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 440565,
            "upload_time": "2025-01-20T16:43:54",
            "upload_time_iso_8601": "2025-01-20T16:43:54.733584Z",
            "url": "https://files.pythonhosted.org/packages/98/cd/bf23838614492c4e71fb471b48a4084d28056e55902060f631bd9dee45b6/wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "765910d309e88a9cdbf892eb7c06d89cbd90467c7ff6730502a1495d03f0e1bd",
                "md5": "300b30737f8408747038933277eca4f0",
                "sha256": "f5ab517598115ce6d4b937ef7669df6b185906454ea4fd57942b757f29831016"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "300b30737f8408747038933277eca4f0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 414887,
            "upload_time": "2025-01-20T16:43:57",
            "upload_time_iso_8601": "2025-01-20T16:43:57.855631Z",
            "url": "https://files.pythonhosted.org/packages/76/59/10d309e88a9cdbf892eb7c06d89cbd90467c7ff6730502a1495d03f0e1bd/wassima-1.2.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0ddc088bbfc12018f8898c815063f98b00ad95b0565ed70505b3d90d3984d6e",
                "md5": "e7d6321accc6ebea8fb8cf33c1e6602f",
                "sha256": "38df4be58b1b7dee70e2f3d1f003ab1d9377ae2e3a455203480f9f4341cb6cbc"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e7d6321accc6ebea8fb8cf33c1e6602f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 125846,
            "upload_time": "2025-01-20T16:43:59",
            "upload_time_iso_8601": "2025-01-20T16:43:59.219973Z",
            "url": "https://files.pythonhosted.org/packages/c0/dd/c088bbfc12018f8898c815063f98b00ad95b0565ed70505b3d90d3984d6e/wassima-1.2.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f84b1cb57e37d515618d28a0e7592256641e94bd93ccaf0afa5e8d6f26cac90",
                "md5": "b4090df4842414d8589015c41cf46604",
                "sha256": "559fe986f616d0119069d4a21009b920ada0567dfdee6a218e2d0e61e36b61fd"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4090df4842414d8589015c41cf46604",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 246426,
            "upload_time": "2025-01-20T16:44:00",
            "upload_time_iso_8601": "2025-01-20T16:44:00.725330Z",
            "url": "https://files.pythonhosted.org/packages/8f/84/b1cb57e37d515618d28a0e7592256641e94bd93ccaf0afa5e8d6f26cac90/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a52f38f652f7eb6d130764925e70d3324ac8f616bcf03a0d5e374b0e0c494685",
                "md5": "aa32fdef696e959eb32f27273ec32dcf",
                "sha256": "7c1b9eb9ffda03a4dd9b88e8844ffbaff2ac3073acc9831ca32d20387aa9ff14"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "aa32fdef696e959eb32f27273ec32dcf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 253957,
            "upload_time": "2025-01-20T16:44:02",
            "upload_time_iso_8601": "2025-01-20T16:44:02.838378Z",
            "url": "https://files.pythonhosted.org/packages/a5/2f/38f652f7eb6d130764925e70d3324ac8f616bcf03a0d5e374b0e0c494685/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1b689c4f6d06c30eb1e5ef8b0b6e7f07949f845d1dcb807e3204d4d7750f09e",
                "md5": "716ff75a409e1adcc7390d3407474cb9",
                "sha256": "a3b430994ca82d5d9b8cf83df9621125419ab281d32ecd84ddee63f3e2e75962"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "716ff75a409e1adcc7390d3407474cb9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 302898,
            "upload_time": "2025-01-20T16:44:05",
            "upload_time_iso_8601": "2025-01-20T16:44:05.924699Z",
            "url": "https://files.pythonhosted.org/packages/a1/b6/89c4f6d06c30eb1e5ef8b0b6e7f07949f845d1dcb807e3204d4d7750f09e/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "960ee9fba27a06a4d88e2f7e9fa2e6b69067718b605189d4818e1c070382ebe6",
                "md5": "fb083534a1de650aa7613ce882d0394a",
                "sha256": "74a57cf329c310d871d2d0ab22e430c389c5e5fd028bb38a96ba9637d3e320fb"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "fb083534a1de650aa7613ce882d0394a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 301771,
            "upload_time": "2025-01-20T16:44:04",
            "upload_time_iso_8601": "2025-01-20T16:44:04.293806Z",
            "url": "https://files.pythonhosted.org/packages/96/0e/e9fba27a06a4d88e2f7e9fa2e6b69067718b605189d4818e1c070382ebe6/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e3846dd771452de4ad6fc6b57c7d217873ab9d3ffcad70b6ef4126696cee64b",
                "md5": "f00ae73a8a1fff83d70a38a86a358940",
                "sha256": "a142fd068767cb36fb63cf8520a283372c16f3e40ab2c0d956427ad0592dc3bb"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f00ae73a8a1fff83d70a38a86a358940",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 283766,
            "upload_time": "2025-01-20T16:44:07",
            "upload_time_iso_8601": "2025-01-20T16:44:07.472575Z",
            "url": "https://files.pythonhosted.org/packages/5e/38/46dd771452de4ad6fc6b57c7d217873ab9d3ffcad70b6ef4126696cee64b/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fd6a1cac36e44cdad9e0d846fe46572c045fb45cd4c40863cdced8af8196daa",
                "md5": "4e1791d11954a7a3f7134c9dc00d7302",
                "sha256": "71f95728c2757d04708225e20acfe581f271ed8bc6a136b70d23966c1945ea97"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e1791d11954a7a3f7134c9dc00d7302",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 247542,
            "upload_time": "2025-01-20T16:44:09",
            "upload_time_iso_8601": "2025-01-20T16:44:09.833327Z",
            "url": "https://files.pythonhosted.org/packages/9f/d6/a1cac36e44cdad9e0d846fe46572c045fb45cd4c40863cdced8af8196daa/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1b905b29f4db056593dacfc9e1676a89c51697970a7dc9932aa38c4b78e71b6",
                "md5": "c2a9b568c28ae8c54f728ddd6278b24e",
                "sha256": "cccb86cc3c9320862bbc5c0effb69a5130fdac196cdecd98105035ff1259fd49"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c2a9b568c28ae8c54f728ddd6278b24e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 263393,
            "upload_time": "2025-01-20T16:44:11",
            "upload_time_iso_8601": "2025-01-20T16:44:11.226041Z",
            "url": "https://files.pythonhosted.org/packages/f1/b9/05b29f4db056593dacfc9e1676a89c51697970a7dc9932aa38c4b78e71b6/wassima-1.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37f7fcbb56023a1a5b7016d259d84fbb36d215ec066024f707c34f91de61b19e",
                "md5": "29dae7e5e7e3c9414abf1baf5cdb839e",
                "sha256": "39de4204dd4189ac7308740a562e0500def62862837d81f4e3bbf92cdb511be5"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "29dae7e5e7e3c9414abf1baf5cdb839e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 420597,
            "upload_time": "2025-01-20T16:44:12",
            "upload_time_iso_8601": "2025-01-20T16:44:12.629136Z",
            "url": "https://files.pythonhosted.org/packages/37/f7/fcbb56023a1a5b7016d259d84fbb36d215ec066024f707c34f91de61b19e/wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05fefb6b190502f439f2552000cc7c8f307c91f205d53519351ea5643c13035b",
                "md5": "4196abc8c3b90bb1321d5b91691e0b4d",
                "sha256": "712fef836bb5c81508554ecc5761ac018c9f435c394c1e1ae7067d1e5ffa10df"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4196abc8c3b90bb1321d5b91691e0b4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 512595,
            "upload_time": "2025-01-20T16:44:14",
            "upload_time_iso_8601": "2025-01-20T16:44:14.430514Z",
            "url": "https://files.pythonhosted.org/packages/05/fe/fb6b190502f439f2552000cc7c8f307c91f205d53519351ea5643c13035b/wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f32161e272bb4adf7d0fba1b6e5d189af99744da461ce345723e7dbb0abef5b",
                "md5": "2b67c920a1e7d61cdf10a53aa5d7993f",
                "sha256": "f9cfa861f5a04c4d4d956ce523400771db29beabc7a76747d14e5a811898e4a8"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2b67c920a1e7d61cdf10a53aa5d7993f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 440547,
            "upload_time": "2025-01-20T16:44:15",
            "upload_time_iso_8601": "2025-01-20T16:44:15.961251Z",
            "url": "https://files.pythonhosted.org/packages/1f/32/161e272bb4adf7d0fba1b6e5d189af99744da461ce345723e7dbb0abef5b/wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d56753c92111c0f9529fdf15ab05079a7d744aff8ab49acace5ca38f174799e0",
                "md5": "9384202d60646cacde234446938d782f",
                "sha256": "1aad483311b361423cff4c4dff8447453f474e96d11c257fb506443f62f1be1a"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9384202d60646cacde234446938d782f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 414888,
            "upload_time": "2025-01-20T16:44:18",
            "upload_time_iso_8601": "2025-01-20T16:44:18.476338Z",
            "url": "https://files.pythonhosted.org/packages/d5/67/53c92111c0f9529fdf15ab05079a7d744aff8ab49acace5ca38f174799e0/wassima-1.2.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65907288eca10689cf39a1a708ab656c4d97055c779e8f2959e0dceb403b0fff",
                "md5": "4f478aed6bb9f13ee5b4fb4c0d0f0be0",
                "sha256": "0043cd8f6a83fe392d214e309e46cb3a510a1d6645b833f08c35a3a8905c1c80"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f478aed6bb9f13ee5b4fb4c0d0f0be0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 125845,
            "upload_time": "2025-01-20T16:44:19",
            "upload_time_iso_8601": "2025-01-20T16:44:19.981752Z",
            "url": "https://files.pythonhosted.org/packages/65/90/7288eca10689cf39a1a708ab656c4d97055c779e8f2959e0dceb403b0fff/wassima-1.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e4d9c47a046358f34e4a70a47aa00930c806744d39ad8d890097290a23b1518",
                "md5": "7e3b5ece05b8a0c6d09ccbae5b593d0b",
                "sha256": "b96b3e332571d896340067de1283858a63cd378bd38496c3a29755e7b361a71f"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e3b5ece05b8a0c6d09ccbae5b593d0b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 246439,
            "upload_time": "2025-01-20T16:44:21",
            "upload_time_iso_8601": "2025-01-20T16:44:21.751214Z",
            "url": "https://files.pythonhosted.org/packages/0e/4d/9c47a046358f34e4a70a47aa00930c806744d39ad8d890097290a23b1518/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46107d4b2ace7d3efb8833925db3c67095c9b69bebacb13260e0b09236b1c285",
                "md5": "3c9055f76b2cb91a2dcba8267e91207d",
                "sha256": "b8dd2ffb79cfcab9e80a1fad3da6d81c2a963f193a911acf885fd765646b0952"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3c9055f76b2cb91a2dcba8267e91207d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 253986,
            "upload_time": "2025-01-20T16:44:24",
            "upload_time_iso_8601": "2025-01-20T16:44:24.731574Z",
            "url": "https://files.pythonhosted.org/packages/46/10/7d4b2ace7d3efb8833925db3c67095c9b69bebacb13260e0b09236b1c285/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1712727b90fa0a167cf977351ee23aa563cd2a19933a713881d30a1b4b4bab28",
                "md5": "c97ad1d37b1fcce631f13067340f283a",
                "sha256": "46fc280a5e75582f3c685ba2bc78308a5d5ac9ac81a1772377934fdb4281428c"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c97ad1d37b1fcce631f13067340f283a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 302913,
            "upload_time": "2025-01-20T16:44:37",
            "upload_time_iso_8601": "2025-01-20T16:44:37.647177Z",
            "url": "https://files.pythonhosted.org/packages/17/12/727b90fa0a167cf977351ee23aa563cd2a19933a713881d30a1b4b4bab28/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dac50edd58b54b24cd293f1375747b449f9d8c652e99d9dbf2f9721a82f4b8dc",
                "md5": "3cea527ad6beaebd7489faacf8b280ec",
                "sha256": "3091056f6d6ac8ec4a364248b2d719c4744f114b87d2eec36e25c3ac707a085f"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "3cea527ad6beaebd7489faacf8b280ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 301737,
            "upload_time": "2025-01-20T16:44:36",
            "upload_time_iso_8601": "2025-01-20T16:44:36.007642Z",
            "url": "https://files.pythonhosted.org/packages/da/c5/0edd58b54b24cd293f1375747b449f9d8c652e99d9dbf2f9721a82f4b8dc/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e19cbb09a0834f494634ea8d3db29ff14c63ca7805afc62ba174118a373f1e0e",
                "md5": "2417d97743dbc708d97211a215507fa9",
                "sha256": "819b3a509127bd8765a2516d789aa3494ebebeb451dd130029f10bba1a73d1e0"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2417d97743dbc708d97211a215507fa9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 283819,
            "upload_time": "2025-01-20T16:44:39",
            "upload_time_iso_8601": "2025-01-20T16:44:39.262174Z",
            "url": "https://files.pythonhosted.org/packages/e1/9c/bb09a0834f494634ea8d3db29ff14c63ca7805afc62ba174118a373f1e0e/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41e1e8afcea9747eaec5bb9bec3850cb22230efa8eff5a26a1c63a776463cd0a",
                "md5": "40f00f2af066c15a1f51d2ac5df6959f",
                "sha256": "cf88e8990991b03ad3a6eff147814734a304f1f6c0e54743eab4a9be072f29f1"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40f00f2af066c15a1f51d2ac5df6959f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 247591,
            "upload_time": "2025-01-20T16:44:40",
            "upload_time_iso_8601": "2025-01-20T16:44:40.635060Z",
            "url": "https://files.pythonhosted.org/packages/41/e1/e8afcea9747eaec5bb9bec3850cb22230efa8eff5a26a1c63a776463cd0a/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f2d57a83eafd4e23e905cb948d8a2833caec9f3dbcc1756139b7aed1c95fe99",
                "md5": "ce75aa39d3e710a7af2f14337ff8426c",
                "sha256": "b914e67e7b324168a2235f677b3271463fe81911b975c24f37b210255b6e1d08"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ce75aa39d3e710a7af2f14337ff8426c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 263425,
            "upload_time": "2025-01-20T16:44:42",
            "upload_time_iso_8601": "2025-01-20T16:44:42.021475Z",
            "url": "https://files.pythonhosted.org/packages/0f/2d/57a83eafd4e23e905cb948d8a2833caec9f3dbcc1756139b7aed1c95fe99/wassima-1.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "181a003ae19afb59df03c22958be887ae4d73c496bb3f98876f8ce833682dd96",
                "md5": "74b606c749f55e7b420b5b28a4dd04ef",
                "sha256": "8956a211318c2c8f4866623d7e3e038dc2c3bd3788a165f1417180c8b784433b"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74b606c749f55e7b420b5b28a4dd04ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 420597,
            "upload_time": "2025-01-20T16:44:44",
            "upload_time_iso_8601": "2025-01-20T16:44:44.344003Z",
            "url": "https://files.pythonhosted.org/packages/18/1a/003ae19afb59df03c22958be887ae4d73c496bb3f98876f8ce833682dd96/wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05e45426329324fd070e7511e49007cec47fd455d5516c45f38d8864ea03bd97",
                "md5": "33f12ce1a9a3a7c7bff6328d93b457a3",
                "sha256": "5cfbe4f1a09f9f775062a2aefc504ea0838e703b6b4d41f53efd0629c6e216f7"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "33f12ce1a9a3a7c7bff6328d93b457a3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 512587,
            "upload_time": "2025-01-20T16:44:45",
            "upload_time_iso_8601": "2025-01-20T16:44:45.838129Z",
            "url": "https://files.pythonhosted.org/packages/05/e4/5426329324fd070e7511e49007cec47fd455d5516c45f38d8864ea03bd97/wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30dda2067490962c3974606a82b8d44ad46f944e325dcd181615ec625e521e43",
                "md5": "1946dcc3f8136d130f42c8362ef15bf9",
                "sha256": "3d8e59dfb7b20c0235d3a80d8f18db22ff71b41c9cdb21195829868789212173"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1946dcc3f8136d130f42c8362ef15bf9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 440576,
            "upload_time": "2025-01-20T16:44:47",
            "upload_time_iso_8601": "2025-01-20T16:44:47.909346Z",
            "url": "https://files.pythonhosted.org/packages/30/dd/a2067490962c3974606a82b8d44ad46f944e325dcd181615ec625e521e43/wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d903d989fe191ff2bef1be163351a9f7ded67686248e953d57df02431809858a",
                "md5": "f2a7d6158e6a8ba748ae1c5010cbf91d",
                "sha256": "325d296014d763e45777c4bad8df1bfa3f7b5d13014f8d32be5e9d9081d0c912"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2a7d6158e6a8ba748ae1c5010cbf91d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 414935,
            "upload_time": "2025-01-20T16:44:49",
            "upload_time_iso_8601": "2025-01-20T16:44:49.413500Z",
            "url": "https://files.pythonhosted.org/packages/d9/03/d989fe191ff2bef1be163351a9f7ded67686248e953d57df02431809858a/wassima-1.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "627c7558d6bece2978a24c5ad3ffbf5ef1972592897a3a8769f17b348f63f66a",
                "md5": "51ac4c89e79b026ba78f7be4ef01ada4",
                "sha256": "5192f8f0375e3cf007d1de88b8d73ab778fbb14d947bcc3b6bdf8eca7dc44451"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51ac4c89e79b026ba78f7be4ef01ada4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 125857,
            "upload_time": "2025-01-20T16:44:51",
            "upload_time_iso_8601": "2025-01-20T16:44:51.362803Z",
            "url": "https://files.pythonhosted.org/packages/62/7c/7558d6bece2978a24c5ad3ffbf5ef1972592897a3a8769f17b348f63f66a/wassima-1.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54c1aada1f5e782f187451c1f876eb262d42a5c1fbd5f608a88bbda1199a1585",
                "md5": "d2f29ed77eb8a646200ec5b5ec99049c",
                "sha256": "421844634c2e0c48c5d4fa962c07f7346c1a00ae8d73aeab503356db8ba95701"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d2f29ed77eb8a646200ec5b5ec99049c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7653,
            "upload_time": "2025-01-20T16:44:52",
            "upload_time_iso_8601": "2025-01-20T16:44:52.688450Z",
            "url": "https://files.pythonhosted.org/packages/54/c1/aada1f5e782f187451c1f876eb262d42a5c1fbd5f608a88bbda1199a1585/wassima-1.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7eb2c1d47c3a397b24c3e9d240ea57186becfd10728c9ed3847f91437b366fab",
                "md5": "1d27e353943c7046ff6fbcbbfaedc2ec",
                "sha256": "7798ed43e337a618650383d1630c6b66efd65ccedbd61726a3fdaab752f677a4"
            },
            "downloads": -1,
            "filename": "wassima-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "1d27e353943c7046ff6fbcbbfaedc2ec",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 16915,
            "upload_time": "2025-01-20T16:44:55",
            "upload_time_iso_8601": "2025-01-20T16:44:55.057121Z",
            "url": "https://files.pythonhosted.org/packages/7e/b2/c1d47c3a397b24c3e9d240ea57186becfd10728c9ed3847f91437b366fab/wassima-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-20 16:44:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jawah",
    "github_project": "wassima",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "wassima"
}
        
Elapsed time: 1.53344s