Name | endec JSON |
Version |
0.3.1
JSON |
| download |
home_page | None |
Summary | Web-compatible encoding and decoding library |
upload_time | 2025-01-12 03:01:02 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
encoding_rs
web
codec
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# endec
[![PyPI - Version](https://img.shields.io/pypi/v/endec)](https://pypi.org/project/endec/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/endec)
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/fluxth/endec/build.yml)
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/fluxth/endec/test.yml?label=tests)
Web-compatible **en**coding and **dec**oding library
**endec** uses [`encoding_rs`](https://github.com/hsivonen/encoding_rs) (which powers Firefox) under the hood.
## Installation
Requires Python 3.8+
```
$ pip install endec
```
## Examples
### Codecs
Please refer to [WHATWG Web Encoding Standard](https://encoding.spec.whatwg.org/#concept-encoding-get) for available codecs.
### Encode
```python
import endec
utf8_bytes = endec.encode("こんにちは")
assert utf8_bytes == b"\xe3\x81\x93\xe3\x82\x93\xe3\x81\xab\xe3\x81\xa1\xe3\x81\xaf"
iso2022jp_bytes = endec.encode("㊤㊥㊦", "iso-2022-jp")
assert iso2022jp_bytes == b"\x1b$B-e-f-g\x1b(B"
"㊤㊥㊦".encode("iso-2022-jp") # Standard Library `encode`
# UnicodeEncodeError: 'iso2022_jp' codec can't encode character '\u32a4' in position 0: illegal multibyte sequence
```
### Decode
```python
import endec
utf8_str = endec.decode(b"\xe3\x81\x93\xe3\x82\x93\xe3\x81\xab\xe3\x81\xa1\xe3\x81\xaf")
assert utf8_str == "こんにちは"
iso2022jp_str = endec.decode(b"\x1b$B-e-f-g\x1b(B", "iso-2022-jp")
assert iso2022jp_str == "㊤㊥㊦"
b"\x1b$B-e-f-g\x1b(B".decode("iso-2022-jp") # Standard Library `decode`
# UnicodeDecodeError: 'iso2022_jp' codec can't decode bytes in position 3-4: illegal multibyte sequence
```
### Error Handling
```python
import endec
from endec.exceptions import EncodeError, DecodeError
try:
invalid_encode = endec.encode("漢字", "ascii")
except EncodeError as exc:
# endec.exceptions.EncodeError: encoding with 'windows-1252' codec failed
raise exc
try:
invalid_decode = endec.decode(b"\x42\xff\x42", "iso-2022-jp")
except DecodeError as exc:
# endec.exceptions.DecodeError: decoding with 'ISO-2022-JP' codec failed
raise exc
```
## License
This project is licensed under the terms of the [MIT license](https://github.com/fluxth/endec/blob/main/LICENSE).
Raw data
{
"_id": null,
"home_page": null,
"name": "endec",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "encoding_rs, web, codec",
"author": null,
"author_email": "Thitat Auareesuksakul <flux@thitat.net>",
"download_url": "https://files.pythonhosted.org/packages/e7/4a/635c8480c25aef3924e6275573283db2341f5cf6aac8d5da5b57b54d27c6/endec-0.3.1.tar.gz",
"platform": null,
"description": "# endec\n\n[![PyPI - Version](https://img.shields.io/pypi/v/endec)](https://pypi.org/project/endec/)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/endec)\n![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/fluxth/endec/build.yml)\n![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/fluxth/endec/test.yml?label=tests)\n\nWeb-compatible **en**coding and **dec**oding library\n\n**endec** uses [`encoding_rs`](https://github.com/hsivonen/encoding_rs) (which powers Firefox) under the hood.\n\n## Installation\n\nRequires Python 3.8+\n\n```\n$ pip install endec\n```\n\n## Examples\n\n### Codecs\n\nPlease refer to [WHATWG Web Encoding Standard](https://encoding.spec.whatwg.org/#concept-encoding-get) for available codecs.\n\n### Encode\n\n```python\nimport endec\n\nutf8_bytes = endec.encode(\"\u3053\u3093\u306b\u3061\u306f\")\nassert utf8_bytes == b\"\\xe3\\x81\\x93\\xe3\\x82\\x93\\xe3\\x81\\xab\\xe3\\x81\\xa1\\xe3\\x81\\xaf\"\n\niso2022jp_bytes = endec.encode(\"\u32a4\u32a5\u32a6\", \"iso-2022-jp\")\nassert iso2022jp_bytes == b\"\\x1b$B-e-f-g\\x1b(B\"\n\n\"\u32a4\u32a5\u32a6\".encode(\"iso-2022-jp\") # Standard Library `encode`\n# UnicodeEncodeError: 'iso2022_jp' codec can't encode character '\\u32a4' in position 0: illegal multibyte sequence\n```\n\n### Decode\n\n```python\nimport endec\n\nutf8_str = endec.decode(b\"\\xe3\\x81\\x93\\xe3\\x82\\x93\\xe3\\x81\\xab\\xe3\\x81\\xa1\\xe3\\x81\\xaf\")\nassert utf8_str == \"\u3053\u3093\u306b\u3061\u306f\"\n\niso2022jp_str = endec.decode(b\"\\x1b$B-e-f-g\\x1b(B\", \"iso-2022-jp\")\nassert iso2022jp_str == \"\u32a4\u32a5\u32a6\"\n\nb\"\\x1b$B-e-f-g\\x1b(B\".decode(\"iso-2022-jp\") # Standard Library `decode`\n# UnicodeDecodeError: 'iso2022_jp' codec can't decode bytes in position 3-4: illegal multibyte sequence\n```\n\n### Error Handling\n\n```python\nimport endec\nfrom endec.exceptions import EncodeError, DecodeError\n\ntry:\n invalid_encode = endec.encode(\"\u6f22\u5b57\", \"ascii\")\nexcept EncodeError as exc:\n # endec.exceptions.EncodeError: encoding with 'windows-1252' codec failed\n raise exc\n\ntry:\n invalid_decode = endec.decode(b\"\\x42\\xff\\x42\", \"iso-2022-jp\")\nexcept DecodeError as exc:\n # endec.exceptions.DecodeError: decoding with 'ISO-2022-JP' codec failed\n raise exc\n```\n\n## License\n\nThis project is licensed under the terms of the [MIT license](https://github.com/fluxth/endec/blob/main/LICENSE).\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Web-compatible encoding and decoding library",
"version": "0.3.1",
"project_urls": {
"Changelog": "https://github.com/fluxth/endec/releases",
"Homepage": "https://github.com/fluxth/endec",
"Source": "https://github.com/fluxth/endec"
},
"split_keywords": [
"encoding_rs",
" web",
" codec"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "94a247ad8c9e3934c85af129180abfdace252b7fd756d2031101900c94b4e953",
"md5": "41aa65b2335b411f5f36f5edcdf07806",
"sha256": "810c0c979553e26f7d3b30b92286dd46da9de546160a2cbf68cb0020a51710b1"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "41aa65b2335b411f5f36f5edcdf07806",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 381030,
"upload_time": "2025-01-12T02:59:55",
"upload_time_iso_8601": "2025-01-12T02:59:55.302364Z",
"url": "https://files.pythonhosted.org/packages/94/a2/47ad8c9e3934c85af129180abfdace252b7fd756d2031101900c94b4e953/endec-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3c6c1d2ac7e2d93bf717ed20b9fff16353c468dc934e782f54e1a7f7a0c892b",
"md5": "5e6b2209f39b12e6647e7aa3b8b74c4f",
"sha256": "2fd12de9d2f44a6e9b32543c975e5b48097334a9c0e21abd5f0a830cf29e2d08"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5e6b2209f39b12e6647e7aa3b8b74c4f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 378591,
"upload_time": "2025-01-12T02:59:41",
"upload_time_iso_8601": "2025-01-12T02:59:41.722070Z",
"url": "https://files.pythonhosted.org/packages/d3/c6/c1d2ac7e2d93bf717ed20b9fff16353c468dc934e782f54e1a7f7a0c892b/endec-0.3.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "556e0afd724756a5c424d7b8bee479bf5c699f555821d9e2c99d60778e5d319b",
"md5": "404c20f8bdf5c74b77c448b52b0877a9",
"sha256": "1c29429015e8ed6dc40915f533d58bc25c151dc1a9316a13a8e222903554c7e6"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "404c20f8bdf5c74b77c448b52b0877a9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 402943,
"upload_time": "2025-01-12T02:58:01",
"upload_time_iso_8601": "2025-01-12T02:58:01.374142Z",
"url": "https://files.pythonhosted.org/packages/55/6e/0afd724756a5c424d7b8bee479bf5c699f555821d9e2c99d60778e5d319b/endec-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddb4020edfb7ec59e1d6c070c4fd6b9473b3e3c196161825a51ebe029a451fa1",
"md5": "13ff62f0aa238a5920659d37416bb7cb",
"sha256": "f295282fae02e3a94264c5d8c316fe1ab56b3147e3a85c60429a373db7ed8d8e"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "13ff62f0aa238a5920659d37416bb7cb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 412077,
"upload_time": "2025-01-12T02:58:20",
"upload_time_iso_8601": "2025-01-12T02:58:20.104069Z",
"url": "https://files.pythonhosted.org/packages/dd/b4/020edfb7ec59e1d6c070c4fd6b9473b3e3c196161825a51ebe029a451fa1/endec-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc309a2290bbd5f68403d7176ca781ccdcc1c32497e0d77c2742acc052bfde0c",
"md5": "bfcdaa6a994a2ff6b77c39904f530978",
"sha256": "6f9a35561f8906711bcafbf9e9f99e8ff62eab3cadc897d30e93ebf3ddd3cc78"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bfcdaa6a994a2ff6b77c39904f530978",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 466714,
"upload_time": "2025-01-12T02:58:40",
"upload_time_iso_8601": "2025-01-12T02:58:40.377578Z",
"url": "https://files.pythonhosted.org/packages/dc/30/9a2290bbd5f68403d7176ca781ccdcc1c32497e0d77c2742acc052bfde0c/endec-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61f8220e14200d32a1923005708f8fafb7d8f0460048bd1fabf989559398860e",
"md5": "23c97dd3d00e17f73c64f28a5eb44304",
"sha256": "03607652ddd5bad6dfbe6d580966f1c74ca2f5011059708c5bd12c04f8aa62ee"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "23c97dd3d00e17f73c64f28a5eb44304",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 444336,
"upload_time": "2025-01-12T02:59:01",
"upload_time_iso_8601": "2025-01-12T02:59:01.269449Z",
"url": "https://files.pythonhosted.org/packages/61/f8/220e14200d32a1923005708f8fafb7d8f0460048bd1fabf989559398860e/endec-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0400a8d222a5bba2bd548f613a4378173618a7b84106f19448f65f6d512d830",
"md5": "5b5e8e4e81a3fd6d1b619931facc2d58",
"sha256": "a89a31b318d0a1fb83ebab115129f26d341175c03dfc6090d16d20e59ea66d08"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5b5e8e4e81a3fd6d1b619931facc2d58",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 405374,
"upload_time": "2025-01-12T02:59:26",
"upload_time_iso_8601": "2025-01-12T02:59:26.265109Z",
"url": "https://files.pythonhosted.org/packages/c0/40/0a8d222a5bba2bd548f613a4378173618a7b84106f19448f65f6d512d830/endec-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bde19d0d0e97663c754d7bc19e059885164e6ed292195ee7c2b97d423096f6c3",
"md5": "8da2e2d28cc346bb3edc0ef99eae2b8d",
"sha256": "68a425a39ea634081f488c7aa5170a6c20337bd7270bde399911708684860a5f"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8da2e2d28cc346bb3edc0ef99eae2b8d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 417851,
"upload_time": "2025-01-12T02:59:14",
"upload_time_iso_8601": "2025-01-12T02:59:14.007701Z",
"url": "https://files.pythonhosted.org/packages/bd/e1/9d0d0e97663c754d7bc19e059885164e6ed292195ee7c2b97d423096f6c3/endec-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2aa189c06ed21ff0a909a56f3cf9015dd050c7c59da8f6946f8e555ca781900a",
"md5": "d2963a1e8073c44bfe3864c00e2db3f9",
"sha256": "3fc59ec9e08dd91ced51ff7b913d7a7c56c4e9c3c6fa8f0dc42b10cc07abd066"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d2963a1e8073c44bfe3864c00e2db3f9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 580956,
"upload_time": "2025-01-12T03:00:10",
"upload_time_iso_8601": "2025-01-12T03:00:10.071150Z",
"url": "https://files.pythonhosted.org/packages/2a/a1/89c06ed21ff0a909a56f3cf9015dd050c7c59da8f6946f8e555ca781900a/endec-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eba5ccc7732e7da6a4457b74dea4fca83ec3ecd0c1c0b34b54a00fd68fa7eada",
"md5": "039cebae0b8395007eed404735233149",
"sha256": "1b1cd09714274ec1c250cfe7268564fb6780851eab798553f37c16739dd9a34c"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "039cebae0b8395007eed404735233149",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 674356,
"upload_time": "2025-01-12T03:00:22",
"upload_time_iso_8601": "2025-01-12T03:00:22.038388Z",
"url": "https://files.pythonhosted.org/packages/eb/a5/ccc7732e7da6a4457b74dea4fca83ec3ecd0c1c0b34b54a00fd68fa7eada/endec-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d2e36a347b0cbde9ac32d4fab0d1c50a0b31101650d262fdeac9a6a5525b031",
"md5": "a765aa0eabc915b6e2a858d7f8985cf6",
"sha256": "8d65954c38e63e16004bd61eab42f5e554764f7711d2e68acbf4bdc699e7aacf"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a765aa0eabc915b6e2a858d7f8985cf6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 597536,
"upload_time": "2025-01-12T03:00:34",
"upload_time_iso_8601": "2025-01-12T03:00:34.952914Z",
"url": "https://files.pythonhosted.org/packages/3d/2e/36a347b0cbde9ac32d4fab0d1c50a0b31101650d262fdeac9a6a5525b031/endec-0.3.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2636a39b8f1e341cfe090c11a0973f746fe5fbd36e3bcd689475cd405d95a40b",
"md5": "a79f1ba89952d00a117c6fc01f23e0f8",
"sha256": "55cbcc9deece1f77b856f8c76223dc771b0c676cd1696bffcd23134a1d6b0d4b"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a79f1ba89952d00a117c6fc01f23e0f8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 575580,
"upload_time": "2025-01-12T03:00:48",
"upload_time_iso_8601": "2025-01-12T03:00:48.351899Z",
"url": "https://files.pythonhosted.org/packages/26/36/a39b8f1e341cfe090c11a0973f746fe5fbd36e3bcd689475cd405d95a40b/endec-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f6e98187cd113bb1c4066e73d15bf8f8f4f6d011e6aed26008a339274761c85",
"md5": "59f3a1e5aa011408687d0aa5ad3dfc75",
"sha256": "557f76bb4fc0acd3244d2db7ecd0ee98e6a6c3c3c39627287f8f6f3936eff0e7"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "59f3a1e5aa011408687d0aa5ad3dfc75",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 263577,
"upload_time": "2025-01-12T03:01:13",
"upload_time_iso_8601": "2025-01-12T03:01:13.239509Z",
"url": "https://files.pythonhosted.org/packages/7f/6e/98187cd113bb1c4066e73d15bf8f8f4f6d011e6aed26008a339274761c85/endec-0.3.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd8c47fd123e29649cc9099cfe353b559341b9c27cf4547e2af1c770a1544ea5",
"md5": "e6d3c6567e77864267ac12818472e23a",
"sha256": "d19cf529993b452520f7a198e747ebc9292644413f5fe9532cf972bcbbb386f1"
},
"downloads": -1,
"filename": "endec-0.3.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e6d3c6567e77864267ac12818472e23a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 272117,
"upload_time": "2025-01-12T03:01:03",
"upload_time_iso_8601": "2025-01-12T03:01:03.570829Z",
"url": "https://files.pythonhosted.org/packages/dd/8c/47fd123e29649cc9099cfe353b559341b9c27cf4547e2af1c770a1544ea5/endec-0.3.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6061fe73aa42ed2b226e377cc828c1f30d2b598fc267dd7dae6db4cd4e01113b",
"md5": "a15be9129ad012433c602efb70f44e16",
"sha256": "112671bc64a326c82509d07d5f5671bab5faf308f050efe337eba3c74b90469d"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a15be9129ad012433c602efb70f44e16",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 380881,
"upload_time": "2025-01-12T02:59:57",
"upload_time_iso_8601": "2025-01-12T02:59:57.943045Z",
"url": "https://files.pythonhosted.org/packages/60/61/fe73aa42ed2b226e377cc828c1f30d2b598fc267dd7dae6db4cd4e01113b/endec-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b36a0eab57d98b8a42020731ca92fc08b85a486467475243a0e5f37d2214b43",
"md5": "67a68e55d305ced0a1e2129280dd39c8",
"sha256": "2893ee6078796eed8f660b256bbd73a529113c1b82848022134c611302b86ed1"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "67a68e55d305ced0a1e2129280dd39c8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 378457,
"upload_time": "2025-01-12T02:59:43",
"upload_time_iso_8601": "2025-01-12T02:59:43.002989Z",
"url": "https://files.pythonhosted.org/packages/5b/36/a0eab57d98b8a42020731ca92fc08b85a486467475243a0e5f37d2214b43/endec-0.3.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03f79d042bb10f4913843572c11c4fe444b406e4c58edc850aa02b17575bdcdc",
"md5": "a6fa3998ad9062d34094c290d63996de",
"sha256": "562202aa34332295042f80cca60541fb5da6c9273ed30b1a5b830b40341a5c53"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a6fa3998ad9062d34094c290d63996de",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 402699,
"upload_time": "2025-01-12T02:58:04",
"upload_time_iso_8601": "2025-01-12T02:58:04.185219Z",
"url": "https://files.pythonhosted.org/packages/03/f7/9d042bb10f4913843572c11c4fe444b406e4c58edc850aa02b17575bdcdc/endec-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edcb52febe2c76032f128d514e9d9433b705ee9f405d9883f552c29df2eda484",
"md5": "aa39d8f127d33d068ac12cb95d594d2e",
"sha256": "a0d1e50a1bf424c770bc1bc2f88a9af4e119ace2c653c31c862f6f5cc1679fb7"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "aa39d8f127d33d068ac12cb95d594d2e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 412151,
"upload_time": "2025-01-12T02:58:21",
"upload_time_iso_8601": "2025-01-12T02:58:21.852000Z",
"url": "https://files.pythonhosted.org/packages/ed/cb/52febe2c76032f128d514e9d9433b705ee9f405d9883f552c29df2eda484/endec-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae54978b53bd0b768469af69bad4d9406c86611f0921b467743ee5d449ad0f36",
"md5": "ee9e3976381ed7dee85e0a5470d8668f",
"sha256": "c75123fad803d487d368c580b4cb7499019219a234b825fdc58644b78e7c94e1"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ee9e3976381ed7dee85e0a5470d8668f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 466658,
"upload_time": "2025-01-12T02:58:42",
"upload_time_iso_8601": "2025-01-12T02:58:42.774745Z",
"url": "https://files.pythonhosted.org/packages/ae/54/978b53bd0b768469af69bad4d9406c86611f0921b467743ee5d449ad0f36/endec-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "91d3bcd202657ad120b60eff543c7102a416a4cf61a11c1d61df7ba6c82e09ad",
"md5": "ae6390639cfd49037af962720baba7e2",
"sha256": "32e4c940e665267dd7dcd9c6493e68e196eaae57c4978cf719d6fd706354a04f"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ae6390639cfd49037af962720baba7e2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 443804,
"upload_time": "2025-01-12T02:59:02",
"upload_time_iso_8601": "2025-01-12T02:59:02.510687Z",
"url": "https://files.pythonhosted.org/packages/91/d3/bcd202657ad120b60eff543c7102a416a4cf61a11c1d61df7ba6c82e09ad/endec-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14f3aa44fd320e82d58bc09bb14900d3e305b7f862106d247f584bbfec4193e5",
"md5": "8ed31a619f6a9fec16d49bc2755209ac",
"sha256": "6789c93a9f6151d5e67f2a4555fd85244a3d8b616c9283a5abf5ca57cadb9a6c"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8ed31a619f6a9fec16d49bc2755209ac",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 405125,
"upload_time": "2025-01-12T02:59:28",
"upload_time_iso_8601": "2025-01-12T02:59:28.855494Z",
"url": "https://files.pythonhosted.org/packages/14/f3/aa44fd320e82d58bc09bb14900d3e305b7f862106d247f584bbfec4193e5/endec-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48caf610bfb5600b4043ad8ed29eba00781a301753b42b901692ce237c4e7b30",
"md5": "fd398e1f1b89be3fafcf14259c752873",
"sha256": "05ddd167274cda53bb966af2fccdef671bfa567a3a8706e6ab314002c32443fe"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fd398e1f1b89be3fafcf14259c752873",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 417789,
"upload_time": "2025-01-12T02:59:16",
"upload_time_iso_8601": "2025-01-12T02:59:16.511813Z",
"url": "https://files.pythonhosted.org/packages/48/ca/f610bfb5600b4043ad8ed29eba00781a301753b42b901692ce237c4e7b30/endec-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fcd664e9c29958fe9c8bafebacc96a4f7a399528f8a022a499757fc0c5599bd8",
"md5": "e366ecb0d63117b55794208142be76f1",
"sha256": "cf3c783622c7a0e4f9c1805b0cb5cdc6a4f122e3239834c67aa0fec8cafc4906"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e366ecb0d63117b55794208142be76f1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 580798,
"upload_time": "2025-01-12T03:00:11",
"upload_time_iso_8601": "2025-01-12T03:00:11.421702Z",
"url": "https://files.pythonhosted.org/packages/fc/d6/64e9c29958fe9c8bafebacc96a4f7a399528f8a022a499757fc0c5599bd8/endec-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0632f121e5d4a9c0149aceb9c58cc4723effbab496d00535635194469df1186f",
"md5": "1a1a6d888d259bd56a325f8ae7d73ff9",
"sha256": "62839d14a74db1533fca949deaf8342342d5fb1a7aa84514417d0aebf8976b91"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1a1a6d888d259bd56a325f8ae7d73ff9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 674431,
"upload_time": "2025-01-12T03:00:23",
"upload_time_iso_8601": "2025-01-12T03:00:23.479779Z",
"url": "https://files.pythonhosted.org/packages/06/32/f121e5d4a9c0149aceb9c58cc4723effbab496d00535635194469df1186f/endec-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63737b68ee2e8308bbaa78af745badc691dac25c82ff805b7fff39f64581dc1e",
"md5": "0566297c787a2f7488f8434c39a91bc1",
"sha256": "4ec83087e557a1842ca8e62709ce2c7d60866f9ff8ebb0d3c02df8279aa7b08a"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0566297c787a2f7488f8434c39a91bc1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 597428,
"upload_time": "2025-01-12T03:00:36",
"upload_time_iso_8601": "2025-01-12T03:00:36.264685Z",
"url": "https://files.pythonhosted.org/packages/63/73/7b68ee2e8308bbaa78af745badc691dac25c82ff805b7fff39f64581dc1e/endec-0.3.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08447334dee4d42f62f4c9cbb79c7e3dc5b1b25296151e988e2d9de39208f723",
"md5": "f5e346edec9cd919e010fdca33726358",
"sha256": "70fc5777a5ef77c6e3d046f174c3fdb077056e470eccc6afec25c62f803a639d"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f5e346edec9cd919e010fdca33726358",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 575373,
"upload_time": "2025-01-12T03:00:49",
"upload_time_iso_8601": "2025-01-12T03:00:49.812109Z",
"url": "https://files.pythonhosted.org/packages/08/44/7334dee4d42f62f4c9cbb79c7e3dc5b1b25296151e988e2d9de39208f723/endec-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0524860a1b1ab097d1c0790a0c34b80f7059c14d4ba6ed1362355f81233f8c1f",
"md5": "df502326493893800a90192b90fcd8bc",
"sha256": "10c30e44990652ba2d31af3ad3b02b36961a339ed6784c96991d336d24c69201"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "df502326493893800a90192b90fcd8bc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 263694,
"upload_time": "2025-01-12T03:01:14",
"upload_time_iso_8601": "2025-01-12T03:01:14.556158Z",
"url": "https://files.pythonhosted.org/packages/05/24/860a1b1ab097d1c0790a0c34b80f7059c14d4ba6ed1362355f81233f8c1f/endec-0.3.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4367abfd4c7d1b2a383a366ea03d5b8754ee9c6f1f292b34fa5ea51c3f49a4e5",
"md5": "30065034aa77e245a08a39fa3ba75f05",
"sha256": "d0257a7c22f41a3f7cfdf494836dcd8e9ad57d1859deccea04b018562cf05d5b"
},
"downloads": -1,
"filename": "endec-0.3.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "30065034aa77e245a08a39fa3ba75f05",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 272087,
"upload_time": "2025-01-12T03:01:04",
"upload_time_iso_8601": "2025-01-12T03:01:04.912447Z",
"url": "https://files.pythonhosted.org/packages/43/67/abfd4c7d1b2a383a366ea03d5b8754ee9c6f1f292b34fa5ea51c3f49a4e5/endec-0.3.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79530a310033b02a60fe5162dd548fbdd706856ca51fd65077b1de2953b31337",
"md5": "689ba4f4fd69027f8d52982d26aaf7c6",
"sha256": "049fc6f98d561323ad9a012239525f5a20a93a4c601b162a88c3ec40a9193ea6"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "689ba4f4fd69027f8d52982d26aaf7c6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 379429,
"upload_time": "2025-01-12T02:59:59",
"upload_time_iso_8601": "2025-01-12T02:59:59.730520Z",
"url": "https://files.pythonhosted.org/packages/79/53/0a310033b02a60fe5162dd548fbdd706856ca51fd65077b1de2953b31337/endec-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "757ac25ea36c382b604cc1e270ec38e16125f2cf912b559de418596c00ae11cc",
"md5": "58ac60acf261d55abd259249f329944e",
"sha256": "4091b3e8f64ba04c0fe8efb59d33b58e42f7ff024b3c879db1a87521371d01e0"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "58ac60acf261d55abd259249f329944e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 376559,
"upload_time": "2025-01-12T02:59:45",
"upload_time_iso_8601": "2025-01-12T02:59:45.586404Z",
"url": "https://files.pythonhosted.org/packages/75/7a/c25ea36c382b604cc1e270ec38e16125f2cf912b559de418596c00ae11cc/endec-0.3.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64742e80e0c4649100dfcd9a5b3da2881c5e76e68a6f11138657fc2ee6cff8ac",
"md5": "2f0d8fe46b3c9da80b408238f915101d",
"sha256": "a07df7f26a237af751c5ba3713775bb5bb3eb1f65b24370a581b300b560cd117"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2f0d8fe46b3c9da80b408238f915101d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 402439,
"upload_time": "2025-01-12T02:58:06",
"upload_time_iso_8601": "2025-01-12T02:58:06.541588Z",
"url": "https://files.pythonhosted.org/packages/64/74/2e80e0c4649100dfcd9a5b3da2881c5e76e68a6f11138657fc2ee6cff8ac/endec-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c51538538dca0f12ea62c3507930c6d6f8b356e1775682ac856407080547bcbc",
"md5": "200881c3b9282de56dc7f037437be9df",
"sha256": "6efdc9de9e7a9f0e178d50abef5a24ed3570bdf98aa3351b8bdae79b7953f678"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "200881c3b9282de56dc7f037437be9df",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 411230,
"upload_time": "2025-01-12T02:58:24",
"upload_time_iso_8601": "2025-01-12T02:58:24.390771Z",
"url": "https://files.pythonhosted.org/packages/c5/15/38538dca0f12ea62c3507930c6d6f8b356e1775682ac856407080547bcbc/endec-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "228ae99a1c00292b6c99bfbe344d612dc7fbf59748d0ab867b92b587adb9d784",
"md5": "fb8660b70ce36ab4b64d6ffd4955aacc",
"sha256": "09739257608a8e7de1b4571a36f7b0e6dbe531a29348109d0bb465d452a60a6b"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fb8660b70ce36ab4b64d6ffd4955aacc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 466339,
"upload_time": "2025-01-12T02:58:45",
"upload_time_iso_8601": "2025-01-12T02:58:45.956214Z",
"url": "https://files.pythonhosted.org/packages/22/8a/e99a1c00292b6c99bfbe344d612dc7fbf59748d0ab867b92b587adb9d784/endec-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb58f54915c96de6817b59f55c22daefd6e14f4c40e8fb73aa06b2d6dc3752de",
"md5": "2e6ad3526a5bc294430f7484b585d909",
"sha256": "28519a91ce344fb536c75c478fc38ce057d18f1c9524d25f55029b24b9da4198"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2e6ad3526a5bc294430f7484b585d909",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 442149,
"upload_time": "2025-01-12T02:59:05",
"upload_time_iso_8601": "2025-01-12T02:59:05.080465Z",
"url": "https://files.pythonhosted.org/packages/fb/58/f54915c96de6817b59f55c22daefd6e14f4c40e8fb73aa06b2d6dc3752de/endec-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78bfd5c32716bae09435d35cf5be0a9a7b9957c18ea8fa5043b2a8eccce4d540",
"md5": "08f027f412af13b001aa70c668508abd",
"sha256": "2673443b464f76ac25de94dcfdfb50d4e8e7319eeffd1329b8e6c292f5606475"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "08f027f412af13b001aa70c668508abd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 404401,
"upload_time": "2025-01-12T02:59:31",
"upload_time_iso_8601": "2025-01-12T02:59:31.463512Z",
"url": "https://files.pythonhosted.org/packages/78/bf/d5c32716bae09435d35cf5be0a9a7b9957c18ea8fa5043b2a8eccce4d540/endec-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56133f08020f659787c0b05436df548897d60bc682c8624961ca7a3f752bc989",
"md5": "78f8944f000e5b15d44c45e4680a34af",
"sha256": "85d0679cd42724f70fb4c5d469cd96c1c965386b6286f4714545932bddab48b5"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "78f8944f000e5b15d44c45e4680a34af",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 416859,
"upload_time": "2025-01-12T02:59:17",
"upload_time_iso_8601": "2025-01-12T02:59:17.776842Z",
"url": "https://files.pythonhosted.org/packages/56/13/3f08020f659787c0b05436df548897d60bc682c8624961ca7a3f752bc989/endec-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14a2b928d000cd721b05bee11abe73aa6b5b5f19b91de71d07d3795c467377d9",
"md5": "349f6b6be03eff32786cc17d646b9271",
"sha256": "df8b12063d0f5da125bffbcda3287b3e0d58a307603f0966f862ac930809ed2b"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "349f6b6be03eff32786cc17d646b9271",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 580610,
"upload_time": "2025-01-12T03:00:12",
"upload_time_iso_8601": "2025-01-12T03:00:12.752214Z",
"url": "https://files.pythonhosted.org/packages/14/a2/b928d000cd721b05bee11abe73aa6b5b5f19b91de71d07d3795c467377d9/endec-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d43af159e307419e1cd8b27ae0ce1a95f6ed8c69447d23af30ac97366c842cc2",
"md5": "a389181984b0982af343d26e77d9b550",
"sha256": "62ae5c9b6fb8a12ccf800418a596711c3ede6d32a4a577480926f0bacb4efd3e"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "a389181984b0982af343d26e77d9b550",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 673505,
"upload_time": "2025-01-12T03:00:24",
"upload_time_iso_8601": "2025-01-12T03:00:24.771064Z",
"url": "https://files.pythonhosted.org/packages/d4/3a/f159e307419e1cd8b27ae0ce1a95f6ed8c69447d23af30ac97366c842cc2/endec-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e33d8dbe7bde83c518bc1664bd7fd009855f866daf20c08b1670a417304f810a",
"md5": "dabaad0c2d94e6245c99d2a5723e657a",
"sha256": "e76917c8fb50bf4a4210b8cd1a98607f253cad485bf0cf5502bdb19481f37cfb"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "dabaad0c2d94e6245c99d2a5723e657a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 596130,
"upload_time": "2025-01-12T03:00:37",
"upload_time_iso_8601": "2025-01-12T03:00:37.735330Z",
"url": "https://files.pythonhosted.org/packages/e3/3d/8dbe7bde83c518bc1664bd7fd009855f866daf20c08b1670a417304f810a/endec-0.3.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39c6dfefcd8a25868a7864561833c21340862c0d0f4450f1964f2720b2f2b08a",
"md5": "a4f768883bb0960a90a6b82534f541b1",
"sha256": "69e5849ae53b658a891e416d362d2bc37471926c75c125c163ab8cadc8896c6a"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a4f768883bb0960a90a6b82534f541b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 574708,
"upload_time": "2025-01-12T03:00:51",
"upload_time_iso_8601": "2025-01-12T03:00:51.263787Z",
"url": "https://files.pythonhosted.org/packages/39/c6/dfefcd8a25868a7864561833c21340862c0d0f4450f1964f2720b2f2b08a/endec-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72755bc6cb29be86af76cd8fa4d5868b144f6c672d8e30dddd44d851f036437e",
"md5": "590b1fe8436990108efb9ffada591cc4",
"sha256": "2383946350bb2b14e796c4083f657a927641aec71edda790f4f98faca9ff7654"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "590b1fe8436990108efb9ffada591cc4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 263130,
"upload_time": "2025-01-12T03:01:15",
"upload_time_iso_8601": "2025-01-12T03:01:15.890357Z",
"url": "https://files.pythonhosted.org/packages/72/75/5bc6cb29be86af76cd8fa4d5868b144f6c672d8e30dddd44d851f036437e/endec-0.3.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4afc97548bdd134a69171c3990a13bff29ff009a34e763d5b8d73470ae4fb9d4",
"md5": "0be2b0e4ae29292799029135bfc9f7de",
"sha256": "6c31e098b72e80595cfd1d826aa4b048cfccc1bd6d6fb14086394833281a03a4"
},
"downloads": -1,
"filename": "endec-0.3.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "0be2b0e4ae29292799029135bfc9f7de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 271796,
"upload_time": "2025-01-12T03:01:06",
"upload_time_iso_8601": "2025-01-12T03:01:06.708705Z",
"url": "https://files.pythonhosted.org/packages/4a/fc/97548bdd134a69171c3990a13bff29ff009a34e763d5b8d73470ae4fb9d4/endec-0.3.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3458fdcf10555924338616b2e904662622a28a431d4e19d43c97992823c54f80",
"md5": "631ad4579ac73340b80a3d64d6f2356f",
"sha256": "c14c976303479a72390fa0769c7ba94c08676a1abe76d8a2860c06bddfac58d3"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "631ad4579ac73340b80a3d64d6f2356f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 379187,
"upload_time": "2025-01-12T03:00:01",
"upload_time_iso_8601": "2025-01-12T03:00:01.025070Z",
"url": "https://files.pythonhosted.org/packages/34/58/fdcf10555924338616b2e904662622a28a431d4e19d43c97992823c54f80/endec-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab2ca48542fe88ff24b50caa19f3fddb84ac91fdac0c9677abcc7a081b681efa",
"md5": "90e176d4324a73f791e411394cb3194a",
"sha256": "4994ab0feb4053196430b77466bf52db7afb4bdff153d0670a1bc33314d8d47c"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "90e176d4324a73f791e411394cb3194a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 376444,
"upload_time": "2025-01-12T02:59:46",
"upload_time_iso_8601": "2025-01-12T02:59:46.769621Z",
"url": "https://files.pythonhosted.org/packages/ab/2c/a48542fe88ff24b50caa19f3fddb84ac91fdac0c9677abcc7a081b681efa/endec-0.3.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6498a0ccedc1777244397eb3fd6dd591e4b432e36afba4f7eb85f928acd291ba",
"md5": "1595c7122f63adf14f9ab82c1fafdf16",
"sha256": "c97fade1e419fcec57973084ad5827d43ce1d1e63333ccdf90ee83b970dc5476"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1595c7122f63adf14f9ab82c1fafdf16",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 402388,
"upload_time": "2025-01-12T02:58:10",
"upload_time_iso_8601": "2025-01-12T02:58:10.881136Z",
"url": "https://files.pythonhosted.org/packages/64/98/a0ccedc1777244397eb3fd6dd591e4b432e36afba4f7eb85f928acd291ba/endec-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98e128e5cafca7de8caa33e5441e857129483206051c05d0681a74c0e47b0759",
"md5": "4295813b45e00c6c5566371f92152383",
"sha256": "9bcf3853976c1cba2f78e59d15f0f7cdcf47128cf495a259981f5a178ee3c0bd"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4295813b45e00c6c5566371f92152383",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 411030,
"upload_time": "2025-01-12T02:58:27",
"upload_time_iso_8601": "2025-01-12T02:58:27.938587Z",
"url": "https://files.pythonhosted.org/packages/98/e1/28e5cafca7de8caa33e5441e857129483206051c05d0681a74c0e47b0759/endec-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ce58d0075428af3c4ebbc5085e4271f31afa70e71be595f29cf092b2a92116e",
"md5": "32b3a0abaab1d081180c5bab01779caf",
"sha256": "155469938089847ab5f32841ca52bb7a5283dc5977186d4e2ce1d04b9b5b86cd"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "32b3a0abaab1d081180c5bab01779caf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 466401,
"upload_time": "2025-01-12T02:58:48",
"upload_time_iso_8601": "2025-01-12T02:58:48.380487Z",
"url": "https://files.pythonhosted.org/packages/3c/e5/8d0075428af3c4ebbc5085e4271f31afa70e71be595f29cf092b2a92116e/endec-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9417308458e158139eff95111629faa2a6f4e13f11accb4c884a9594a1457b6a",
"md5": "ed765f755aa89652d8043e760a6ef623",
"sha256": "a73877f345c12e6beb50805fa06c38beea3d37baabb64137c3229450293dfe90"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ed765f755aa89652d8043e760a6ef623",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 442275,
"upload_time": "2025-01-12T02:59:06",
"upload_time_iso_8601": "2025-01-12T02:59:06.376151Z",
"url": "https://files.pythonhosted.org/packages/94/17/308458e158139eff95111629faa2a6f4e13f11accb4c884a9594a1457b6a/endec-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "652eb8af453a507d03dbd73e77601bad19e2859d500cbef5e5f0e02cde3d27e0",
"md5": "8969f6478a8283f2d44abe190ad76b36",
"sha256": "e1f61afb5fd7197c6f75f406d92d9537a880145429be9c468c925a03e69c9041"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8969f6478a8283f2d44abe190ad76b36",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 404632,
"upload_time": "2025-01-12T02:59:34",
"upload_time_iso_8601": "2025-01-12T02:59:34.118039Z",
"url": "https://files.pythonhosted.org/packages/65/2e/b8af453a507d03dbd73e77601bad19e2859d500cbef5e5f0e02cde3d27e0/endec-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe0d16d38cf5e89df652e3dabeaa8e018a6baf721576509d964333caae89404e",
"md5": "5bd3f8c5da127c015756481617f7cd6d",
"sha256": "0240b0e632db0b441a4964b9a99a170bb40a3e3627c30872cde2df389dec19df"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "5bd3f8c5da127c015756481617f7cd6d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 416695,
"upload_time": "2025-01-12T02:59:18",
"upload_time_iso_8601": "2025-01-12T02:59:18.930705Z",
"url": "https://files.pythonhosted.org/packages/fe/0d/16d38cf5e89df652e3dabeaa8e018a6baf721576509d964333caae89404e/endec-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f8c0cde1c593c7a25f53e881c3d59f643e9715b7a86d5d03bd24565674a717d",
"md5": "ce5d26763b4f5bf8dd5455d5cebe67f6",
"sha256": "3fb63c6b7317880f4cc2df1a93763ae8e71e5f27a8eb7dc728c896dc9643f4e5"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ce5d26763b4f5bf8dd5455d5cebe67f6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 580535,
"upload_time": "2025-01-12T03:00:14",
"upload_time_iso_8601": "2025-01-12T03:00:14.051807Z",
"url": "https://files.pythonhosted.org/packages/7f/8c/0cde1c593c7a25f53e881c3d59f643e9715b7a86d5d03bd24565674a717d/endec-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0497252ff4db753382647b7b3cd422e4c9f1c23b67a36b0193e5db17270eb26",
"md5": "db615285dc30568b3aa1dd3434f91627",
"sha256": "949588df63074f9471685ad2786fa4fd6268499a9ac5c25eac1feb6f7db8cfea"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "db615285dc30568b3aa1dd3434f91627",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 673368,
"upload_time": "2025-01-12T03:00:26",
"upload_time_iso_8601": "2025-01-12T03:00:26.249572Z",
"url": "https://files.pythonhosted.org/packages/b0/49/7252ff4db753382647b7b3cd422e4c9f1c23b67a36b0193e5db17270eb26/endec-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95f23ff19e60c1be13b67ac0963506529ff18c7b0106f95927408d8a47e4e047",
"md5": "1f9f79b53490c14954dd7227b81d891e",
"sha256": "aa1a5939d36d3a7ea582711694e35e5735b0b34738aacb0e868a031739a1158b"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1f9f79b53490c14954dd7227b81d891e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 595848,
"upload_time": "2025-01-12T03:00:39",
"upload_time_iso_8601": "2025-01-12T03:00:39.110627Z",
"url": "https://files.pythonhosted.org/packages/95/f2/3ff19e60c1be13b67ac0963506529ff18c7b0106f95927408d8a47e4e047/endec-0.3.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "889528e0b3d6176b03b6533b6739cac44e1e66ba5d17d17bdd339a38d39405ab",
"md5": "3df4f44cd8fb741076b0a847817724dd",
"sha256": "7a402e1ae6ccadf604992dbbf4fee07de4e69d98bed8105a22be598636fcdb23"
},
"downloads": -1,
"filename": "endec-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3df4f44cd8fb741076b0a847817724dd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 574846,
"upload_time": "2025-01-12T03:00:52",
"upload_time_iso_8601": "2025-01-12T03:00:52.587101Z",
"url": "https://files.pythonhosted.org/packages/88/95/28e0b3d6176b03b6533b6739cac44e1e66ba5d17d17bdd339a38d39405ab/endec-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff2289a558c111b9d3f5e50d9b49e494563fe58d10808390cd016f8564be96f7",
"md5": "200a156c866a07f11feb54bf6ed6aa9e",
"sha256": "1d5f4966d54887e7da8eb3d24ce24a4a944ddc87e314c63a9d16740505482576"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "200a156c866a07f11feb54bf6ed6aa9e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 380683,
"upload_time": "2025-01-12T03:00:02",
"upload_time_iso_8601": "2025-01-12T03:00:02.419029Z",
"url": "https://files.pythonhosted.org/packages/ff/22/89a558c111b9d3f5e50d9b49e494563fe58d10808390cd016f8564be96f7/endec-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90b2173aaf6fea383d6a8b8447f37de5320afe96357f37686cee28dac7eae9d4",
"md5": "ac6b98e273dbd5be0eba9036ddc92b37",
"sha256": "c69880e504d381fcf88be8d168a726e3839275135a19c2f2bb81a2103c474fe4"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ac6b98e273dbd5be0eba9036ddc92b37",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 378275,
"upload_time": "2025-01-12T02:59:48",
"upload_time_iso_8601": "2025-01-12T02:59:48.050854Z",
"url": "https://files.pythonhosted.org/packages/90/b2/173aaf6fea383d6a8b8447f37de5320afe96357f37686cee28dac7eae9d4/endec-0.3.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a9cdcbc954cf13fb3c990eb520f18d18f0bef74ad98c9f78b13cc3ea298e6ae",
"md5": "a68bc0b3b0ea1ab4cade8c6528100c9e",
"sha256": "a94a8b6d0ff332aa9826ed7d19da6b7b7a6179c4824b16fd72e504ee8c137fc4"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a68bc0b3b0ea1ab4cade8c6528100c9e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 402981,
"upload_time": "2025-01-12T02:58:13",
"upload_time_iso_8601": "2025-01-12T02:58:13.392743Z",
"url": "https://files.pythonhosted.org/packages/2a/9c/dcbc954cf13fb3c990eb520f18d18f0bef74ad98c9f78b13cc3ea298e6ae/endec-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dc09a141ce57d2205bb00276269043cbd5105c9a80f0ada0676266a7938120f",
"md5": "52e4fe81bb31db1780a47bd8561adecd",
"sha256": "8914a89d34742031db4c83eb7fb8f317d44ab37c990e4212133e39f1216b38f0"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "52e4fe81bb31db1780a47bd8561adecd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 411631,
"upload_time": "2025-01-12T02:58:30",
"upload_time_iso_8601": "2025-01-12T02:58:30.767706Z",
"url": "https://files.pythonhosted.org/packages/8d/c0/9a141ce57d2205bb00276269043cbd5105c9a80f0ada0676266a7938120f/endec-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7a6e6636013e9d3015c0de5e623bb05863e46b78123ef5e140cc752c3d8a9cf",
"md5": "b4019027e67b0ea3ad53fe2e658a28e4",
"sha256": "e1b22cd8c3ef7a4975fd9408a215e5fae2bebb5eb69f428a57b8bc8d4b133b57"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b4019027e67b0ea3ad53fe2e658a28e4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 466453,
"upload_time": "2025-01-12T02:58:50",
"upload_time_iso_8601": "2025-01-12T02:58:50.680143Z",
"url": "https://files.pythonhosted.org/packages/e7/a6/e6636013e9d3015c0de5e623bb05863e46b78123ef5e140cc752c3d8a9cf/endec-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99ee6c27f673ace290bc48ecf73cb7a8d702a77c1fa9f4bdf8b8814e4bed50ff",
"md5": "77765a7df2127a26f1387cef84ddc679",
"sha256": "63a352fe0fe015208158dbc9be75d0caef73f1c7aca6ff7175ad2bc6580758be"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "77765a7df2127a26f1387cef84ddc679",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 444157,
"upload_time": "2025-01-12T02:59:07",
"upload_time_iso_8601": "2025-01-12T02:59:07.635520Z",
"url": "https://files.pythonhosted.org/packages/99/ee/6c27f673ace290bc48ecf73cb7a8d702a77c1fa9f4bdf8b8814e4bed50ff/endec-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6bc10ecf37b475286f5706e79e95fc7ef7bfeaa99be5e835208d42973b8fee89",
"md5": "5794a5187e79bdecdd8e0c35e898bb46",
"sha256": "ab38feb6d4ed4c613cb67b04978a9d5580124e9c4b255ba20cfd239e70da18ea"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5794a5187e79bdecdd8e0c35e898bb46",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 405038,
"upload_time": "2025-01-12T02:59:35",
"upload_time_iso_8601": "2025-01-12T02:59:35.527721Z",
"url": "https://files.pythonhosted.org/packages/6b/c1/0ecf37b475286f5706e79e95fc7ef7bfeaa99be5e835208d42973b8fee89/endec-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "760a58821dd9bdf617387e044f0073a414a26dd1d4300812e70405326c76f764",
"md5": "750b5fd6df9a5c770e19bb74cd55de3a",
"sha256": "afcacf50112440c5910b7e044596eb65f6092fb71e688ff3cfd96b84c962a0db"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "750b5fd6df9a5c770e19bb74cd55de3a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 417547,
"upload_time": "2025-01-12T02:59:20",
"upload_time_iso_8601": "2025-01-12T02:59:20.069995Z",
"url": "https://files.pythonhosted.org/packages/76/0a/58821dd9bdf617387e044f0073a414a26dd1d4300812e70405326c76f764/endec-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c625721e94b68fb5c6c720d63bd477c1c6698ff37249a3613bc23dc5e1d6769",
"md5": "617da533a91573bd0a1202693fd2f9d1",
"sha256": "dd91bbded4d750338ae4b435d30cec7957fe53ea0219a30629788155f3437142"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "617da533a91573bd0a1202693fd2f9d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 580913,
"upload_time": "2025-01-12T03:00:15",
"upload_time_iso_8601": "2025-01-12T03:00:15.443332Z",
"url": "https://files.pythonhosted.org/packages/3c/62/5721e94b68fb5c6c720d63bd477c1c6698ff37249a3613bc23dc5e1d6769/endec-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c2da7e1439ac7aeee85357b962cf52fed6922cb9861c1070fdbeb3ff5f80d86",
"md5": "2bc29bbefa1b46badbb2a31c704501e0",
"sha256": "4fc188f49dce57110699f8f74ab518e0791c20611fcedf7b8932b0700c84147f"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "2bc29bbefa1b46badbb2a31c704501e0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 674050,
"upload_time": "2025-01-12T03:00:29",
"upload_time_iso_8601": "2025-01-12T03:00:29.175240Z",
"url": "https://files.pythonhosted.org/packages/6c/2d/a7e1439ac7aeee85357b962cf52fed6922cb9861c1070fdbeb3ff5f80d86/endec-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc04229d56ef727f6eec1a610465a7c7dae2f9e1d2f74a8f8d0c083a93e10abe",
"md5": "df40193bfcc0d41be840bfcdf8dc372e",
"sha256": "988ef87b8a5cd27df5eaca57da534866af732c1b6bb73a5e0ae1bb1d60119edf"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "df40193bfcc0d41be840bfcdf8dc372e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 596862,
"upload_time": "2025-01-12T03:00:40",
"upload_time_iso_8601": "2025-01-12T03:00:40.455940Z",
"url": "https://files.pythonhosted.org/packages/fc/04/229d56ef727f6eec1a610465a7c7dae2f9e1d2f74a8f8d0c083a93e10abe/endec-0.3.1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f94650fb01d341bdd482c09aa2d79e6991f60ee3b5d676815de0b1c2a8c5b5c5",
"md5": "34507c727a1bccfae2d8badd4d906d64",
"sha256": "8aea7e5bc503e30815f6b8c15a9100c4b0feb59002604ce55942d36277ab2056"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "34507c727a1bccfae2d8badd4d906d64",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 575299,
"upload_time": "2025-01-12T03:00:53",
"upload_time_iso_8601": "2025-01-12T03:00:53.834843Z",
"url": "https://files.pythonhosted.org/packages/f9/46/50fb01d341bdd482c09aa2d79e6991f60ee3b5d676815de0b1c2a8c5b5c5/endec-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "adc9cb41589427cc9a9f124e053f7d8f9b79b955912e1b6223a731a0df08be7e",
"md5": "67e410aba3464de2ce7d7db7ba89bab2",
"sha256": "b53c743b8824888918892dab591d0c5d41a2523ab224b9beab7066b10a74268b"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "67e410aba3464de2ce7d7db7ba89bab2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 263325,
"upload_time": "2025-01-12T03:01:17",
"upload_time_iso_8601": "2025-01-12T03:01:17.181427Z",
"url": "https://files.pythonhosted.org/packages/ad/c9/cb41589427cc9a9f124e053f7d8f9b79b955912e1b6223a731a0df08be7e/endec-0.3.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36a3397128ef77c2fbd3bac440bd5493fef56f0b1509b70a0a18a11217689765",
"md5": "defb97c97609760f9daf0a7ad7f56e9f",
"sha256": "a7c165cfdcdeb74b515e7ffcd6dc286d7fa9410ccf9e8f1d9ab31e8cb26211d2"
},
"downloads": -1,
"filename": "endec-0.3.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "defb97c97609760f9daf0a7ad7f56e9f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 271885,
"upload_time": "2025-01-12T03:01:09",
"upload_time_iso_8601": "2025-01-12T03:01:09.364248Z",
"url": "https://files.pythonhosted.org/packages/36/a3/397128ef77c2fbd3bac440bd5493fef56f0b1509b70a0a18a11217689765/endec-0.3.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02320f6a5c94e0cd90e821b5c885d3a68536b162712d324b8f7093dd2c045867",
"md5": "4b34c209bcaef47745e2de6c7e1a48a1",
"sha256": "434d9a78dd16d78e65dadc05265137ff2b6e1fbea2aeb5abe42020f13d627b7f"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4b34c209bcaef47745e2de6c7e1a48a1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 380967,
"upload_time": "2025-01-12T03:00:03",
"upload_time_iso_8601": "2025-01-12T03:00:03.948876Z",
"url": "https://files.pythonhosted.org/packages/02/32/0f6a5c94e0cd90e821b5c885d3a68536b162712d324b8f7093dd2c045867/endec-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f24d43f8e8bea4432fdc4d1bca7b769e1b815e2bb914d01ad98a1490763a146",
"md5": "384f59e0b95aa4510f3c2ae69914e7cb",
"sha256": "42bdfb9fef3e77dba382c751dc7e90ddb61ecd7a926e638f4a34d6769f59f73e"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "384f59e0b95aa4510f3c2ae69914e7cb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 378563,
"upload_time": "2025-01-12T02:59:49",
"upload_time_iso_8601": "2025-01-12T02:59:49.289083Z",
"url": "https://files.pythonhosted.org/packages/5f/24/d43f8e8bea4432fdc4d1bca7b769e1b815e2bb914d01ad98a1490763a146/endec-0.3.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71e22f2f0cd2468b9a847c354b8c308587f4199f847c18af0b3d7a0af5e27394",
"md5": "4a5ebb010def38f693a521c3a24e8c90",
"sha256": "a26815b840f67013146e8fd4667ab91d4a2286ce59e9724f63b64fe6b538db38"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4a5ebb010def38f693a521c3a24e8c90",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 402939,
"upload_time": "2025-01-12T02:58:15",
"upload_time_iso_8601": "2025-01-12T02:58:15.816669Z",
"url": "https://files.pythonhosted.org/packages/71/e2/2f2f0cd2468b9a847c354b8c308587f4199f847c18af0b3d7a0af5e27394/endec-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9972a00ceb48a7593789fccbfa27823b2b16a94f3527bdd11b8c72aed77a1f5",
"md5": "80877f35cfc30634b7d12f24353f6cda",
"sha256": "7ee4d36ec249c667d473a0105dfd32a0495a9366651c86c7d7212791632acfb2"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "80877f35cfc30634b7d12f24353f6cda",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 411787,
"upload_time": "2025-01-12T02:58:32",
"upload_time_iso_8601": "2025-01-12T02:58:32.062815Z",
"url": "https://files.pythonhosted.org/packages/f9/97/2a00ceb48a7593789fccbfa27823b2b16a94f3527bdd11b8c72aed77a1f5/endec-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b78baaaca9690b557befa532580a667fccf772b4ba2562900ac6fa7f13ade72",
"md5": "8b7d6f28d070258dc44eacd78bef9f7a",
"sha256": "38adeca9d3098921c44bdae8514d24b45bbd1e9c20ee378e597c9722f30b5676"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b7d6f28d070258dc44eacd78bef9f7a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 466837,
"upload_time": "2025-01-12T02:58:52",
"upload_time_iso_8601": "2025-01-12T02:58:52.928740Z",
"url": "https://files.pythonhosted.org/packages/6b/78/baaaca9690b557befa532580a667fccf772b4ba2562900ac6fa7f13ade72/endec-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4db234e253e0fd3b6c9d9f938d3e42fe6835dc37e172230c5ac6cd6658f0301c",
"md5": "efb02bf968cde05f8fda5e30b69cbba6",
"sha256": "1096871747846704684b95b5db472757949eb015eb4d209af859a70f49e4bcb6"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "efb02bf968cde05f8fda5e30b69cbba6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 444296,
"upload_time": "2025-01-12T02:59:08",
"upload_time_iso_8601": "2025-01-12T02:59:08.914112Z",
"url": "https://files.pythonhosted.org/packages/4d/b2/34e253e0fd3b6c9d9f938d3e42fe6835dc37e172230c5ac6cd6658f0301c/endec-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58efa00430d0b407d5e7bca3a2af070c952d44396968f233cb41185f4c8b294a",
"md5": "1dfd924ce7fe17c1eca83dc547dcb674",
"sha256": "3dcb72190ef6cd93253324da363b4f5c49a5d6642228b5e2b6e4d665109eb178"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1dfd924ce7fe17c1eca83dc547dcb674",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 405257,
"upload_time": "2025-01-12T02:59:36",
"upload_time_iso_8601": "2025-01-12T02:59:36.802317Z",
"url": "https://files.pythonhosted.org/packages/58/ef/a00430d0b407d5e7bca3a2af070c952d44396968f233cb41185f4c8b294a/endec-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab53f8648d18e9f5ce847404458f0bafcd21e8e5e4ecfaf48bf078f1b3f35bf9",
"md5": "fb85af434709768a82670ac297990fdf",
"sha256": "8b8623edda4953ea9a0e30d9f39fad2745330de9e21d8fb39acb2cf4ce1b6304"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fb85af434709768a82670ac297990fdf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 417757,
"upload_time": "2025-01-12T02:59:22",
"upload_time_iso_8601": "2025-01-12T02:59:22.618625Z",
"url": "https://files.pythonhosted.org/packages/ab/53/f8648d18e9f5ce847404458f0bafcd21e8e5e4ecfaf48bf078f1b3f35bf9/endec-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3a6a86bdfd4ad796d822a28bac6f9f20edff9c925ecd9d48315a30a07d2ccbe",
"md5": "90e1b7996dba1e6f22aaacfa8a6cff94",
"sha256": "433ccdbf2a9256b8993ecaf14aa861b917f773bc72617c12fe765b42a9233e2a"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "90e1b7996dba1e6f22aaacfa8a6cff94",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 581011,
"upload_time": "2025-01-12T03:00:16",
"upload_time_iso_8601": "2025-01-12T03:00:16.827796Z",
"url": "https://files.pythonhosted.org/packages/d3/a6/a86bdfd4ad796d822a28bac6f9f20edff9c925ecd9d48315a30a07d2ccbe/endec-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96efa8147778ac7372a978d6b2dbfe0449256ae19571a23f6b42b36a8b982770",
"md5": "b73e2bb3da5b81172ded11874bef59fd",
"sha256": "08b99377e119e92b7fd73318772df29ed0a48077e06c4b6283967abbf4bec202"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b73e2bb3da5b81172ded11874bef59fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 674200,
"upload_time": "2025-01-12T03:00:30",
"upload_time_iso_8601": "2025-01-12T03:00:30.644987Z",
"url": "https://files.pythonhosted.org/packages/96/ef/a8147778ac7372a978d6b2dbfe0449256ae19571a23f6b42b36a8b982770/endec-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "282950550451059da2c8620eaac428eb8a3b3a7792b5a8542bf2b9763ecae57d",
"md5": "21933d41e788fe414b0a61c0547ecff1",
"sha256": "fdccbd4a5ac4512402c0b8f9735cb98908d4b567dca293379853c3f77d59a8d1"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "21933d41e788fe414b0a61c0547ecff1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 597350,
"upload_time": "2025-01-12T03:00:41",
"upload_time_iso_8601": "2025-01-12T03:00:41.909973Z",
"url": "https://files.pythonhosted.org/packages/28/29/50550451059da2c8620eaac428eb8a3b3a7792b5a8542bf2b9763ecae57d/endec-0.3.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3a80a3a5bc4e96aeb4a7feee5682b36762d4323ad4e1ad504a1b894e46df0a4",
"md5": "03b7659b299e8c25f34f46651ad03752",
"sha256": "dfae75b4d94ff1ca741fb45078069c45b0d9d0470f954906b9a0ea149d536612"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "03b7659b299e8c25f34f46651ad03752",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 575590,
"upload_time": "2025-01-12T03:00:55",
"upload_time_iso_8601": "2025-01-12T03:00:55.148873Z",
"url": "https://files.pythonhosted.org/packages/f3/a8/0a3a5bc4e96aeb4a7feee5682b36762d4323ad4e1ad504a1b894e46df0a4/endec-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "915691e85b4e36bcd4cc70d414c1246ec67e52cf27cae55823462bef009663b2",
"md5": "a1bf7a88d1c70ebe93ce913db06ced8e",
"sha256": "311bbfbfba76a52e9ee3f8a373d1162aec11009c933c771923f6b78ef8e43fc8"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "a1bf7a88d1c70ebe93ce913db06ced8e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 263265,
"upload_time": "2025-01-12T03:01:19",
"upload_time_iso_8601": "2025-01-12T03:01:19.666639Z",
"url": "https://files.pythonhosted.org/packages/91/56/91e85b4e36bcd4cc70d414c1246ec67e52cf27cae55823462bef009663b2/endec-0.3.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89533503b8fe174d640ebea8ddd7a5e9ac516577b7c3881378d10a5b787374fc",
"md5": "d5e70f1f62aac159c3e58e40f64db095",
"sha256": "e2638ffc6ad5e09421e27e75258c7e527e0e720f02464190ebc3c411c3fba7f8"
},
"downloads": -1,
"filename": "endec-0.3.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "d5e70f1f62aac159c3e58e40f64db095",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 271814,
"upload_time": "2025-01-12T03:01:11",
"upload_time_iso_8601": "2025-01-12T03:01:11.917420Z",
"url": "https://files.pythonhosted.org/packages/89/53/3503b8fe174d640ebea8ddd7a5e9ac516577b7c3881378d10a5b787374fc/endec-0.3.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d81e69615d69021d3616e4d3b16a93899c9c1a2afaff97f4a273cdd596a12227",
"md5": "67fbba4270da93782cc0112cf30a6b1a",
"sha256": "9b939503f9ae02b4737d2af9aa9f3db901630a3821b69d5221530dcb3a407ea0"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "67fbba4270da93782cc0112cf30a6b1a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 381700,
"upload_time": "2025-01-12T03:00:05",
"upload_time_iso_8601": "2025-01-12T03:00:05.289444Z",
"url": "https://files.pythonhosted.org/packages/d8/1e/69615d69021d3616e4d3b16a93899c9c1a2afaff97f4a273cdd596a12227/endec-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3eea8e53559353c193a49513e668372837f2df25055344f1358c989cbf8ea453",
"md5": "354f64055dbbd798ba3d226775adba95",
"sha256": "d172518e63710b3adcf81fe1d4b9a4209c1ed0aef76e04d10c9556dd00577cce"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "354f64055dbbd798ba3d226775adba95",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 379301,
"upload_time": "2025-01-12T02:59:50",
"upload_time_iso_8601": "2025-01-12T02:59:50.612162Z",
"url": "https://files.pythonhosted.org/packages/3e/ea/8e53559353c193a49513e668372837f2df25055344f1358c989cbf8ea453/endec-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5daab67af0a8b13258b5c6ed9681fcda73683a06a9135e17e120b68e8ddad784",
"md5": "30b18dc4fb052639390a4841cfaf9c54",
"sha256": "d17f1c67a53fb26b2d5a6b3a1d3f0b6ada5ad72996897286b046de8b90fd946d"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "30b18dc4fb052639390a4841cfaf9c54",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 404012,
"upload_time": "2025-01-12T02:58:17",
"upload_time_iso_8601": "2025-01-12T02:58:17.671219Z",
"url": "https://files.pythonhosted.org/packages/5d/aa/b67af0a8b13258b5c6ed9681fcda73683a06a9135e17e120b68e8ddad784/endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "148e44551e9d2aa4da050983fadd13bcc437f260249b3a7210fb83cc30341e18",
"md5": "ee4186e2a50a165c95fa821722b96ec5",
"sha256": "16a073df0e20367b764b2105a7506dc36743aab7485e612c753ec1d6063d51ef"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ee4186e2a50a165c95fa821722b96ec5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 412909,
"upload_time": "2025-01-12T02:58:36",
"upload_time_iso_8601": "2025-01-12T02:58:36.647570Z",
"url": "https://files.pythonhosted.org/packages/14/8e/44551e9d2aa4da050983fadd13bcc437f260249b3a7210fb83cc30341e18/endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e16b13998dee444aab4f895bfa1a16b41c539bf1bc5a2e9df7560ef7bf379e21",
"md5": "5678fcc22a5434f1ff3a73fb38e840ba",
"sha256": "d7eb1f5ac847538b3ed460abff6e39638f065ccd692d38e41a443d0b01ecfe7c"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5678fcc22a5434f1ff3a73fb38e840ba",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 467884,
"upload_time": "2025-01-12T02:58:57",
"upload_time_iso_8601": "2025-01-12T02:58:57.534237Z",
"url": "https://files.pythonhosted.org/packages/e1/6b/13998dee444aab4f895bfa1a16b41c539bf1bc5a2e9df7560ef7bf379e21/endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1faca110f7d94776b52bc0410e4d65f8a5bfb21bc841964e34755efd2ffece08",
"md5": "578b2dd280af1c30aad9ab59d399f384",
"sha256": "2737146452be4df38ec0bd65cf180cb144b951d059380f2907b8537b685d832d"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "578b2dd280af1c30aad9ab59d399f384",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 445431,
"upload_time": "2025-01-12T02:59:11",
"upload_time_iso_8601": "2025-01-12T02:59:11.568710Z",
"url": "https://files.pythonhosted.org/packages/1f/ac/a110f7d94776b52bc0410e4d65f8a5bfb21bc841964e34755efd2ffece08/endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6397912d6cad4025454b2d048a5b5f9a9755adc2849317250f9d75a43991d24",
"md5": "b5d303edcdf6e14ed570c4122aebbe78",
"sha256": "f0eb80fccbe4e2330ff60b6799ef6ea5a1f53e27834a35b88c548f43baf74b82"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b5d303edcdf6e14ed570c4122aebbe78",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 406372,
"upload_time": "2025-01-12T02:59:38",
"upload_time_iso_8601": "2025-01-12T02:59:38.041435Z",
"url": "https://files.pythonhosted.org/packages/d6/39/7912d6cad4025454b2d048a5b5f9a9755adc2849317250f9d75a43991d24/endec-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c563e34fc9285c292c49b2c9536f7510a0b792ae7340ec697be4c7b5f71671f5",
"md5": "da3a1d52887c4fb5295f021b6d26a982",
"sha256": "e333aa2f52b5ce68943cb32d000ba466496fbab2c2cfe0386b9e0fd2a010a8a0"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "da3a1d52887c4fb5295f021b6d26a982",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 419271,
"upload_time": "2025-01-12T02:59:23",
"upload_time_iso_8601": "2025-01-12T02:59:23.820217Z",
"url": "https://files.pythonhosted.org/packages/c5/63/e34fc9285c292c49b2c9536f7510a0b792ae7340ec697be4c7b5f71671f5/endec-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23b9cffda1e7a04ea312749fb64f01efdd04c9b9f539f589fb10beee4b20db68",
"md5": "abdf619cb6103061de1af40d62dcd013",
"sha256": "92c38daafd45187789a9409df6f7027a67c5ca97ac358687b3e99e04bcede1d2"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "abdf619cb6103061de1af40d62dcd013",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 582167,
"upload_time": "2025-01-12T03:00:19",
"upload_time_iso_8601": "2025-01-12T03:00:19.363332Z",
"url": "https://files.pythonhosted.org/packages/23/b9/cffda1e7a04ea312749fb64f01efdd04c9b9f539f589fb10beee4b20db68/endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "216b651aa53e1a1cae34f96313620bc339063b85bb20b58c07e7ee525d504eb9",
"md5": "3d6b933fa72a1b6ffd125a8b0f57ab74",
"sha256": "d04f75d15e0c46d64cd6f7aac4f6f3c584efadcb14317067bf1810a28fea7c9d"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3d6b933fa72a1b6ffd125a8b0f57ab74",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 675197,
"upload_time": "2025-01-12T03:00:32",
"upload_time_iso_8601": "2025-01-12T03:00:32.105772Z",
"url": "https://files.pythonhosted.org/packages/21/6b/651aa53e1a1cae34f96313620bc339063b85bb20b58c07e7ee525d504eb9/endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ce20bb04eae173caf69afb13d4eabc2f339a2ff3e4245b2cb26afa04c479319",
"md5": "9a917537f84a9b6d6b36e7d94ac03483",
"sha256": "673867a4daf64da280401dc0b58a4933835be43d4ba39983b6d35c9276927bd2"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9a917537f84a9b6d6b36e7d94ac03483",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 598677,
"upload_time": "2025-01-12T03:00:43",
"upload_time_iso_8601": "2025-01-12T03:00:43.366460Z",
"url": "https://files.pythonhosted.org/packages/4c/e2/0bb04eae173caf69afb13d4eabc2f339a2ff3e4245b2cb26afa04c479319/endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b9b3c30818ae8d5ee10a51799383c6613a2a62dab51534fd6d5d8ff66f80cf0",
"md5": "b196e55fec6af95ac47d38bcf6c85880",
"sha256": "691423137a8bd2645cc48154e77f609be25dcf61b96bf660cf5b26b2fac3f9e3"
},
"downloads": -1,
"filename": "endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b196e55fec6af95ac47d38bcf6c85880",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 576879,
"upload_time": "2025-01-12T03:00:57",
"upload_time_iso_8601": "2025-01-12T03:00:57.821686Z",
"url": "https://files.pythonhosted.org/packages/2b/9b/3c30818ae8d5ee10a51799383c6613a2a62dab51534fd6d5d8ff66f80cf0/endec-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ff279450b73722cd5086b14f7c5be03b9967b7ff7f3ae02c7a3abb68b4c1fb1",
"md5": "cecdf1b034540f4c3274626077e50424",
"sha256": "0615ab1e8dbb2938773428ac12c8b1ed73c2b59a7c3baa9ad3837361e2a72343"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "cecdf1b034540f4c3274626077e50424",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 381716,
"upload_time": "2025-01-12T03:00:07",
"upload_time_iso_8601": "2025-01-12T03:00:07.792020Z",
"url": "https://files.pythonhosted.org/packages/0f/f2/79450b73722cd5086b14f7c5be03b9967b7ff7f3ae02c7a3abb68b4c1fb1/endec-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5d9c60dcfdd212c6ab9587cd36e211f8fd6c0549461fc11ad6a5831b15ea1c2",
"md5": "6796da56ebbeb9cf4467e5773bd7448c",
"sha256": "ecd1c23d0a9dbbd234af01762667eb5a40c2c9ae208b7cda9fcbffef7365cf23"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6796da56ebbeb9cf4467e5773bd7448c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 379280,
"upload_time": "2025-01-12T02:59:53",
"upload_time_iso_8601": "2025-01-12T02:59:53.994657Z",
"url": "https://files.pythonhosted.org/packages/c5/d9/c60dcfdd212c6ab9587cd36e211f8fd6c0549461fc11ad6a5831b15ea1c2/endec-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "250fb3aa69afaec2d835bd80a18504ca7ef6e16e7bc7f9417338c0d64df43247",
"md5": "49dbf3e6991b72d5485fd0bac798d00f",
"sha256": "a51995f7712f20451155be3c0db1a3fba077dfd63bc3c5d8728ec99e297f30fa"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "49dbf3e6991b72d5485fd0bac798d00f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 403837,
"upload_time": "2025-01-12T02:58:18",
"upload_time_iso_8601": "2025-01-12T02:58:18.905948Z",
"url": "https://files.pythonhosted.org/packages/25/0f/b3aa69afaec2d835bd80a18504ca7ef6e16e7bc7f9417338c0d64df43247/endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "364e6ff7bdda9fe35315136ec8d7154452327de9b5c8b051d95f22cea729df71",
"md5": "c0fd175f20ba68c1b34f0f1c4685fab9",
"sha256": "b01b48b3504b11852ecf7915bc3d02e4288b2575badd9903c5747f68c1a58a78"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c0fd175f20ba68c1b34f0f1c4685fab9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 412769,
"upload_time": "2025-01-12T02:58:37",
"upload_time_iso_8601": "2025-01-12T02:58:37.874036Z",
"url": "https://files.pythonhosted.org/packages/36/4e/6ff7bdda9fe35315136ec8d7154452327de9b5c8b051d95f22cea729df71/endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96b27b1f03e12960f25ac90f939b01eb39c1c18d2e9414d2bb2a555988afcd2d",
"md5": "a5aae7c60b759f022d5f633643d3a7ce",
"sha256": "39e75bdc30cce744e5e188ff75ab653d038260dffbeb07ca2cf858dc4570552c"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a5aae7c60b759f022d5f633643d3a7ce",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 467387,
"upload_time": "2025-01-12T02:58:58",
"upload_time_iso_8601": "2025-01-12T02:58:58.858793Z",
"url": "https://files.pythonhosted.org/packages/96/b2/7b1f03e12960f25ac90f939b01eb39c1c18d2e9414d2bb2a555988afcd2d/endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ea4e706dc7739460a7b2d7175b00248c99f6c8c58fb953b976289060b7d9800",
"md5": "ae349fde8ac911e9240b7d6ca557b5f2",
"sha256": "564dacfd818c6d4b10f5e49c3c85505bf34aaafce26f99265bd8539a12a1e6c5"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ae349fde8ac911e9240b7d6ca557b5f2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 445273,
"upload_time": "2025-01-12T02:59:12",
"upload_time_iso_8601": "2025-01-12T02:59:12.787159Z",
"url": "https://files.pythonhosted.org/packages/1e/a4/e706dc7739460a7b2d7175b00248c99f6c8c58fb953b976289060b7d9800/endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fda930dcedf1104712052e681bed299a9292de4c10dc5a55f5a095dbb7d5941b",
"md5": "0b3c1651fe3e5d75e8b2866a19acafe8",
"sha256": "3e74aced040959cf196d97624c66cd82873525cb9834ad7737be80c58f5fd06e"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0b3c1651fe3e5d75e8b2866a19acafe8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 406220,
"upload_time": "2025-01-12T02:59:40",
"upload_time_iso_8601": "2025-01-12T02:59:40.529985Z",
"url": "https://files.pythonhosted.org/packages/fd/a9/30dcedf1104712052e681bed299a9292de4c10dc5a55f5a095dbb7d5941b/endec-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1235351f9d3155dadf94a76d04345c074d5d5076d2f44f2ab06625af5006749",
"md5": "cd6ed1328e1923ca243cfda6325ae9ff",
"sha256": "272aee1a3695ae53242d16bd6adfca327476fc315c94d7141cf66987ff2e7ae6"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "cd6ed1328e1923ca243cfda6325ae9ff",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 418913,
"upload_time": "2025-01-12T02:59:25",
"upload_time_iso_8601": "2025-01-12T02:59:25.077314Z",
"url": "https://files.pythonhosted.org/packages/d1/23/5351f9d3155dadf94a76d04345c074d5d5076d2f44f2ab06625af5006749/endec-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa51179cc38d3bf6bde461c58da4248c92308dcd33c535a1861eede121be05c1",
"md5": "7c00d1180ad8c298eac4812d51e7f4df",
"sha256": "418fff4d1bd775aa934d6ab36c49f52132d9a1a487cc57734d1936ca285c61ed"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7c00d1180ad8c298eac4812d51e7f4df",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 581993,
"upload_time": "2025-01-12T03:00:20",
"upload_time_iso_8601": "2025-01-12T03:00:20.640755Z",
"url": "https://files.pythonhosted.org/packages/aa/51/179cc38d3bf6bde461c58da4248c92308dcd33c535a1861eede121be05c1/endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b199c03a1c4601a29301bf66bb5ff43ffab04c8eebace98964b6132ab340fd63",
"md5": "9afa3d3f1fae7ad60b2b3b15a5848145",
"sha256": "266e872aa092f380c38c3fd28ec7e460849cbb879d9f085f6b378a45680b9c26"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "9afa3d3f1fae7ad60b2b3b15a5848145",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 675030,
"upload_time": "2025-01-12T03:00:33",
"upload_time_iso_8601": "2025-01-12T03:00:33.655780Z",
"url": "https://files.pythonhosted.org/packages/b1/99/c03a1c4601a29301bf66bb5ff43ffab04c8eebace98964b6132ab340fd63/endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b65bb63bffd77d3d09669d0c12f106d235977aaf6031252400b27462a8038b6",
"md5": "89dcac9b2211cfe59509fffe689264e9",
"sha256": "3a797deb14c24de48c4320684ccd3cac786be7f2eabca0d06bcb2c44c99efb96"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "89dcac9b2211cfe59509fffe689264e9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 598383,
"upload_time": "2025-01-12T03:00:45",
"upload_time_iso_8601": "2025-01-12T03:00:45.645614Z",
"url": "https://files.pythonhosted.org/packages/9b/65/bb63bffd77d3d09669d0c12f106d235977aaf6031252400b27462a8038b6/endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68db4bd93f7e324f6803c63577a574859fe53d39e9a184b977516760acebb38e",
"md5": "98442cff4ba1c0c9ff73a6950da484c6",
"sha256": "ac199dc833ccbf2acabdf52c700cb6f008528daa0e2d4335637c59985e9b4ee2"
},
"downloads": -1,
"filename": "endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "98442cff4ba1c0c9ff73a6950da484c6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 576662,
"upload_time": "2025-01-12T03:01:01",
"upload_time_iso_8601": "2025-01-12T03:01:01.354781Z",
"url": "https://files.pythonhosted.org/packages/68/db/4bd93f7e324f6803c63577a574859fe53d39e9a184b977516760acebb38e/endec-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e74a635c8480c25aef3924e6275573283db2341f5cf6aac8d5da5b57b54d27c6",
"md5": "47aa8ea13478a37348f2eb6e681264d5",
"sha256": "be01c96ddd37da07da84adb8a18de701e1b517c37f2c4338e3f56d9ba8f7a6b4"
},
"downloads": -1,
"filename": "endec-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "47aa8ea13478a37348f2eb6e681264d5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 11243,
"upload_time": "2025-01-12T03:01:02",
"upload_time_iso_8601": "2025-01-12T03:01:02.625823Z",
"url": "https://files.pythonhosted.org/packages/e7/4a/635c8480c25aef3924e6275573283db2341f5cf6aac8d5da5b57b54d27c6/endec-0.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-12 03:01:02",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "fluxth",
"github_project": "endec",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "endec"
}