<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/7d/aa/df0023f78cd1120c116b5c9bdfd3345678c65d6a8b2da559a8ecc54c66b1/wassima-1.2.2.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": "MIT",
"summary": "Access your OS root certificates with utmost ease",
"version": "1.2.2",
"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": "cb24884bbcfc79216a9733e26c01854dfb32b6c8fd454dd4b59f56627cdbfb40",
"md5": "8088e816ede02a57b2095f1abb044878",
"sha256": "134e863b692c35afe8f5ccbe8082fa39963804e20439a4c7aa98510197034704"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8088e816ede02a57b2095f1abb044878",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 246230,
"upload_time": "2025-03-07T08:03:53",
"upload_time_iso_8601": "2025-03-07T08:03:53.323562Z",
"url": "https://files.pythonhosted.org/packages/cb/24/884bbcfc79216a9733e26c01854dfb32b6c8fd454dd4b59f56627cdbfb40/wassima-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12453251c0e27f2ffb64d58208259ec130841d537b93c438a695a12e4416c137",
"md5": "c61c624643acc3322e272d3632dabb4c",
"sha256": "57a0ab5aed596f129fd4ea7584336b11fbef25c07d1351e37a959901dea8728e"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c61c624643acc3322e272d3632dabb4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 253044,
"upload_time": "2025-03-07T08:03:54",
"upload_time_iso_8601": "2025-03-07T08:03:54.925075Z",
"url": "https://files.pythonhosted.org/packages/12/45/3251c0e27f2ffb64d58208259ec130841d537b93c438a695a12e4416c137/wassima-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c85b7fc3555c2327b6cea4e5c7c8ddf486c37624f25999164d97463531fea204",
"md5": "ba16f188d2124f41c3f4f111f82ff892",
"sha256": "597b0d8ba697f4319bc1f301ed31630ca783c9fe82d2a2434dd2f7f709c4e394"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ba16f188d2124f41c3f4f111f82ff892",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 302118,
"upload_time": "2025-03-07T08:03:58",
"upload_time_iso_8601": "2025-03-07T08:03:58.411383Z",
"url": "https://files.pythonhosted.org/packages/c8/5b/7fc3555c2327b6cea4e5c7c8ddf486c37624f25999164d97463531fea204/wassima-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f772df13c1c6e0ad4dd0691a8aa511d63d6f66e96ffc7465716c4d1cd847dbf",
"md5": "6453b35a7ae17989dfd06fd93bbe9569",
"sha256": "b22e356914e606ff398c002b9925df4454c5deca9dbe55b3ba4a5c9b2365cf0f"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "6453b35a7ae17989dfd06fd93bbe9569",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 302385,
"upload_time": "2025-03-07T08:03:57",
"upload_time_iso_8601": "2025-03-07T08:03:57.040649Z",
"url": "https://files.pythonhosted.org/packages/1f/77/2df13c1c6e0ad4dd0691a8aa511d63d6f66e96ffc7465716c4d1cd847dbf/wassima-1.2.2-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4737ec5d78877e96fd8fde2ce29d5b42c837237bc8ade2cd7a0e03e646d92617",
"md5": "d561c626dd1574fc0843a124da70432d",
"sha256": "98bdfdf734144277132f34f770eeb6b0db2c4de87415f34b178adee766632f24"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d561c626dd1574fc0843a124da70432d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 282885,
"upload_time": "2025-03-07T08:03:59",
"upload_time_iso_8601": "2025-03-07T08:03:59.740115Z",
"url": "https://files.pythonhosted.org/packages/47/37/ec5d78877e96fd8fde2ce29d5b42c837237bc8ade2cd7a0e03e646d92617/wassima-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3edf769cdf30f0b446e476750a678ec71bb8047f3168fa00f9a9ced2451c3fde",
"md5": "944dc9f5349e26ee283ca96a7c8313ed",
"sha256": "a634b9b79e059f45a56ff3ef6e7241662bc6f0e5a096ee6eed6770ea368e8278"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "944dc9f5349e26ee283ca96a7c8313ed",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 247361,
"upload_time": "2025-03-07T08:04:01",
"upload_time_iso_8601": "2025-03-07T08:04:01.433249Z",
"url": "https://files.pythonhosted.org/packages/3e/df/769cdf30f0b446e476750a678ec71bb8047f3168fa00f9a9ced2451c3fde/wassima-1.2.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "deb6badd8f9201c16bec2b4cbd07243aba4fd3dcf05b560cdd82a888de9ec4d0",
"md5": "a6464a12aab61bc608835f678015646c",
"sha256": "7db25328c40cd574e5a68ef6507c5af4d1fa2a44cb3c028ff9ca6b522f8faf32"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a6464a12aab61bc608835f678015646c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 263890,
"upload_time": "2025-03-07T08:04:02",
"upload_time_iso_8601": "2025-03-07T08:04:02.669339Z",
"url": "https://files.pythonhosted.org/packages/de/b6/badd8f9201c16bec2b4cbd07243aba4fd3dcf05b560cdd82a888de9ec4d0/wassima-1.2.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c01f24795039451864eaa5b20733ba7e73b1ba2544eb9cfd90dc807685029ebf",
"md5": "3a9ffcc88e7a48b4d7bba49797337bb5",
"sha256": "12c855cc5b96a2ac32d405ab7de1563fc91be54108b4fb16b06d125d07ea892b"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3a9ffcc88e7a48b4d7bba49797337bb5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 424098,
"upload_time": "2025-03-07T08:04:04",
"upload_time_iso_8601": "2025-03-07T08:04:04.190174Z",
"url": "https://files.pythonhosted.org/packages/c0/1f/24795039451864eaa5b20733ba7e73b1ba2544eb9cfd90dc807685029ebf/wassima-1.2.2-cp313-cp313t-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0310a05d84e853b5c8fa6d926a6fd73594390951a994c985f90df3ff17e1a25e",
"md5": "23cbae224d2addbb360a703f3f126d3e",
"sha256": "52f473233ec4d57322c6295e85b3912dc1fc400d6308a04bd427b863934aa74e"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "23cbae224d2addbb360a703f3f126d3e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 515834,
"upload_time": "2025-03-07T08:04:05",
"upload_time_iso_8601": "2025-03-07T08:04:05.550434Z",
"url": "https://files.pythonhosted.org/packages/03/10/a05d84e853b5c8fa6d926a6fd73594390951a994c985f90df3ff17e1a25e/wassima-1.2.2-cp313-cp313t-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd302ad442751b2da63d3d56abf977dce66d5629eec1a4b2d602e686ca54f091",
"md5": "52ab5a4906cf4ba68915eaed0cae92d0",
"sha256": "fa1f38d5583d283b40f998e2f13471bfa952e0c423ff95ec2ec329f3e1898107"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "52ab5a4906cf4ba68915eaed0cae92d0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 444053,
"upload_time": "2025-03-07T08:04:07",
"upload_time_iso_8601": "2025-03-07T08:04:07.369878Z",
"url": "https://files.pythonhosted.org/packages/bd/30/2ad442751b2da63d3d56abf977dce66d5629eec1a4b2d602e686ca54f091/wassima-1.2.2-cp313-cp313t-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "358b5b643e4ce86a001b0803f8ee11f7a49218c064c0504f8ada95dd416781e4",
"md5": "a21a9fa2581876051377e626efd65b40",
"sha256": "98f38b1b01e6f270b9279d76261d6f222b72ef06b025cbd4911b962bb6de4c98"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a21a9fa2581876051377e626efd65b40",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 418048,
"upload_time": "2025-03-07T08:04:08",
"upload_time_iso_8601": "2025-03-07T08:04:08.702089Z",
"url": "https://files.pythonhosted.org/packages/35/8b/5b643e4ce86a001b0803f8ee11f7a49218c064c0504f8ada95dd416781e4/wassima-1.2.2-cp313-cp313t-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22b415da9ffaf2c1cb1c9b6e0f7d55fe95ef5dbd093f80eacc57a6c98b973c84",
"md5": "8f5830b4366eb50f56043bee6d9d5fbc",
"sha256": "b8c0f50397c51086df941b48057c82f85d9da000bf4fe6f4bc64c4f649b26a5b"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f5830b4366eb50f56043bee6d9d5fbc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 125853,
"upload_time": "2025-03-07T08:04:09",
"upload_time_iso_8601": "2025-03-07T08:04:09.943718Z",
"url": "https://files.pythonhosted.org/packages/22/b4/15da9ffaf2c1cb1c9b6e0f7d55fe95ef5dbd093f80eacc57a6c98b973c84/wassima-1.2.2-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c1999aa95b9f99d1a2763225b5824ac3dfd4b512f3b631a1baa67ac755ac3e8",
"md5": "d90476590155ec7afc5d30506668412c",
"sha256": "556cded582aef3089de889b5a6efcf6d87fabfec55d574fcc3a4ada21308d487"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp313-cp313t-win_arm64.whl",
"has_sig": false,
"md5_digest": "d90476590155ec7afc5d30506668412c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 120853,
"upload_time": "2025-03-07T08:04:11",
"upload_time_iso_8601": "2025-03-07T08:04:11.249789Z",
"url": "https://files.pythonhosted.org/packages/5c/19/99aa95b9f99d1a2763225b5824ac3dfd4b512f3b631a1baa67ac755ac3e8/wassima-1.2.2-cp313-cp313t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e35b5927ebb8595d6382576f3ea152065bc4f50994a1a0ca1f5434f4abc2aaa",
"md5": "b6c73252bc230c329875b4919c991600",
"sha256": "18bc78b2230c6f1f9ddbeb6ca38439fea4cc8f60836af4f3538ed259e60e5eb8"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "b6c73252bc230c329875b4919c991600",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 455843,
"upload_time": "2025-03-07T08:04:12",
"upload_time_iso_8601": "2025-03-07T08:04:12.434999Z",
"url": "https://files.pythonhosted.org/packages/5e/35/b5927ebb8595d6382576f3ea152065bc4f50994a1a0ca1f5434f4abc2aaa/wassima-1.2.2-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": "04879da4a76bdbc4b961376d9e7af9673d3efa296be03ea7e0fbc18f1ef24d0f",
"md5": "8ba574fa9505ce5a05f8a3bfa31a2c47",
"sha256": "a470c908fd9baaecf41715ea3c30c57b530d598ae5e9de7e0bd532755e66bb1b"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8ba574fa9505ce5a05f8a3bfa31a2c47",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 246651,
"upload_time": "2025-03-07T08:04:14",
"upload_time_iso_8601": "2025-03-07T08:04:14.121856Z",
"url": "https://files.pythonhosted.org/packages/04/87/9da4a76bdbc4b961376d9e7af9673d3efa296be03ea7e0fbc18f1ef24d0f/wassima-1.2.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a10cda43d2dbb754b4ba896b67e1bef123e52c16675376930a8853f003728520",
"md5": "56bcf74a9eda8c83b823b43c9ef1501a",
"sha256": "c7429d038dc383966c692e752010cbb4d5dab0e515f231aa01cd746aed9db359"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "56bcf74a9eda8c83b823b43c9ef1501a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 254164,
"upload_time": "2025-03-07T08:04:15",
"upload_time_iso_8601": "2025-03-07T08:04:15.798180Z",
"url": "https://files.pythonhosted.org/packages/a1/0c/da43d2dbb754b4ba896b67e1bef123e52c16675376930a8853f003728520/wassima-1.2.2-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18dca0fd94d5ea7b2c6f1dd41fb7b0bc26d773b93cfe25333e4e588afab897ee",
"md5": "e3f431b7eb814b33d3283164c514d5fa",
"sha256": "c139d5b103bb1f085d8918815d62ad946224a658ac1a7cc1b93dc44bd498ff9a"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e3f431b7eb814b33d3283164c514d5fa",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 303276,
"upload_time": "2025-03-07T08:04:19",
"upload_time_iso_8601": "2025-03-07T08:04:19.262404Z",
"url": "https://files.pythonhosted.org/packages/18/dc/a0fd94d5ea7b2c6f1dd41fb7b0bc26d773b93cfe25333e4e588afab897ee/wassima-1.2.2-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e711ae4bc4dc06ec8df870ed88cd2c62a7230494cff12b54b59a4bca5b80715e",
"md5": "af3c2194d7591fa5d680367b6a8c9c2c",
"sha256": "3e00fa8ff1aef7d8aad2e1b957add6cba8549a42e415400bd72ff1b61dc9da9d"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "af3c2194d7591fa5d680367b6a8c9c2c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 303545,
"upload_time": "2025-03-07T08:04:17",
"upload_time_iso_8601": "2025-03-07T08:04:17.472779Z",
"url": "https://files.pythonhosted.org/packages/e7/11/ae4bc4dc06ec8df870ed88cd2c62a7230494cff12b54b59a4bca5b80715e/wassima-1.2.2-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73a11f7c3843fdc04f68aba75105e8498dd69ad71a62e4b50c3a0e18d5609e28",
"md5": "a68b898a5c8d824e89b7640c939f5968",
"sha256": "ee6ccb8197936a308a4034c90a42b30b37c46b7cbda66101d439d6983f59b368"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a68b898a5c8d824e89b7640c939f5968",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 283787,
"upload_time": "2025-03-07T08:04:20",
"upload_time_iso_8601": "2025-03-07T08:04:20.477408Z",
"url": "https://files.pythonhosted.org/packages/73/a1/1f7c3843fdc04f68aba75105e8498dd69ad71a62e4b50c3a0e18d5609e28/wassima-1.2.2-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c824dbefd01b7611271993f8440b464d47425ce42c7192bbdb5925211f24405a",
"md5": "a99ea933cb7726ac386621b059295469",
"sha256": "24bdb1a2b90c215e11ed7ce82ed7eada339c7dca8e0366916e4e3215b3b9d8d3"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a99ea933cb7726ac386621b059295469",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 247921,
"upload_time": "2025-03-07T08:04:22",
"upload_time_iso_8601": "2025-03-07T08:04:22.282849Z",
"url": "https://files.pythonhosted.org/packages/c8/24/dbefd01b7611271993f8440b464d47425ce42c7192bbdb5925211f24405a/wassima-1.2.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66eee75cd4bbabf4616a19e9a7ab3e1fccbb0e10caa960ee1e4f92ca66540671",
"md5": "c0b2146ad0bad419a53cea353a69195a",
"sha256": "6d23e9483756b81850b82e8b7ed20fd23de22b50d6a678f765c660d4206b7ce9"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c0b2146ad0bad419a53cea353a69195a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 265203,
"upload_time": "2025-03-07T08:04:23",
"upload_time_iso_8601": "2025-03-07T08:04:23.497706Z",
"url": "https://files.pythonhosted.org/packages/66/ee/e75cd4bbabf4616a19e9a7ab3e1fccbb0e10caa960ee1e4f92ca66540671/wassima-1.2.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a10c625b2dffc749256ec8b01ad76c039d96d1a2872f0248a4f79d9d1914a878",
"md5": "d066f01edf92e0ec8d7c0cb9e8847fdd",
"sha256": "eea9c37b45e73cebb4670afd1779db138eeff0f84ffc0871d2fb90c04c8d3aa8"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d066f01edf92e0ec8d7c0cb9e8847fdd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 424384,
"upload_time": "2025-03-07T08:04:24",
"upload_time_iso_8601": "2025-03-07T08:04:24.969197Z",
"url": "https://files.pythonhosted.org/packages/a1/0c/625b2dffc749256ec8b01ad76c039d96d1a2872f0248a4f79d9d1914a878/wassima-1.2.2-cp37-abi3-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53242bf1d29c58eb3e0ca42e94b924e8501311081942b7164d4e0f71447af238",
"md5": "dbd114d9c00c6a6da782c70da230f3cf",
"sha256": "6b7d696155ddd7ab5739ac221e8854115d0d8171bbf805074d9484083de386aa"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "dbd114d9c00c6a6da782c70da230f3cf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 516895,
"upload_time": "2025-03-07T08:04:26",
"upload_time_iso_8601": "2025-03-07T08:04:26.638129Z",
"url": "https://files.pythonhosted.org/packages/53/24/2bf1d29c58eb3e0ca42e94b924e8501311081942b7164d4e0f71447af238/wassima-1.2.2-cp37-abi3-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4778d63019e6516558af4e985df4a1388363cca6d04852d2c928a77613179530",
"md5": "e6f84a9825125a3cec1c2ad072d28da2",
"sha256": "d855d0be1759c5efc404c04977ee48a8b6260aef6441e72c10973924dbde5a73"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e6f84a9825125a3cec1c2ad072d28da2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 445289,
"upload_time": "2025-03-07T08:04:28",
"upload_time_iso_8601": "2025-03-07T08:04:28.743542Z",
"url": "https://files.pythonhosted.org/packages/47/78/d63019e6516558af4e985df4a1388363cca6d04852d2c928a77613179530/wassima-1.2.2-cp37-abi3-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3323f3a171eaf395564471ba3d1739ca3449df07af0c7088677f25a145a60d1",
"md5": "380ee2363c2037696776c1e12dec04cc",
"sha256": "58f1fddd660da8c8f30f4b8460129e2f217c226cd1b54b1cabb6465881fd788a"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "380ee2363c2037696776c1e12dec04cc",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 418599,
"upload_time": "2025-03-07T08:04:30",
"upload_time_iso_8601": "2025-03-07T08:04:30.033727Z",
"url": "https://files.pythonhosted.org/packages/b3/32/3f3a171eaf395564471ba3d1739ca3449df07af0c7088677f25a145a60d1/wassima-1.2.2-cp37-abi3-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60d75f5a9f88474f6cfaafe7bb4a47f10f609527b1fa17c491b6870d7de41bda",
"md5": "9e2de9b707aa15851ff1d2b7ef78971a",
"sha256": "dea0dcc0e50978ef73be8cb384694b71a6e64b46847ee7decad96dc85fbf650c"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-win32.whl",
"has_sig": false,
"md5_digest": "9e2de9b707aa15851ff1d2b7ef78971a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 121149,
"upload_time": "2025-03-07T08:04:31",
"upload_time_iso_8601": "2025-03-07T08:04:31.340376Z",
"url": "https://files.pythonhosted.org/packages/60/d7/5f5a9f88474f6cfaafe7bb4a47f10f609527b1fa17c491b6870d7de41bda/wassima-1.2.2-cp37-abi3-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "345e5465cbfc1b9af8b26fe8159c5de2cc4442f13cea02702cd72dae1d3e348c",
"md5": "68aa687fe1932c945b76901e44a37a3d",
"sha256": "cb7d43c07d58ba13736e70dc3e064496efeb1ed4475a28afb26b7a3b030b89df"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-win_amd64.whl",
"has_sig": false,
"md5_digest": "68aa687fe1932c945b76901e44a37a3d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 126099,
"upload_time": "2025-03-07T08:04:32",
"upload_time_iso_8601": "2025-03-07T08:04:32.504059Z",
"url": "https://files.pythonhosted.org/packages/34/5e/5465cbfc1b9af8b26fe8159c5de2cc4442f13cea02702cd72dae1d3e348c/wassima-1.2.2-cp37-abi3-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb47c2f18ae972a89c029e50c3b08caf8202268d6cbf0318e41aa7fb9e232b67",
"md5": "a9da90fe63cf1f2b26d7e430721ff2d6",
"sha256": "ae2aec9d55e108ae2d22fd0bda24450a6c13c116f9698b9e7ba2c6492c4fe715"
},
"downloads": -1,
"filename": "wassima-1.2.2-cp37-abi3-win_arm64.whl",
"has_sig": false,
"md5_digest": "a9da90fe63cf1f2b26d7e430721ff2d6",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 121249,
"upload_time": "2025-03-07T08:04:33",
"upload_time_iso_8601": "2025-03-07T08:04:33.736454Z",
"url": "https://files.pythonhosted.org/packages/eb/47/c2f18ae972a89c029e50c3b08caf8202268d6cbf0318e41aa7fb9e232b67/wassima-1.2.2-cp37-abi3-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2de3a4f0a9441e020c3b912e981af0b7ae99dae2751dbba98691b128f87c0428",
"md5": "b52a3ca9bcdb4c119991d66dbdf845df",
"sha256": "c0d246b3f8a771578279eab9cfcb820dedefd3dd5dc0e34b37a337fe46271fc0"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b52a3ca9bcdb4c119991d66dbdf845df",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 247343,
"upload_time": "2025-03-07T08:04:35",
"upload_time_iso_8601": "2025-03-07T08:04:35.662320Z",
"url": "https://files.pythonhosted.org/packages/2d/e3/a4f0a9441e020c3b912e981af0b7ae99dae2751dbba98691b128f87c0428/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20d18d8a67833085cacd861ec3d3a84cd80e3f310e977ce5219f9c2ca45a733b",
"md5": "22aea642ad9f93f82a279cf0371d2270",
"sha256": "17f132ffbab294902f8740708f27fd995ea04182fe4b4fde20be563f8a010715"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "22aea642ad9f93f82a279cf0371d2270",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 254570,
"upload_time": "2025-03-07T08:04:36",
"upload_time_iso_8601": "2025-03-07T08:04:36.974315Z",
"url": "https://files.pythonhosted.org/packages/20/d1/8d8a67833085cacd861ec3d3a84cd80e3f310e977ce5219f9c2ca45a733b/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d85db47bad1cb1639fec2cc9ff31653a8379234257351b509ca2e5f5606f46cc",
"md5": "2f4fb4273e06244fed0eb73e763e02e6",
"sha256": "1b18ec743ab98dcbfc221749026b23fc573891651342f20971e53bdbf56d28ae"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2f4fb4273e06244fed0eb73e763e02e6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 303834,
"upload_time": "2025-03-07T08:04:39",
"upload_time_iso_8601": "2025-03-07T08:04:39.530700Z",
"url": "https://files.pythonhosted.org/packages/d8/5d/b47bad1cb1639fec2cc9ff31653a8379234257351b509ca2e5f5606f46cc/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a5b3e4914ebd5152c854848a8c1ed3554df1e8ed7ce38a3ce85eac9d502f6b9",
"md5": "4ee1bed50a641074204a5ddc9660fcaa",
"sha256": "69cb51f629d118256da3d2373575190c7e30d3fa67c344dc655f6c8ab3e83f0d"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "4ee1bed50a641074204a5ddc9660fcaa",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 304103,
"upload_time": "2025-03-07T08:04:38",
"upload_time_iso_8601": "2025-03-07T08:04:38.287127Z",
"url": "https://files.pythonhosted.org/packages/7a/5b/3e4914ebd5152c854848a8c1ed3554df1e8ed7ce38a3ce85eac9d502f6b9/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "465bfb3fbd3895a4b2c79404e004a41a79168549a5c22f1817fb0fea12c30d6d",
"md5": "4a9e8e0499f085e6f38973a8ee97f140",
"sha256": "194c3fad38603618dec03307d10a4ece852516df56560e04fb2562506f79c175"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4a9e8e0499f085e6f38973a8ee97f140",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 284711,
"upload_time": "2025-03-07T08:04:40",
"upload_time_iso_8601": "2025-03-07T08:04:40.746535Z",
"url": "https://files.pythonhosted.org/packages/46/5b/fb3fbd3895a4b2c79404e004a41a79168549a5c22f1817fb0fea12c30d6d/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1cbbc06f4743a31f279ab73824e3827d0d98e35954068dd8e3cfba96fbfda870",
"md5": "1c853d3ac4f4ee6f3f76d5c3bf0ad295",
"sha256": "b08c1931c44e3c034e645f3e3a7f4c47e8b0758fb8f09a52d1e880a307a1066f"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1c853d3ac4f4ee6f3f76d5c3bf0ad295",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 248772,
"upload_time": "2025-03-07T08:04:42",
"upload_time_iso_8601": "2025-03-07T08:04:42.013806Z",
"url": "https://files.pythonhosted.org/packages/1c/bb/c06f4743a31f279ab73824e3827d0d98e35954068dd8e3cfba96fbfda870/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "462f94cced7b1e33b101355aa05ef9974ed2a2fc8b1e7747e8531a131b7db7e3",
"md5": "7b73f08b58416dfc7283df33831cc045",
"sha256": "1102836ba373912537eba891e7e5893532d4ee915ee2486e981b73f925f63c37"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7b73f08b58416dfc7283df33831cc045",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 265506,
"upload_time": "2025-03-07T08:04:43",
"upload_time_iso_8601": "2025-03-07T08:04:43.285865Z",
"url": "https://files.pythonhosted.org/packages/46/2f/94cced7b1e33b101355aa05ef9974ed2a2fc8b1e7747e8531a131b7db7e3/wassima-1.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "599ab553492f78d038211546b2e877521518612bef810912b13819d98f682679",
"md5": "a52f9811bdbeb6839b40e38a2864db8a",
"sha256": "8b719755d556649f2fbf226cf1ca8581ade114751df1facec96f94e75bffdb3c"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "a52f9811bdbeb6839b40e38a2864db8a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 425172,
"upload_time": "2025-03-07T08:04:44",
"upload_time_iso_8601": "2025-03-07T08:04:44.533606Z",
"url": "https://files.pythonhosted.org/packages/59/9a/b553492f78d038211546b2e877521518612bef810912b13819d98f682679/wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e1aa5a386aded6f0cbfb43cc57bec9cdc4a50ddf7d3ee5aade82cede67358cd",
"md5": "a5842506623df44d00407ffb72870e97",
"sha256": "11887557464e0c3f9694fb16406bb56c1fb1566178cd04bfb5b4624fad183b31"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "a5842506623df44d00407ffb72870e97",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 517310,
"upload_time": "2025-03-07T08:04:46",
"upload_time_iso_8601": "2025-03-07T08:04:46.292420Z",
"url": "https://files.pythonhosted.org/packages/5e/1a/a5a386aded6f0cbfb43cc57bec9cdc4a50ddf7d3ee5aade82cede67358cd/wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ba320437691a82c76be52b315225cf866cc49e4b11ecccfb3c8a52185d3bc27",
"md5": "a59b68303fe458aa4c487acd56f1023f",
"sha256": "350b5854dfb3eeb95cd17723b0f3503de0c01454da5ae7d60f192be2009239eb"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a59b68303fe458aa4c487acd56f1023f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 445565,
"upload_time": "2025-03-07T08:04:48",
"upload_time_iso_8601": "2025-03-07T08:04:48.039848Z",
"url": "https://files.pythonhosted.org/packages/9b/a3/20437691a82c76be52b315225cf866cc49e4b11ecccfb3c8a52185d3bc27/wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41b718483f06e09ed66d6bd31dd41ca6a69ef891d917d9bf43fb1c85beea36cd",
"md5": "c9330c35a83b0c254f8c52a9553d77d2",
"sha256": "f9886176fe4bf1ac008c02adb5bd103f1191799f1897777d203ee44f615325a5"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c9330c35a83b0c254f8c52a9553d77d2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 419526,
"upload_time": "2025-03-07T08:04:49",
"upload_time_iso_8601": "2025-03-07T08:04:49.376829Z",
"url": "https://files.pythonhosted.org/packages/41/b7/18483f06e09ed66d6bd31dd41ca6a69ef891d917d9bf43fb1c85beea36cd/wassima-1.2.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55f365ac74233f6284bc3789339c6951624e4515c363074b097aa01be577339f",
"md5": "a2babacacdb98bfc4fb8ab9a6f3cee42",
"sha256": "3f29045dd0a7c287f850f1dc3948632a2d2cf7dd7ec02271c5f248f058da5650"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "a2babacacdb98bfc4fb8ab9a6f3cee42",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 126683,
"upload_time": "2025-03-07T08:04:51",
"upload_time_iso_8601": "2025-03-07T08:04:51.027046Z",
"url": "https://files.pythonhosted.org/packages/55/f3/65ac74233f6284bc3789339c6951624e4515c363074b097aa01be577339f/wassima-1.2.2-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cf5b3232dedd286c13ad7532d710d95ddcfbb3d8275d6f63829809d005f4021",
"md5": "1f4f203d28c4c91698fdc591836c1877",
"sha256": "bc30f5a605a366acb7f301b3421508eaec3c1a515c960791bd776cb63d016302"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1f4f203d28c4c91698fdc591836c1877",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 247020,
"upload_time": "2025-03-07T08:04:52",
"upload_time_iso_8601": "2025-03-07T08:04:52.555925Z",
"url": "https://files.pythonhosted.org/packages/4c/f5/b3232dedd286c13ad7532d710d95ddcfbb3d8275d6f63829809d005f4021/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f83007e2cd7686cd3b97132579473942566c579986141e8af46c6e32156846e9",
"md5": "b470570fc1e6c64ae346884ec8439186",
"sha256": "564eda7bf0420c8cbebe5e8efc15f1b27fdcb37ebc4c2f92b8461ca83381b223"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b470570fc1e6c64ae346884ec8439186",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 254181,
"upload_time": "2025-03-07T08:04:53",
"upload_time_iso_8601": "2025-03-07T08:04:53.794978Z",
"url": "https://files.pythonhosted.org/packages/f8/30/07e2cd7686cd3b97132579473942566c579986141e8af46c6e32156846e9/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d47e9cabd031e10d4692014a57be222cb7b01f85ca0cadb21b07b431ab7cae5",
"md5": "74ff2a97691ccf40b10ede21c2241dbc",
"sha256": "5b194f0de77a4ae7bcf217a3ccd10798e94ca430cec6307628098a61cd2ac230"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "74ff2a97691ccf40b10ede21c2241dbc",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 303624,
"upload_time": "2025-03-07T08:04:56",
"upload_time_iso_8601": "2025-03-07T08:04:56.820516Z",
"url": "https://files.pythonhosted.org/packages/2d/47/e9cabd031e10d4692014a57be222cb7b01f85ca0cadb21b07b431ab7cae5/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42b65e5c738957b8bd9124e83b29ff6e9e78f92149e5e6b99f0ea14a974aa99e",
"md5": "c89aa6309c947aeeaa77398b2fd678c0",
"sha256": "27d518f0863788c826faf387326f3babb3ea95a0b908f5b3ad2bc1fcc3c5a37d"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "c89aa6309c947aeeaa77398b2fd678c0",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 303778,
"upload_time": "2025-03-07T08:04:55",
"upload_time_iso_8601": "2025-03-07T08:04:55.041072Z",
"url": "https://files.pythonhosted.org/packages/42/b6/5e5c738957b8bd9124e83b29ff6e9e78f92149e5e6b99f0ea14a974aa99e/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91ccd3ac60791c962daabc634826d4cb52acb82ae59ff8ed1f04d4ab2c76bb8d",
"md5": "94f64d7ff542bf87e0f01e60b1ab525b",
"sha256": "601f96340e4c8071994a39a76d4278e8e1d087cf385781dba795c5334262d865"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "94f64d7ff542bf87e0f01e60b1ab525b",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 284211,
"upload_time": "2025-03-07T08:04:58",
"upload_time_iso_8601": "2025-03-07T08:04:58.118127Z",
"url": "https://files.pythonhosted.org/packages/91/cc/d3ac60791c962daabc634826d4cb52acb82ae59ff8ed1f04d4ab2c76bb8d/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7371661ec20dbe25a5aa88d8dc372cc6b39f7ace9a73af5ba20f4169962be00",
"md5": "f6f4f2333b99b86a50cfc93312f1533a",
"sha256": "99318b5ea78843e3c3e19cd56367216774674a99848f00a6f2dcf84e36039641"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f6f4f2333b99b86a50cfc93312f1533a",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 248409,
"upload_time": "2025-03-07T08:04:59",
"upload_time_iso_8601": "2025-03-07T08:04:59.404068Z",
"url": "https://files.pythonhosted.org/packages/b7/37/1661ec20dbe25a5aa88d8dc372cc6b39f7ace9a73af5ba20f4169962be00/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e60826a3c2fe41a4ec053d864fc93124f24b4ec258c166fef863debe71905f5",
"md5": "38fe263eb1d5413a1cfd746f934c1754",
"sha256": "4a528244e4a0f9e01b8593b1c8a60ac1d80ce8b13fe079f44b38328e4be075e3"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "38fe263eb1d5413a1cfd746f934c1754",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 265498,
"upload_time": "2025-03-07T08:05:01",
"upload_time_iso_8601": "2025-03-07T08:05:01.024638Z",
"url": "https://files.pythonhosted.org/packages/6e/60/826a3c2fe41a4ec053d864fc93124f24b4ec258c166fef863debe71905f5/wassima-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2808d86df7f1f24a6603aeb47ad679f4dee1cc4aabe1129498bbe48b276a8a7",
"md5": "902d09935ad2a7adf74bc772259232f0",
"sha256": "f44ccd2eaa433ff1a10f70242dc33315fc192b81664696154127bdd66ad7d3b2"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "902d09935ad2a7adf74bc772259232f0",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 424800,
"upload_time": "2025-03-07T08:05:02",
"upload_time_iso_8601": "2025-03-07T08:05:02.333022Z",
"url": "https://files.pythonhosted.org/packages/f2/80/8d86df7f1f24a6603aeb47ad679f4dee1cc4aabe1129498bbe48b276a8a7/wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce4ebf9bf2f66387b1957d05cc38a612ab1f16f3ae491b59f9c83184a169a533",
"md5": "c19a45c44d5abc96d85ebf91428f7d79",
"sha256": "af6b70ca9788964c5da5b59ca412b62db2ea7f2386a91c0117667bdd963e828c"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "c19a45c44d5abc96d85ebf91428f7d79",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 516912,
"upload_time": "2025-03-07T08:05:03",
"upload_time_iso_8601": "2025-03-07T08:05:03.730706Z",
"url": "https://files.pythonhosted.org/packages/ce/4e/bf9bf2f66387b1957d05cc38a612ab1f16f3ae491b59f9c83184a169a533/wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78347fbee3b01574221b64bba73a2c0e5e495aaf5c98565bed05abaa1a8fb3d9",
"md5": "4bc269b8b5d039bd122f7c65673a4ef9",
"sha256": "9d0f9720dfd0155432d23bcc3605fe5831cd0f586ede4f14ff6f3bebe8fb867a"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4bc269b8b5d039bd122f7c65673a4ef9",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 445452,
"upload_time": "2025-03-07T08:05:05",
"upload_time_iso_8601": "2025-03-07T08:05:05.443541Z",
"url": "https://files.pythonhosted.org/packages/78/34/7fbee3b01574221b64bba73a2c0e5e495aaf5c98565bed05abaa1a8fb3d9/wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a99ca26fc0a71b4ba8a744c9edc839bc1ca7f73a929834ea3240b6f3251ba80d",
"md5": "b55b1954d4e66beeff8241b1a841fb0c",
"sha256": "6b1d7ceeede8d8eed48616d2d33ed23d2dff307d0b17c577eafdadafe86a0478"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b55b1954d4e66beeff8241b1a841fb0c",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 419223,
"upload_time": "2025-03-07T08:05:07",
"upload_time_iso_8601": "2025-03-07T08:05:07.247140Z",
"url": "https://files.pythonhosted.org/packages/a9/9c/a26fc0a71b4ba8a744c9edc839bc1ca7f73a929834ea3240b6f3251ba80d/wassima-1.2.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dad366a054a228e774201be21f9d8874b3c15d1d813f79f4b36ce09af4e7885",
"md5": "d7a1286e14f0afba08c31c65ba46d2f3",
"sha256": "bc068bcd79fe017866f536e0ad9424793220be34e3124476e17e6cb77a97e690"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp311-pypy311_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "d7a1286e14f0afba08c31c65ba46d2f3",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.7",
"size": 126622,
"upload_time": "2025-03-07T08:05:08",
"upload_time_iso_8601": "2025-03-07T08:05:08.544133Z",
"url": "https://files.pythonhosted.org/packages/1d/ad/366a054a228e774201be21f9d8874b3c15d1d813f79f4b36ce09af4e7885/wassima-1.2.2-pp311-pypy311_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85003316a0cac0c88d9733a30b7240310e8296c18879cba538b29509d5b44c52",
"md5": "b2841e02b1a66bb6f62952d06ddb44cf",
"sha256": "52358d86195954816231d2aa8c2919b85075320b6d3ba5b96216985c3182bfa0"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b2841e02b1a66bb6f62952d06ddb44cf",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 247341,
"upload_time": "2025-03-07T08:05:09",
"upload_time_iso_8601": "2025-03-07T08:05:09.722670Z",
"url": "https://files.pythonhosted.org/packages/85/00/3316a0cac0c88d9733a30b7240310e8296c18879cba538b29509d5b44c52/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cec773edc1dd24085ca45a379f3d832df08d4adc51620ffc66aba4c331ed19b0",
"md5": "c45b246ca35e64060ec58cea4e35a48d",
"sha256": "e1e9228049cf2442ac486a03a0d543c5dff3089a915a3e39ab809b22672e1d76"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c45b246ca35e64060ec58cea4e35a48d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 254378,
"upload_time": "2025-03-07T08:05:11",
"upload_time_iso_8601": "2025-03-07T08:05:11.073689Z",
"url": "https://files.pythonhosted.org/packages/ce/c7/73edc1dd24085ca45a379f3d832df08d4adc51620ffc66aba4c331ed19b0/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3771ca8f8804b0740508e8a1552b5b8f27ec1fc0f1b07dd94a7161fef577044",
"md5": "800902d1d6f0e37690d2e9365b4ffd95",
"sha256": "acd8195a53d0e84ea95bdf15a2651c53b829a3ddead21b4a620b6a0c5e1ae2ff"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "800902d1d6f0e37690d2e9365b4ffd95",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 303587,
"upload_time": "2025-03-07T08:05:13",
"upload_time_iso_8601": "2025-03-07T08:05:13.693218Z",
"url": "https://files.pythonhosted.org/packages/f3/77/1ca8f8804b0740508e8a1552b5b8f27ec1fc0f1b07dd94a7161fef577044/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0d56dc1dedab9a35af659c5d90f12952328d00ec98bbec06956fc8d19b4af8f",
"md5": "bc22d280e35e5ef8a59f0dd945015e37",
"sha256": "10508102696d5e2cf4df6942a8ae251c136a49dc32591e9c3f7dd007f5ea1c2f"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "bc22d280e35e5ef8a59f0dd945015e37",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 303008,
"upload_time": "2025-03-07T08:05:12",
"upload_time_iso_8601": "2025-03-07T08:05:12.356723Z",
"url": "https://files.pythonhosted.org/packages/c0/d5/6dc1dedab9a35af659c5d90f12952328d00ec98bbec06956fc8d19b4af8f/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "879e20130b8468cc85aa7fc1b47fa2d42997687e505a7442146fd81fca8b5190",
"md5": "85e308b3edc4a0f1cc4ac48948ab0036",
"sha256": "e26d052a248d5be2257d848d6078d932cc1fd4e8226639f550344d0a7a2b8813"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "85e308b3edc4a0f1cc4ac48948ab0036",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 284601,
"upload_time": "2025-03-07T08:05:15",
"upload_time_iso_8601": "2025-03-07T08:05:15.396129Z",
"url": "https://files.pythonhosted.org/packages/87/9e/20130b8468cc85aa7fc1b47fa2d42997687e505a7442146fd81fca8b5190/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3aa37daa4c8de1dbb6508752b5fdbc70617c4d77959fb071b08248fcd74be4d7",
"md5": "01d3ece1bb50614569d95a08f06ca752",
"sha256": "87f80d0075f0d396b73d41bb1626a2dd5607e0db4b74cb17e55d874fcd538971"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "01d3ece1bb50614569d95a08f06ca752",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 248681,
"upload_time": "2025-03-07T08:05:16",
"upload_time_iso_8601": "2025-03-07T08:05:16.757916Z",
"url": "https://files.pythonhosted.org/packages/3a/a3/7daa4c8de1dbb6508752b5fdbc70617c4d77959fb071b08248fcd74be4d7/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0823651827da3a48bc8a30a7fb0345e0e762271d1af96e42c546f95d10e85b3e",
"md5": "8b1799e255dfcf55cbbf6665382ff1a2",
"sha256": "9c623ef06876d432dc8acc93ed3494d3453333d767b1b06bba1a016ea9d850c9"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8b1799e255dfcf55cbbf6665382ff1a2",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 265585,
"upload_time": "2025-03-07T08:05:18",
"upload_time_iso_8601": "2025-03-07T08:05:18.056502Z",
"url": "https://files.pythonhosted.org/packages/08/23/651827da3a48bc8a30a7fb0345e0e762271d1af96e42c546f95d10e85b3e/wassima-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f625c6b10d58688aaa1861e99734267a130e8c19ad970e1541132510729b31c",
"md5": "193ca1676601805b471a590f59b278b6",
"sha256": "7c53050b670d702eed541503175bd5441fc4bdf3898714f8eac8c6ae9db548ac"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "193ca1676601805b471a590f59b278b6",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 425054,
"upload_time": "2025-03-07T08:05:19",
"upload_time_iso_8601": "2025-03-07T08:05:19.408050Z",
"url": "https://files.pythonhosted.org/packages/4f/62/5c6b10d58688aaa1861e99734267a130e8c19ad970e1541132510729b31c/wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56690c4165ae37ac7db40966ff09380ebb2ba5da247a1d0771866e7d5e9023a2",
"md5": "21c8412dd0dd99688a56a8d161684bd1",
"sha256": "5f5ee564f4b836ed1b70ddb187c817e8f6f1ffb521a636bb20676f07b523396b"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "21c8412dd0dd99688a56a8d161684bd1",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 517080,
"upload_time": "2025-03-07T08:05:20",
"upload_time_iso_8601": "2025-03-07T08:05:20.710299Z",
"url": "https://files.pythonhosted.org/packages/56/69/0c4165ae37ac7db40966ff09380ebb2ba5da247a1d0771866e7d5e9023a2/wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12932a37de7f0dc83a2b5863c0c837eda9d80c6e0d176c4eb2f5d4ba586d98ac",
"md5": "9c0cc9169ce93c4c6be525770120fecd",
"sha256": "4c4f5ca102fd083aa2b05c65a1fd18175e3dc7a889525fd2964219ee3c51edef"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "9c0cc9169ce93c4c6be525770120fecd",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 445543,
"upload_time": "2025-03-07T08:05:22",
"upload_time_iso_8601": "2025-03-07T08:05:22.095890Z",
"url": "https://files.pythonhosted.org/packages/12/93/2a37de7f0dc83a2b5863c0c837eda9d80c6e0d176c4eb2f5d4ba586d98ac/wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cf036c079fefe96da66c6dfbfc28f1163b5ec1216e01bde150877786cb022dd",
"md5": "91911624dc67a5b5076f8504f6a1f922",
"sha256": "f7a6068d8857c403e105e62132a00e9d9d401bd0efbff7f8b5b5bc8ab768a2d8"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "91911624dc67a5b5076f8504f6a1f922",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 419373,
"upload_time": "2025-03-07T08:05:23",
"upload_time_iso_8601": "2025-03-07T08:05:23.446344Z",
"url": "https://files.pythonhosted.org/packages/2c/f0/36c079fefe96da66c6dfbfc28f1163b5ec1216e01bde150877786cb022dd/wassima-1.2.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86ac5a12461c28a0d56b6264d7bbbfb8902a3a7e8b238f96d3cd283a0b0d0286",
"md5": "df2c5d08361830eaf5a6340ccdfa6e51",
"sha256": "97772bb55cb47da3de49ca4b59309a9bd91ead730a7cfac1992932486fb41352"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "df2c5d08361830eaf5a6340ccdfa6e51",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 126711,
"upload_time": "2025-03-07T08:05:25",
"upload_time_iso_8601": "2025-03-07T08:05:25.161098Z",
"url": "https://files.pythonhosted.org/packages/86/ac/5a12461c28a0d56b6264d7bbbfb8902a3a7e8b238f96d3cd283a0b0d0286/wassima-1.2.2-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc0308bf4fe27eb96c884934fc8014bc835981f08fda25adaca5d856ab67da44",
"md5": "fa19486ad76c7e306a1ff90d3774c5ef",
"sha256": "61bfa09f38c36f1b1e6e44e7af888bb8f9d739e86099082a3b45875651a425e2"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fa19486ad76c7e306a1ff90d3774c5ef",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 247353,
"upload_time": "2025-03-07T08:05:27",
"upload_time_iso_8601": "2025-03-07T08:05:27.037538Z",
"url": "https://files.pythonhosted.org/packages/fc/03/08bf4fe27eb96c884934fc8014bc835981f08fda25adaca5d856ab67da44/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c45cda0d99a870bc8cf058283d9a3bb4f962756ba830828319b235ee6577f54",
"md5": "e1e874f3be68949406e22b2432a62c8c",
"sha256": "d24d42881eb74729b34014e2e87f3a4d0419c43db309de2dff3f39118716865f"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e1e874f3be68949406e22b2432a62c8c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 254377,
"upload_time": "2025-03-07T08:05:28",
"upload_time_iso_8601": "2025-03-07T08:05:28.545251Z",
"url": "https://files.pythonhosted.org/packages/1c/45/cda0d99a870bc8cf058283d9a3bb4f962756ba830828319b235ee6577f54/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ab7cce371d45ec5c1ba6a1382c145c2a9b94233a958129e6db4a3b4fec57743",
"md5": "c0ce742664e32ae04f90f5bf568e2bf0",
"sha256": "f195bf641276261e6bc5f79f52601850c9bdbff8af401483b4805dbff535ed30"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c0ce742664e32ae04f90f5bf568e2bf0",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 303576,
"upload_time": "2025-03-07T08:05:31",
"upload_time_iso_8601": "2025-03-07T08:05:31.751128Z",
"url": "https://files.pythonhosted.org/packages/7a/b7/cce371d45ec5c1ba6a1382c145c2a9b94233a958129e6db4a3b4fec57743/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b00a1780cb4402a89ba9e9623f0bb2c790b8e240354cbd14d1fd18110baefd1",
"md5": "e318edfa8aea470cb0aadd0c369ea01b",
"sha256": "67fd323b8ad0e057c06b153983d8c50f812aad979ac89b07ed6952c345f6da02"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "e318edfa8aea470cb0aadd0c369ea01b",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 303052,
"upload_time": "2025-03-07T08:05:30",
"upload_time_iso_8601": "2025-03-07T08:05:30.394406Z",
"url": "https://files.pythonhosted.org/packages/4b/00/a1780cb4402a89ba9e9623f0bb2c790b8e240354cbd14d1fd18110baefd1/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7986c59272c48d089958031b99fd6c3358900c891ac23a68e5655309e661e87",
"md5": "ec12dc92b1dd76d329c06a35a32324ea",
"sha256": "addbd207df3718fc9d9de5b6c90a5e3fbe667830cf629186c9fdcafbb6578cb4"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ec12dc92b1dd76d329c06a35a32324ea",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 284705,
"upload_time": "2025-03-07T08:05:33",
"upload_time_iso_8601": "2025-03-07T08:05:33.402399Z",
"url": "https://files.pythonhosted.org/packages/f7/98/6c59272c48d089958031b99fd6c3358900c891ac23a68e5655309e661e87/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "accc9274c3544c362138177cd96733b17688b72c6b64be604b5b1fc5e4930ac3",
"md5": "67ffb1aff3450e430fde3a0d046b9d5a",
"sha256": "fa65494e7bd0e3ba33b3e5a5ab30c2b6e95d3d1762baaa56151a0861618dc261"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "67ffb1aff3450e430fde3a0d046b9d5a",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 248683,
"upload_time": "2025-03-07T08:05:34",
"upload_time_iso_8601": "2025-03-07T08:05:34.836742Z",
"url": "https://files.pythonhosted.org/packages/ac/cc/9274c3544c362138177cd96733b17688b72c6b64be604b5b1fc5e4930ac3/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17ac30ed50c3d835282ca941fd1b6b06ad539e51a23cbbd7ab7c43d6a5012460",
"md5": "67e82f1e5a2f4ad7e438dadafc5f2d3f",
"sha256": "c25235cec12c0e38b4104268e312c9c2f3527ebc126d296cff69ea7aa13434dc"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "67e82f1e5a2f4ad7e438dadafc5f2d3f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 265561,
"upload_time": "2025-03-07T08:05:36",
"upload_time_iso_8601": "2025-03-07T08:05:36.115983Z",
"url": "https://files.pythonhosted.org/packages/17/ac/30ed50c3d835282ca941fd1b6b06ad539e51a23cbbd7ab7c43d6a5012460/wassima-1.2.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "660badbf0b19caa43b8295b5b7d8f71f7acd5b5fddcb479151e6680114e54073",
"md5": "953519d1bf1465c81e4577af819e825b",
"sha256": "d6e17f218af856ca22c30d1a1ac58b19bccf768b8589eb8d6e45e1f1ff258404"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "953519d1bf1465c81e4577af819e825b",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 425056,
"upload_time": "2025-03-07T08:05:37",
"upload_time_iso_8601": "2025-03-07T08:05:37.386751Z",
"url": "https://files.pythonhosted.org/packages/66/0b/adbf0b19caa43b8295b5b7d8f71f7acd5b5fddcb479151e6680114e54073/wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c2fb1b7d3559cc89f9e7640f98c1be2f46b90787890ff1ea7456f8caa1a2909",
"md5": "27d99617e0a0b7aa9779f2af97f3a91f",
"sha256": "3b3a4c8ffa76147507f0c88c5cc8c76ef96ab93b81e49b288a3a0b94ebfb34af"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "27d99617e0a0b7aa9779f2af97f3a91f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 517082,
"upload_time": "2025-03-07T08:05:38",
"upload_time_iso_8601": "2025-03-07T08:05:38.740058Z",
"url": "https://files.pythonhosted.org/packages/2c/2f/b1b7d3559cc89f9e7640f98c1be2f46b90787890ff1ea7456f8caa1a2909/wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc9b669f95fe90afb9a9702f55e96a6f05f7732d8b6a1637282346bf687c9f53",
"md5": "6b4d1f9f70f3a50fa9b8d26ce87e8263",
"sha256": "c85cd2e64967c0dce2927ad7c62c090aae6d6b7f9e3a6b9fb91f58b890ea6adc"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6b4d1f9f70f3a50fa9b8d26ce87e8263",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 445528,
"upload_time": "2025-03-07T08:05:40",
"upload_time_iso_8601": "2025-03-07T08:05:40.454149Z",
"url": "https://files.pythonhosted.org/packages/cc/9b/669f95fe90afb9a9702f55e96a6f05f7732d8b6a1637282346bf687c9f53/wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5ceac74220ccc577c1a5570811066178d77e0ef9b6d9cd777ebaf69ec255dc2",
"md5": "e0fae313e803475f175f97f72f5956fe",
"sha256": "17f129f4d36591772d906bcc893b76b236363fda61b575067ddfa8250f84ad30"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e0fae313e803475f175f97f72f5956fe",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 419373,
"upload_time": "2025-03-07T08:05:41",
"upload_time_iso_8601": "2025-03-07T08:05:41.761012Z",
"url": "https://files.pythonhosted.org/packages/d5/ce/ac74220ccc577c1a5570811066178d77e0ef9b6d9cd777ebaf69ec255dc2/wassima-1.2.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3175f2d1550996cd5a5e30c52779e85f91a4e46e8bd304febfb2be80b073976e",
"md5": "60ee2a9b65829c8926a1ea786e97b8a5",
"sha256": "8e739d4192758df6e5363791f527deb91c615d63020ee8965df4bcd1a217f9a5"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "60ee2a9b65829c8926a1ea786e97b8a5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 126711,
"upload_time": "2025-03-07T08:05:43",
"upload_time_iso_8601": "2025-03-07T08:05:43.052431Z",
"url": "https://files.pythonhosted.org/packages/31/75/f2d1550996cd5a5e30c52779e85f91a4e46e8bd304febfb2be80b073976e/wassima-1.2.2-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78a6e64190f6a38125d7095a100598daaca2e1c0b64371fec1d48b63ffa28dcd",
"md5": "929da4b81161dd6042e240a0c27cecb9",
"sha256": "7d65676f1fc138d1742f704bf490045571b9c2c48cab7d2c2076a52729c143e5"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "929da4b81161dd6042e240a0c27cecb9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 247373,
"upload_time": "2025-03-07T08:05:44",
"upload_time_iso_8601": "2025-03-07T08:05:44.243776Z",
"url": "https://files.pythonhosted.org/packages/78/a6/e64190f6a38125d7095a100598daaca2e1c0b64371fec1d48b63ffa28dcd/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f5b64db6e2f146d8f9d4cce3732b5ae5d9e746a1df0388bedcc7baa4182a1b3",
"md5": "024b35d4bf0dde782e1f6773902dac2f",
"sha256": "83ce1b09e9eb2ae033c303b74ecc4f3186bbc0897db1d8cd9942153b0631b8e0"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "024b35d4bf0dde782e1f6773902dac2f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 254352,
"upload_time": "2025-03-07T08:05:45",
"upload_time_iso_8601": "2025-03-07T08:05:45.556859Z",
"url": "https://files.pythonhosted.org/packages/9f/5b/64db6e2f146d8f9d4cce3732b5ae5d9e746a1df0388bedcc7baa4182a1b3/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3774f245f7afa2ba3a2f8e06347f7cb1630392e21aa7dfe795a72493fbf3034b",
"md5": "73c0124c940fdc36d609cdabf48b08b1",
"sha256": "923d3bf8770dfeb3d94bdfee1c5b5a081592de69766436a395e1e6203c19cf71"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "73c0124c940fdc36d609cdabf48b08b1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 303622,
"upload_time": "2025-03-07T08:05:48",
"upload_time_iso_8601": "2025-03-07T08:05:48.160157Z",
"url": "https://files.pythonhosted.org/packages/37/74/f245f7afa2ba3a2f8e06347f7cb1630392e21aa7dfe795a72493fbf3034b/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a264372c04d50ec8c3c938490791460eb83db8e0615246f5293c3af8f4560bec",
"md5": "13a224f0532e829f238bd356693fd0f4",
"sha256": "afa7d60a9203db36a55b6f2868da90aaa829ab415a21fba7fa75678789aeb16f"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "13a224f0532e829f238bd356693fd0f4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 303044,
"upload_time": "2025-03-07T08:05:46",
"upload_time_iso_8601": "2025-03-07T08:05:46.846877Z",
"url": "https://files.pythonhosted.org/packages/a2/64/372c04d50ec8c3c938490791460eb83db8e0615246f5293c3af8f4560bec/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c10dbf76d55d5ddf99f3a2b9700ae8e5b06fdbe7c708ad5fe3d2d41a8b91aa3",
"md5": "05d9d2d5640601c4c9042db2300aef3c",
"sha256": "86c509900cbb90b7b75155c580b22af591b696fa059059bcdbd75bc74179df85"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "05d9d2d5640601c4c9042db2300aef3c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 284722,
"upload_time": "2025-03-07T08:05:49",
"upload_time_iso_8601": "2025-03-07T08:05:49.481813Z",
"url": "https://files.pythonhosted.org/packages/9c/10/dbf76d55d5ddf99f3a2b9700ae8e5b06fdbe7c708ad5fe3d2d41a8b91aa3/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "816590864273f212f8e5f21537bf383c2a23e59b596994e684388efff7ed8250",
"md5": "88f294896602c7a5bf72910081f45c95",
"sha256": "fec32c22b521fcdeb9aa7dee4373b2d81ca2d3fc8edc532f3e189d6f4f6f1f81"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "88f294896602c7a5bf72910081f45c95",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 248697,
"upload_time": "2025-03-07T08:05:50",
"upload_time_iso_8601": "2025-03-07T08:05:50.856108Z",
"url": "https://files.pythonhosted.org/packages/81/65/90864273f212f8e5f21537bf383c2a23e59b596994e684388efff7ed8250/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "433924368f4c7310ab764e30ac2a6756dccbc60d0fd3f0655422cebdd9ac7a99",
"md5": "54903b14579ddceb106bc071febddf50",
"sha256": "ca04984df012020dd846599b8555666c544982c2a91dc6135565e6708624eb71"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "54903b14579ddceb106bc071febddf50",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 265571,
"upload_time": "2025-03-07T08:05:52",
"upload_time_iso_8601": "2025-03-07T08:05:52.113654Z",
"url": "https://files.pythonhosted.org/packages/43/39/24368f4c7310ab764e30ac2a6756dccbc60d0fd3f0655422cebdd9ac7a99/wassima-1.2.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36cf10f307a4876d2ef87717db1989ab47c420ea90013cb404b762fdc607f37d",
"md5": "43cd6bf7aa59c79fcd9cd188b184b4a6",
"sha256": "1fa19a3652509edd18f693cd9c873d8f73c9d1624eae6c3bf93e561b18ae2766"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "43cd6bf7aa59c79fcd9cd188b184b4a6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 425049,
"upload_time": "2025-03-07T08:05:53",
"upload_time_iso_8601": "2025-03-07T08:05:53.757030Z",
"url": "https://files.pythonhosted.org/packages/36/cf/10f307a4876d2ef87717db1989ab47c420ea90013cb404b762fdc607f37d/wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7901ca95c1c7b739c95e9e54ba4806d5e5291e3db9c9758c821a5ed5e4b123c",
"md5": "60c20a2b2be9e77ec9ade1dbe8795e79",
"sha256": "d018e05cb61eed3050d45bd0c0ef9b75420899f6ae254e68e7f2ef26975098c9"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "60c20a2b2be9e77ec9ade1dbe8795e79",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 517087,
"upload_time": "2025-03-07T08:05:55",
"upload_time_iso_8601": "2025-03-07T08:05:55.119888Z",
"url": "https://files.pythonhosted.org/packages/c7/90/1ca95c1c7b739c95e9e54ba4806d5e5291e3db9c9758c821a5ed5e4b123c/wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26ceb5962e6be9446c9c37d6457c072718e835ef7140b3f1e0dcc1d91dd0d5a4",
"md5": "7c026b3fd05546d50047604e59351998",
"sha256": "7b0229fecc849234f2a2d11e948ac38a9bab02d201fa4d6ad43c143e18c1a66e"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "7c026b3fd05546d50047604e59351998",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 445518,
"upload_time": "2025-03-07T08:05:56",
"upload_time_iso_8601": "2025-03-07T08:05:56.901212Z",
"url": "https://files.pythonhosted.org/packages/26/ce/b5962e6be9446c9c37d6457c072718e835ef7140b3f1e0dcc1d91dd0d5a4/wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c41042e1beab41ced8ea6357bb4253fb2f881df32191193da47464a65e9f033",
"md5": "e5bf5c48eb70ad081a7e4ecc28c10a43",
"sha256": "fd7186e23963714bab3c9a2ab75d002078335110d2c9fc883c65cbce43717f26"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e5bf5c48eb70ad081a7e4ecc28c10a43",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 419377,
"upload_time": "2025-03-07T08:05:58",
"upload_time_iso_8601": "2025-03-07T08:05:58.318393Z",
"url": "https://files.pythonhosted.org/packages/3c/41/042e1beab41ced8ea6357bb4253fb2f881df32191193da47464a65e9f033/wassima-1.2.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2843ab8e1a84c815e48a71536adbc2cdf81f145b06984f028ec09749bc95a7e8",
"md5": "90361e9d5110f85a68564910ee82793b",
"sha256": "9e79216760faac6395bee8ca4077a53a309312faba0f71982127ad8625861780"
},
"downloads": -1,
"filename": "wassima-1.2.2-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "90361e9d5110f85a68564910ee82793b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 126720,
"upload_time": "2025-03-07T08:05:59",
"upload_time_iso_8601": "2025-03-07T08:05:59.639063Z",
"url": "https://files.pythonhosted.org/packages/28/43/ab8e1a84c815e48a71536adbc2cdf81f145b06984f028ec09749bc95a7e8/wassima-1.2.2-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08dd8df88ac3a1644bc6300eb3e5529a5808fff28d4e9a37fde9abcbd5ee7281",
"md5": "241215a331a3959e04cc8063c8471af2",
"sha256": "c0fee0a8593028bde17b57527b1ac21fea74f209b3522363e3ba0197ffaa6323"
},
"downloads": -1,
"filename": "wassima-1.2.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "241215a331a3959e04cc8063c8471af2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 7653,
"upload_time": "2025-03-07T08:06:00",
"upload_time_iso_8601": "2025-03-07T08:06:00.769720Z",
"url": "https://files.pythonhosted.org/packages/08/dd/8df88ac3a1644bc6300eb3e5529a5808fff28d4e9a37fde9abcbd5ee7281/wassima-1.2.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7daadf0023f78cd1120c116b5c9bdfd3345678c65d6a8b2da559a8ecc54c66b1",
"md5": "b31c61cc6342c39529925deead67df35",
"sha256": "f264827618400ebeab16708c8acf7870f693b03bfb4d7e95253eb9b35074db5c"
},
"downloads": -1,
"filename": "wassima-1.2.2.tar.gz",
"has_sig": false,
"md5_digest": "b31c61cc6342c39529925deead67df35",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 16329,
"upload_time": "2025-03-07T08:06:01",
"upload_time_iso_8601": "2025-03-07T08:06:01.782387Z",
"url": "https://files.pythonhosted.org/packages/7d/aa/df0023f78cd1120c116b5c9bdfd3345678c65d6a8b2da559a8ecc54c66b1/wassima-1.2.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-03-07 08:06:01",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jawah",
"github_project": "wassima",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "wassima"
}