endec


Nameendec JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryWeb-compatible encoding and decoding library
upload_time2024-04-18 05:49:03
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
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/ba/0a/4a3b4976f78174df6521a6969411859592533843ac78f5c3b2765166fa58/endec-0.1.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.1.1",
    "project_urls": {
        "Repository": "https://github.com/fluxth/endec"
    },
    "split_keywords": [
        "encoding_rs",
        " web",
        " codec"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e54ab1547e303b914769e7929e5177b5eb8bbd80c7b2453d23dcb9142158d0d",
                "md5": "4409168d2cdee97d85e28a94464d8fe5",
                "sha256": "659043b29498c14f72bc3626ef6d7f08a63e1ccde31540db81de02862c9f25b7"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4409168d2cdee97d85e28a94464d8fe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 390188,
            "upload_time": "2024-04-18T05:48:58",
            "upload_time_iso_8601": "2024-04-18T05:48:58.292207Z",
            "url": "https://files.pythonhosted.org/packages/5e/54/ab1547e303b914769e7929e5177b5eb8bbd80c7b2453d23dcb9142158d0d/endec-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94dd61569e88622ca2125a1c4829c34d0fbac4cf55c0b069d2298530f9646b05",
                "md5": "ae59ecdef63b1ee3d9b2f50eba6da415",
                "sha256": "efee0bd61f7a076f80a0d03c8d119e1c162b67e8eb35dc3ddd716001c39ba1a1"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ae59ecdef63b1ee3d9b2f50eba6da415",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 380750,
            "upload_time": "2024-04-18T05:48:52",
            "upload_time_iso_8601": "2024-04-18T05:48:52.031479Z",
            "url": "https://files.pythonhosted.org/packages/94/dd/61569e88622ca2125a1c4829c34d0fbac4cf55c0b069d2298530f9646b05/endec-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "831517d21204a89e19e36a9660189a6f074982c8ea42dce219e80f113c75bfef",
                "md5": "33d6f61215c358b268a38eb017456713",
                "sha256": "36ef0f8f0a86b7d4d1a23ed70bb7db8705efb581edd0987c90b30ef128468fce"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "33d6f61215c358b268a38eb017456713",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1152630,
            "upload_time": "2024-04-18T05:47:03",
            "upload_time_iso_8601": "2024-04-18T05:47:03.381283Z",
            "url": "https://files.pythonhosted.org/packages/83/15/17d21204a89e19e36a9660189a6f074982c8ea42dce219e80f113c75bfef/endec-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "911b8b496ba39dd919a4f34eebc611d23e43b2a54ec612ba5563b71eacbea006",
                "md5": "db00d46b67137237333f0f15625f8556",
                "sha256": "ae41033cc01a7c655ad3e89322a3054b27cf001c44d2db28b740828dcf8efca2"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "db00d46b67137237333f0f15625f8556",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1167086,
            "upload_time": "2024-04-18T05:47:21",
            "upload_time_iso_8601": "2024-04-18T05:47:21.669206Z",
            "url": "https://files.pythonhosted.org/packages/91/1b/8b496ba39dd919a4f34eebc611d23e43b2a54ec612ba5563b71eacbea006/endec-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "535b66b6983e4ed69f261756a4ed0895b2f0a8b4ee5666c531ae558b3c1ab359",
                "md5": "aca2c27595ab3311ad4f4c62f95fdb63",
                "sha256": "83f421bc90d7d17bbe2b0aacbe21263115d037c0a8aea417147d7360195dde00"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "aca2c27595ab3311ad4f4c62f95fdb63",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1323298,
            "upload_time": "2024-04-18T05:47:40",
            "upload_time_iso_8601": "2024-04-18T05:47:40.162947Z",
            "url": "https://files.pythonhosted.org/packages/53/5b/66b6983e4ed69f261756a4ed0895b2f0a8b4ee5666c531ae558b3c1ab359/endec-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af0d1a595872eb59f90707e9d68f6d8daba6440fc1fbf0b22fde32a8f420256b",
                "md5": "a50ff5ae590ae7732be8188e8b59c0e6",
                "sha256": "1e4cf9216a2856286c09bdf1f92fcbbc5147825ee4e6a457e56bafe2803c162f"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a50ff5ae590ae7732be8188e8b59c0e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1290658,
            "upload_time": "2024-04-18T05:47:59",
            "upload_time_iso_8601": "2024-04-18T05:47:59.657882Z",
            "url": "https://files.pythonhosted.org/packages/af/0d/1a595872eb59f90707e9d68f6d8daba6440fc1fbf0b22fde32a8f420256b/endec-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0368d2a06caf2f31bd2bcc75790787003f4416ca82ac88b6429e4331e210be1b",
                "md5": "0f26c8d08d6a363a34cddc501c56140b",
                "sha256": "86aaf9aa2bb4967508a4545d6f28cc5f54babce042cdf49f5ee9d483583aa20d"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f26c8d08d6a363a34cddc501c56140b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1162290,
            "upload_time": "2024-04-18T05:48:34",
            "upload_time_iso_8601": "2024-04-18T05:48:34.149565Z",
            "url": "https://files.pythonhosted.org/packages/03/68/d2a06caf2f31bd2bcc75790787003f4416ca82ac88b6429e4331e210be1b/endec-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97e03e177f9d29715bff483ec4dd71213884fd6735aaae83ed94d8ed1c92a159",
                "md5": "564f023a4dc232f2d8c20b2b654bf84d",
                "sha256": "fc22541aee39f0c144f8fdeb73c244abf74b2627e486358ecb05cdbe05ea10c3"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "564f023a4dc232f2d8c20b2b654bf84d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1180548,
            "upload_time": "2024-04-18T05:48:16",
            "upload_time_iso_8601": "2024-04-18T05:48:16.274957Z",
            "url": "https://files.pythonhosted.org/packages/97/e0/3e177f9d29715bff483ec4dd71213884fd6735aaae83ed94d8ed1c92a159/endec-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f21e47f0d35b399acde21112d87de1d99cf26a90a7373541b5caa2eb9f524f80",
                "md5": "3d820898b1c9838c21edf872d4e6cc3b",
                "sha256": "7feaa8a7a58b133524cba1f2c36f4ee3e7ef023b2aa3fd6a0616fa2332d810f4"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3d820898b1c9838c21edf872d4e6cc3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 271576,
            "upload_time": "2024-04-18T05:49:15",
            "upload_time_iso_8601": "2024-04-18T05:49:15.466258Z",
            "url": "https://files.pythonhosted.org/packages/f2/1e/47f0d35b399acde21112d87de1d99cf26a90a7373541b5caa2eb9f524f80/endec-0.1.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78872a71e2b0a91cf6b3c6fcf02be078f672876a35743eae66c38ec6d55e46fb",
                "md5": "98b9a274e582803f1e78f5f2f180e0e0",
                "sha256": "db086494d56fb10537cd10c80b09798e70b3a74d10cdd0fb9fa6f75048939de0"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98b9a274e582803f1e78f5f2f180e0e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 277245,
            "upload_time": "2024-04-18T05:49:05",
            "upload_time_iso_8601": "2024-04-18T05:49:05.759207Z",
            "url": "https://files.pythonhosted.org/packages/78/87/2a71e2b0a91cf6b3c6fcf02be078f672876a35743eae66c38ec6d55e46fb/endec-0.1.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84d99d3f591620cd45e5e480373558df626133e9294a8558fb29972dd3b6056e",
                "md5": "4e26f239c82ddbe796954af0b4e35de3",
                "sha256": "b9952bc2a9d383440da53fbf47028a9ef886ee29bdd41e4caebdd9ffdc786129"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e26f239c82ddbe796954af0b4e35de3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 390008,
            "upload_time": "2024-04-18T05:48:59",
            "upload_time_iso_8601": "2024-04-18T05:48:59.980708Z",
            "url": "https://files.pythonhosted.org/packages/84/d9/9d3f591620cd45e5e480373558df626133e9294a8558fb29972dd3b6056e/endec-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b496955788044e2aa0f6c00e6c34a33fb444729ccb6a3ffca21064ab1a9777a3",
                "md5": "7d3b7561072553c73f9b2a14db4cfd2b",
                "sha256": "94001cdafa9ea49abd14ab4c1b4d5dfb7174c2355ca0c847dfc5abed3045493b"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7d3b7561072553c73f9b2a14db4cfd2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 380645,
            "upload_time": "2024-04-18T05:48:53",
            "upload_time_iso_8601": "2024-04-18T05:48:53.871699Z",
            "url": "https://files.pythonhosted.org/packages/b4/96/955788044e2aa0f6c00e6c34a33fb444729ccb6a3ffca21064ab1a9777a3/endec-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3530fbb94f7650f1dfeba59b0c9fe810345b3ccc8314cdb116317b2d8650ccc0",
                "md5": "21ee38b51ae13f914fe6e505f8ecdaf3",
                "sha256": "35377559656d3b19c9d5f27df70e5b7ff724f6fae14644715dd3adae56dcacf1"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21ee38b51ae13f914fe6e505f8ecdaf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1152401,
            "upload_time": "2024-04-18T05:47:05",
            "upload_time_iso_8601": "2024-04-18T05:47:05.701166Z",
            "url": "https://files.pythonhosted.org/packages/35/30/fbb94f7650f1dfeba59b0c9fe810345b3ccc8314cdb116317b2d8650ccc0/endec-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f08d1d701733729962a18686803e8e28285cf78f72db4fc05db5bba51771bb80",
                "md5": "137d5856a951600620048feae29063f1",
                "sha256": "1fa12126d217dcbf9f40720ed94f6229b906ffaf168b428e44b22bf9e4a15fea"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "137d5856a951600620048feae29063f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1166884,
            "upload_time": "2024-04-18T05:47:24",
            "upload_time_iso_8601": "2024-04-18T05:47:24.214845Z",
            "url": "https://files.pythonhosted.org/packages/f0/8d/1d701733729962a18686803e8e28285cf78f72db4fc05db5bba51771bb80/endec-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6b309c18edd138a3a788840aa02fc1d663236a1b528f3b0274687a8c6584b10",
                "md5": "fdf583a2f6d0e1af5a5d6d574b0b1fd1",
                "sha256": "cfc1f6b99c6266f1e8129775cd51d5765827f1bab067b35b9a2a1e79cee1c436"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fdf583a2f6d0e1af5a5d6d574b0b1fd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1305671,
            "upload_time": "2024-04-18T05:47:42",
            "upload_time_iso_8601": "2024-04-18T05:47:42.323274Z",
            "url": "https://files.pythonhosted.org/packages/a6/b3/09c18edd138a3a788840aa02fc1d663236a1b528f3b0274687a8c6584b10/endec-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9eb8b346a2672cc321ec7aa3d7f8fc64b0f6d74a08554b748e2b02fcc403b89f",
                "md5": "e5207bd0d0edd74b3c1c9dd5398ebe0d",
                "sha256": "322fdbb84cbd219c05266ad642ca6113e03a36d6dbf5926b065b17d3511cbc16"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e5207bd0d0edd74b3c1c9dd5398ebe0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1289242,
            "upload_time": "2024-04-18T05:48:02",
            "upload_time_iso_8601": "2024-04-18T05:48:02.179551Z",
            "url": "https://files.pythonhosted.org/packages/9e/b8/b346a2672cc321ec7aa3d7f8fc64b0f6d74a08554b748e2b02fcc403b89f/endec-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7e1c5f2c18beb1af499c1b42adba74b76a284f1c6a7df2f8d197731c744ebfe",
                "md5": "851b3a5f5fec30276788c904a88aeb11",
                "sha256": "b273b466dd746cbf18cc7bc722f7631b9859d731694d246c64c2043034d7bc88"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "851b3a5f5fec30276788c904a88aeb11",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1162246,
            "upload_time": "2024-04-18T05:48:36",
            "upload_time_iso_8601": "2024-04-18T05:48:36.083918Z",
            "url": "https://files.pythonhosted.org/packages/e7/e1/c5f2c18beb1af499c1b42adba74b76a284f1c6a7df2f8d197731c744ebfe/endec-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f10aa40fe7ea642f928bb74b577529f64f005dce0321c28ca61890101c5fbab",
                "md5": "123d71667cd5a68aaca5949be03f845a",
                "sha256": "78782df2b060624b78a25a9fe5ffbd7887b1ce8a78b2c6529824e6fc74c002eb"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "123d71667cd5a68aaca5949be03f845a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1180466,
            "upload_time": "2024-04-18T05:48:18",
            "upload_time_iso_8601": "2024-04-18T05:48:18.459766Z",
            "url": "https://files.pythonhosted.org/packages/7f/10/aa40fe7ea642f928bb74b577529f64f005dce0321c28ca61890101c5fbab/endec-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab4aeec64116c8fa807239cb4c89d173df3c03ae6214a6716a570c8e874b5390",
                "md5": "99110d75778c72530e081404794cc68a",
                "sha256": "067cd1ec53cb6129b986cc7ce26a466cffddcf3d4e6c409aca38157672787819"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "99110d75778c72530e081404794cc68a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 271451,
            "upload_time": "2024-04-18T05:49:17",
            "upload_time_iso_8601": "2024-04-18T05:49:17.351975Z",
            "url": "https://files.pythonhosted.org/packages/ab/4a/eec64116c8fa807239cb4c89d173df3c03ae6214a6716a570c8e874b5390/endec-0.1.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44c438a4dccad3f24cecc76f6eed1af23d9f4f749ce704d62d51550f26d6baba",
                "md5": "7a21cfff8aabb5d30ef2a0b0349ac0ef",
                "sha256": "a955972fcf2d3af36b3a282bcfffb416c3ca83725c2eeeda697de99b00f0a874"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7a21cfff8aabb5d30ef2a0b0349ac0ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 277285,
            "upload_time": "2024-04-18T05:49:08",
            "upload_time_iso_8601": "2024-04-18T05:49:08.187250Z",
            "url": "https://files.pythonhosted.org/packages/44/c4/38a4dccad3f24cecc76f6eed1af23d9f4f749ce704d62d51550f26d6baba/endec-0.1.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "972e28f9ceb6db218dd11563c327baa218926fbd72e6ebeb6117d4e7e2ec1ac1",
                "md5": "603f99d32fa945ecaa407a4f136b0aa4",
                "sha256": "490805399a825b2eaf58b5bde388d4eb944fa354601049e4b1c71439559fb64a"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "603f99d32fa945ecaa407a4f136b0aa4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 389651,
            "upload_time": "2024-04-18T05:49:02",
            "upload_time_iso_8601": "2024-04-18T05:49:02.033010Z",
            "url": "https://files.pythonhosted.org/packages/97/2e/28f9ceb6db218dd11563c327baa218926fbd72e6ebeb6117d4e7e2ec1ac1/endec-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2874c3044b2e1296bcc826387fb5aecb26ff6e215f4dd1d9211dc910b3d3f82a",
                "md5": "bc83eda90105c2715796cdc69528df53",
                "sha256": "1321346f2053cc8147c6662c35a3b20199908353ec755128a40a2a131a44d827"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bc83eda90105c2715796cdc69528df53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 380250,
            "upload_time": "2024-04-18T05:48:55",
            "upload_time_iso_8601": "2024-04-18T05:48:55.775165Z",
            "url": "https://files.pythonhosted.org/packages/28/74/c3044b2e1296bcc826387fb5aecb26ff6e215f4dd1d9211dc910b3d3f82a/endec-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1eee8ea59384aa581676b015d70744b815118a199a50fc40b47884a72b0d2d45",
                "md5": "83963cd2782f78448984b3f7277677b8",
                "sha256": "d925b721620bc18ed9e55adf4353fb84342fdcaf4bfffe3b9c84215383d8875f"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "83963cd2782f78448984b3f7277677b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1152374,
            "upload_time": "2024-04-18T05:47:07",
            "upload_time_iso_8601": "2024-04-18T05:47:07.702625Z",
            "url": "https://files.pythonhosted.org/packages/1e/ee/8ea59384aa581676b015d70744b815118a199a50fc40b47884a72b0d2d45/endec-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96832c03620ec5bef47cbe5814f897a50e03f7a0c3e9418cce66d3df80506221",
                "md5": "a2d536f3a9a71f2faf556db097b8eafa",
                "sha256": "394d0e31337dbfa47c90aca61f6ba809b1f3245c80aecbc0a1219cde1fed22e2"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a2d536f3a9a71f2faf556db097b8eafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1166986,
            "upload_time": "2024-04-18T05:47:26",
            "upload_time_iso_8601": "2024-04-18T05:47:26.792693Z",
            "url": "https://files.pythonhosted.org/packages/96/83/2c03620ec5bef47cbe5814f897a50e03f7a0c3e9418cce66d3df80506221/endec-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8346fabdd4478df5e3dad5ed6d9e523a43ab564aa724bbfbf4965ecfa293040",
                "md5": "301a97ac9d1f55aa66f558c1714e42a3",
                "sha256": "7d6ed32758472d02333cbd91fdd73a76d2c935af2d336bc8057f302bcbc8336c"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "301a97ac9d1f55aa66f558c1714e42a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1304628,
            "upload_time": "2024-04-18T05:47:45",
            "upload_time_iso_8601": "2024-04-18T05:47:45.163490Z",
            "url": "https://files.pythonhosted.org/packages/a8/34/6fabdd4478df5e3dad5ed6d9e523a43ab564aa724bbfbf4965ecfa293040/endec-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55d48bf1f4ae07f2c5e8d7e72b82bc13d8a99d189af1377064b64803a36e5f63",
                "md5": "8090ce1599a370d116e054d8e872aad8",
                "sha256": "63549b0981f8ea070986359a58c4d234a5fe7ce304fbe808f409260934fb5f21"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8090ce1599a370d116e054d8e872aad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1278533,
            "upload_time": "2024-04-18T05:48:04",
            "upload_time_iso_8601": "2024-04-18T05:48:04.705896Z",
            "url": "https://files.pythonhosted.org/packages/55/d4/8bf1f4ae07f2c5e8d7e72b82bc13d8a99d189af1377064b64803a36e5f63/endec-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1070bde2cb9c96d6ef551c175a9242d3f4deee9d27afdffd2b5705dd88e84eb8",
                "md5": "17489abd72db48eee0ae4c71bc9edd45",
                "sha256": "10994e39fd8955000e922abcebc7ad01aefff56de2e132dd0dbf6c262888392f"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17489abd72db48eee0ae4c71bc9edd45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1161607,
            "upload_time": "2024-04-18T05:48:38",
            "upload_time_iso_8601": "2024-04-18T05:48:38.066128Z",
            "url": "https://files.pythonhosted.org/packages/10/70/bde2cb9c96d6ef551c175a9242d3f4deee9d27afdffd2b5705dd88e84eb8/endec-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0213ad944be221f60b6a11a86690f4f096060123acc14f37625c169a884667ae",
                "md5": "75a228e1b4140577bc707a26ba4cb71c",
                "sha256": "3f24161dcba96ba04e2c9c6c2f90cc3542aea0d0b9217f5ebf541774d273b3dc"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "75a228e1b4140577bc707a26ba4cb71c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1180483,
            "upload_time": "2024-04-18T05:48:21",
            "upload_time_iso_8601": "2024-04-18T05:48:21.124914Z",
            "url": "https://files.pythonhosted.org/packages/02/13/ad944be221f60b6a11a86690f4f096060123acc14f37625c169a884667ae/endec-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "519462473438d565394616bfd3d1240a5f1b5d0bf73f91146ca564d96a57d296",
                "md5": "b1ecbc0e0b88d74045d0f36ca7e9258e",
                "sha256": "924f75439207d1b275533f7a22f0f9288efe8fe0fb89e13d571274804a14b3d6"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b1ecbc0e0b88d74045d0f36ca7e9258e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 273583,
            "upload_time": "2024-04-18T05:49:18",
            "upload_time_iso_8601": "2024-04-18T05:49:18.999654Z",
            "url": "https://files.pythonhosted.org/packages/51/94/62473438d565394616bfd3d1240a5f1b5d0bf73f91146ca564d96a57d296/endec-0.1.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3aae9128e9d0d2c4c93fcdb592a5a800d3e2ae6d955c23c9dc15c28d3da4168b",
                "md5": "eafbe1210b1875dc89984d68cddc60a6",
                "sha256": "dfa3a2bd642072c9b11345dd98832b2dd32fa6d30abd6380a7e31258efe6fe92"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eafbe1210b1875dc89984d68cddc60a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 277701,
            "upload_time": "2024-04-18T05:49:10",
            "upload_time_iso_8601": "2024-04-18T05:49:10.003801Z",
            "url": "https://files.pythonhosted.org/packages/3a/ae/9128e9d0d2c4c93fcdb592a5a800d3e2ae6d955c23c9dc15c28d3da4168b/endec-0.1.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a167f8a5568e95fed9628466a78399c2d509dd258844234167d419749ef29d38",
                "md5": "fe4f0afa8eac6bdff507770c13e1e8e4",
                "sha256": "e3e457e08535084c939fe3f7959aafb9851f30e17f3e1eb1f29078b65c81f3c5"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe4f0afa8eac6bdff507770c13e1e8e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1152430,
            "upload_time": "2024-04-18T05:47:09",
            "upload_time_iso_8601": "2024-04-18T05:47:09.545967Z",
            "url": "https://files.pythonhosted.org/packages/a1/67/f8a5568e95fed9628466a78399c2d509dd258844234167d419749ef29d38/endec-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bf7e9017d932459aad2156cc87ade381871be41267285228f4ac9e305cd3282",
                "md5": "be648beb0e234f5ded11c12272dad2b9",
                "sha256": "6c5f8f260ce15af2bd48b99385a00099f7623f40a624be013d335471120d01b1"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "be648beb0e234f5ded11c12272dad2b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1166621,
            "upload_time": "2024-04-18T05:47:29",
            "upload_time_iso_8601": "2024-04-18T05:47:29.198267Z",
            "url": "https://files.pythonhosted.org/packages/7b/f7/e9017d932459aad2156cc87ade381871be41267285228f4ac9e305cd3282/endec-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eec77b42ddf6c745b4550d69983767e366e0ebdbf699d773499cc8fd66e72c70",
                "md5": "62200760e15a090820c4c326cfa03fee",
                "sha256": "3c1ccb347908a58dfcd6f0fe25c3f26c4c8810c092e9e897dd414f872a50de62"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "62200760e15a090820c4c326cfa03fee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1306216,
            "upload_time": "2024-04-18T05:47:47",
            "upload_time_iso_8601": "2024-04-18T05:47:47.251462Z",
            "url": "https://files.pythonhosted.org/packages/ee/c7/7b42ddf6c745b4550d69983767e366e0ebdbf699d773499cc8fd66e72c70/endec-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1febe500876e82f846907a68f55f339c29c2e2fdb561615abe591af0cc0f3813",
                "md5": "87b46cf3ca38d9160804bb27002e3f0d",
                "sha256": "c15ad555e2a72ccc5e6c507dfa60ee0f53a3dd24daaeb0c99eb126eeb68b30d7"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "87b46cf3ca38d9160804bb27002e3f0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1290381,
            "upload_time": "2024-04-18T05:48:06",
            "upload_time_iso_8601": "2024-04-18T05:48:06.669065Z",
            "url": "https://files.pythonhosted.org/packages/1f/eb/e500876e82f846907a68f55f339c29c2e2fdb561615abe591af0cc0f3813/endec-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91e79c6815d261c5ec04556af049684443534cb3815d2cae86c5e71b6d278e11",
                "md5": "d45d6e349069a0e9c89e5e0a3a2641ee",
                "sha256": "45e6cfca0d383849318f798a97b6c70e53d185460383b06694370e504af24c13"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d45d6e349069a0e9c89e5e0a3a2641ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1161803,
            "upload_time": "2024-04-18T05:48:40",
            "upload_time_iso_8601": "2024-04-18T05:48:40.327472Z",
            "url": "https://files.pythonhosted.org/packages/91/e7/9c6815d261c5ec04556af049684443534cb3815d2cae86c5e71b6d278e11/endec-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8739120322d76fd4e756c4ed87f4f584a79934b3e01812d965578d010cbb3c5d",
                "md5": "dcb46723950047b0d015120f5a27ac7e",
                "sha256": "7c8a25033fc0a71e57ded6b2244e3eed76c656a3465ab52688d989f6c8350999"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "dcb46723950047b0d015120f5a27ac7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1180412,
            "upload_time": "2024-04-18T05:48:23",
            "upload_time_iso_8601": "2024-04-18T05:48:23.131465Z",
            "url": "https://files.pythonhosted.org/packages/87/39/120322d76fd4e756c4ed87f4f584a79934b3e01812d965578d010cbb3c5d/endec-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83e89ca8f1228352cfa388eb5b757c5ff28f85d4d42d322bdf6a82b21aa008d4",
                "md5": "02afa4d1e575d6ed22b04a05cdf246e3",
                "sha256": "87882a582bb3c93db340171177369b2042944dcecc448a4ae233c1dfcd106f53"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "02afa4d1e575d6ed22b04a05cdf246e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 271640,
            "upload_time": "2024-04-18T05:49:20",
            "upload_time_iso_8601": "2024-04-18T05:49:20.875637Z",
            "url": "https://files.pythonhosted.org/packages/83/e8/9ca8f1228352cfa388eb5b757c5ff28f85d4d42d322bdf6a82b21aa008d4/endec-0.1.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa76a77e633bc026cd77c6194e747e23ed66590ec77998f8eb4553274cdd0051",
                "md5": "eeb41061a3e9aa7f5af0c0ecc89b9ea8",
                "sha256": "cbc0ebae53e577c1945bee633904ab05c34a4347adb87d1da20e6a9423f2108e"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eeb41061a3e9aa7f5af0c0ecc89b9ea8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 277055,
            "upload_time": "2024-04-18T05:49:11",
            "upload_time_iso_8601": "2024-04-18T05:49:11.736469Z",
            "url": "https://files.pythonhosted.org/packages/fa/76/a77e633bc026cd77c6194e747e23ed66590ec77998f8eb4553274cdd0051/endec-0.1.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "866b516167a3d68ef709e450e943750ce4e4c4944cb058e412cc9bc60154ac42",
                "md5": "129a189776d202149bb4e221069b10df",
                "sha256": "a56af7d85e400292735227a2c9d7abaffb3acd6a6c00308c2ebfc9e0284e4245"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "129a189776d202149bb4e221069b10df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1152876,
            "upload_time": "2024-04-18T05:47:11",
            "upload_time_iso_8601": "2024-04-18T05:47:11.971417Z",
            "url": "https://files.pythonhosted.org/packages/86/6b/516167a3d68ef709e450e943750ce4e4c4944cb058e412cc9bc60154ac42/endec-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccb6d7109ebfd82777982f5abf8e263043c29939c69247668503ed4fbdd8b6a0",
                "md5": "b54193cf8168f6ee7a4a3929d4f30131",
                "sha256": "b39180d0037c4fe929f47c76a97e4279a7c3846ca04e39a01c9b0af30f736191"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b54193cf8168f6ee7a4a3929d4f30131",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1166958,
            "upload_time": "2024-04-18T05:47:31",
            "upload_time_iso_8601": "2024-04-18T05:47:31.320607Z",
            "url": "https://files.pythonhosted.org/packages/cc/b6/d7109ebfd82777982f5abf8e263043c29939c69247668503ed4fbdd8b6a0/endec-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14f99a60abdb30d6060fd9810de86db365ee3b036e73a01cf3f7261a5f9e56cd",
                "md5": "606347f7a040d728c4f7adfe8860efed",
                "sha256": "1e93c7d9e2a645bb7c4dec10f7a0d07898d0ad40a7e0bc4bf4ee361baa1ef902"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "606347f7a040d728c4f7adfe8860efed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1323690,
            "upload_time": "2024-04-18T05:47:50",
            "upload_time_iso_8601": "2024-04-18T05:47:50.096273Z",
            "url": "https://files.pythonhosted.org/packages/14/f9/9a60abdb30d6060fd9810de86db365ee3b036e73a01cf3f7261a5f9e56cd/endec-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d685e360554096c2200dc837bd8ec895b918febaa10da898b45c2dc51dc39dd",
                "md5": "ac3445f10d4a9b905e3e69d3c3fbf527",
                "sha256": "c007bff04fd21a4a6f6768a608c7ff581fd7365d363bf5dd8b1f531288a9a0ff"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ac3445f10d4a9b905e3e69d3c3fbf527",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1290782,
            "upload_time": "2024-04-18T05:48:08",
            "upload_time_iso_8601": "2024-04-18T05:48:08.535460Z",
            "url": "https://files.pythonhosted.org/packages/7d/68/5e360554096c2200dc837bd8ec895b918febaa10da898b45c2dc51dc39dd/endec-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9096fa6b085391d5288024a0068e3bfea3ee690a27d3df0800acf67fe4ce0374",
                "md5": "56b3b06c269a5da18d85b6b35f005efa",
                "sha256": "13c660a16437405b6fca519b387630d5f733c7f602421149085293c8e6509509"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56b3b06c269a5da18d85b6b35f005efa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1162324,
            "upload_time": "2024-04-18T05:48:42",
            "upload_time_iso_8601": "2024-04-18T05:48:42.345960Z",
            "url": "https://files.pythonhosted.org/packages/90/96/fa6b085391d5288024a0068e3bfea3ee690a27d3df0800acf67fe4ce0374/endec-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a696017527ec91686f5784f33ca9ba9dcdc1baddc5a43c86b88e7a8f6bcbaa9b",
                "md5": "469187b0105bfa423af6adedceef8d92",
                "sha256": "ce958efde328bfb8831ce9c1fc805421135c35cd421f672ffa4071672cc147ea"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "469187b0105bfa423af6adedceef8d92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1180534,
            "upload_time": "2024-04-18T05:48:25",
            "upload_time_iso_8601": "2024-04-18T05:48:25.173548Z",
            "url": "https://files.pythonhosted.org/packages/a6/96/017527ec91686f5784f33ca9ba9dcdc1baddc5a43c86b88e7a8f6bcbaa9b/endec-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "698de0b5d6d185d4ca3caea2fc07289ece4982b34e341e141a2b881f20ee339c",
                "md5": "77e1a2517cd70d8ab9cc70d0e29caf2e",
                "sha256": "9961f781d9eccaf118c81b7d62690066700926ae59ee98703b9eead5b2c4c75b"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "77e1a2517cd70d8ab9cc70d0e29caf2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 273440,
            "upload_time": "2024-04-18T05:49:22",
            "upload_time_iso_8601": "2024-04-18T05:49:22.512997Z",
            "url": "https://files.pythonhosted.org/packages/69/8d/e0b5d6d185d4ca3caea2fc07289ece4982b34e341e141a2b881f20ee339c/endec-0.1.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87b4f65b8285c16e6e3bfcc537abcddf98bbe0b8e5e8b9265216829e8d5f1e71",
                "md5": "70b36c626af39fc02a4044ebbc2fc803",
                "sha256": "e9ef9276cc2f306084fb6ed2881acc70ec6fe054791fe0f7b546d30205688a29"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "70b36c626af39fc02a4044ebbc2fc803",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 277255,
            "upload_time": "2024-04-18T05:49:13",
            "upload_time_iso_8601": "2024-04-18T05:49:13.405946Z",
            "url": "https://files.pythonhosted.org/packages/87/b4/f65b8285c16e6e3bfcc537abcddf98bbe0b8e5e8b9265216829e8d5f1e71/endec-0.1.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b02751f144caef5c54e9f64d8288363faff5d7e0fbe1a0e397d65115d3e93772",
                "md5": "d1cd6eef7b3fdb5d2d8086a889e9e49a",
                "sha256": "8a228bab19025d9af6e079099e469cae1d26512f4e15eb1b8a5530dd1edf9145"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1cd6eef7b3fdb5d2d8086a889e9e49a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1152131,
            "upload_time": "2024-04-18T05:47:14",
            "upload_time_iso_8601": "2024-04-18T05:47:14.630162Z",
            "url": "https://files.pythonhosted.org/packages/b0/27/51f144caef5c54e9f64d8288363faff5d7e0fbe1a0e397d65115d3e93772/endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72541612bbd67c87e1fb0280f758016c23a0b4307ac8edb0e0da7e17081bc8c9",
                "md5": "e468be0f0f4fbb3e75636f1ac7835184",
                "sha256": "dc580e733a0f920464786816010f897d0d8510dc4b2aa6b7d1bfff2464e03e05"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e468be0f0f4fbb3e75636f1ac7835184",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1167559,
            "upload_time": "2024-04-18T05:47:33",
            "upload_time_iso_8601": "2024-04-18T05:47:33.194217Z",
            "url": "https://files.pythonhosted.org/packages/72/54/1612bbd67c87e1fb0280f758016c23a0b4307ac8edb0e0da7e17081bc8c9/endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4e280277c189e9cdf82d1e8122abfea6c760fbeb8e5853c67d43e4739e5f965",
                "md5": "f7068ea61278d5c9a613dceeb9696ff0",
                "sha256": "a7a7fd83f41b6ebd9d6b12702256538fe4a9f03da0c2c6195b513e26bba5a599"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f7068ea61278d5c9a613dceeb9696ff0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1305098,
            "upload_time": "2024-04-18T05:47:52",
            "upload_time_iso_8601": "2024-04-18T05:47:52.109003Z",
            "url": "https://files.pythonhosted.org/packages/b4/e2/80277c189e9cdf82d1e8122abfea6c760fbeb8e5853c67d43e4739e5f965/endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5287724d828be88efb5303267b7516948d243222458419ede8587f411db97051",
                "md5": "f7a655f75af69540b50a3ff30c259dbc",
                "sha256": "a0c6f2bcfc939a901e85c45ceee30be3883f66852d88522c2446edf3aea77e7f"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f7a655f75af69540b50a3ff30c259dbc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1293698,
            "upload_time": "2024-04-18T05:48:10",
            "upload_time_iso_8601": "2024-04-18T05:48:10.445023Z",
            "url": "https://files.pythonhosted.org/packages/52/87/724d828be88efb5303267b7516948d243222458419ede8587f411db97051/endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54785abb0fe8b57e9580b4856c82621c913415f8261a98dece626679bde6f3f3",
                "md5": "3cf72a8931b71c3fd7bec2a4adb98dbd",
                "sha256": "1df2e1e66a98de93a5ceb1b23cba38d33c35b6d526724dbaa2a224cec893b421"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3cf72a8931b71c3fd7bec2a4adb98dbd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1161911,
            "upload_time": "2024-04-18T05:48:44",
            "upload_time_iso_8601": "2024-04-18T05:48:44.810454Z",
            "url": "https://files.pythonhosted.org/packages/54/78/5abb0fe8b57e9580b4856c82621c913415f8261a98dece626679bde6f3f3/endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bd6c09d1137f73366f42c98f287d0a35f92f0860e805540128d82916d971763",
                "md5": "a8c8f9484599b546e670ceb2d52a5a05",
                "sha256": "88b69387b119a89d851c4072a4a53e4a66f1a8d8fafa00f74838f17d58e32227"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a8c8f9484599b546e670ceb2d52a5a05",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1180838,
            "upload_time": "2024-04-18T05:48:27",
            "upload_time_iso_8601": "2024-04-18T05:48:27.365903Z",
            "url": "https://files.pythonhosted.org/packages/7b/d6/c09d1137f73366f42c98f287d0a35f92f0860e805540128d82916d971763/endec-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f4a85b5661035f17789b1f48524f1c071ca04326afd42b41310bb9f66eab6cd",
                "md5": "f88d19c949faff3597b2239663f0f859",
                "sha256": "cbc859ab757c0ec4e17819940e1a95b593b9decc34946588dfd56ea5648c72a2"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f88d19c949faff3597b2239663f0f859",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1152316,
            "upload_time": "2024-04-18T05:47:17",
            "upload_time_iso_8601": "2024-04-18T05:47:17.353048Z",
            "url": "https://files.pythonhosted.org/packages/1f/4a/85b5661035f17789b1f48524f1c071ca04326afd42b41310bb9f66eab6cd/endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26e7a3db3462843450395ca1ec31c8058dc64d995f84b437b0e74488204e69bf",
                "md5": "44696e0d56cce62b84ec9304ce40e0aa",
                "sha256": "79c1624f007c4b212f03c5919c85d0b7bcc193a1f423c6d9f3aaeee953fa35a3"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "44696e0d56cce62b84ec9304ce40e0aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1167559,
            "upload_time": "2024-04-18T05:47:35",
            "upload_time_iso_8601": "2024-04-18T05:47:35.817877Z",
            "url": "https://files.pythonhosted.org/packages/26/e7/a3db3462843450395ca1ec31c8058dc64d995f84b437b0e74488204e69bf/endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6923a8ea1563d0676fadc2de6462eb9cbcdda933514bf392bb1b8a70b709e2ef",
                "md5": "13c250963ded0e2596b8cf13456a605d",
                "sha256": "5c24b13c8dc9365e761931653456593cb2f649142470334e1fb652026e382807"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "13c250963ded0e2596b8cf13456a605d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1322652,
            "upload_time": "2024-04-18T05:47:54",
            "upload_time_iso_8601": "2024-04-18T05:47:54.560903Z",
            "url": "https://files.pythonhosted.org/packages/69/23/a8ea1563d0676fadc2de6462eb9cbcdda933514bf392bb1b8a70b709e2ef/endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0586473af5f4a3d0ae829740af5d206c69c3b6245051473afba4349fd0a54c8d",
                "md5": "8b37d85d78658574f9642ec0053f3ceb",
                "sha256": "646abed3e7af047b7ad89f0ada2eac2573ecbd072da88cc66cdaa42fa06fa452"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8b37d85d78658574f9642ec0053f3ceb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1293462,
            "upload_time": "2024-04-18T05:48:12",
            "upload_time_iso_8601": "2024-04-18T05:48:12.281574Z",
            "url": "https://files.pythonhosted.org/packages/05/86/473af5f4a3d0ae829740af5d206c69c3b6245051473afba4349fd0a54c8d/endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc78ef8377673ed2771b292427fbac66441561ca97f2d7b8aa59a769b16a89c1",
                "md5": "1c0faf5d0c3127b11e12aeb5eb467b01",
                "sha256": "3561e3cf5f1dc31dfb161906f41d453f73f971eda3b2e466c8ae9cb8f54239d7"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c0faf5d0c3127b11e12aeb5eb467b01",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1161817,
            "upload_time": "2024-04-18T05:48:46",
            "upload_time_iso_8601": "2024-04-18T05:48:46.990039Z",
            "url": "https://files.pythonhosted.org/packages/cc/78/ef8377673ed2771b292427fbac66441561ca97f2d7b8aa59a769b16a89c1/endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57289b0c147a32c54f2247f1ada3abc5cccd6a3b63aeefe1a4ca9c9d18c0dc41",
                "md5": "986187ce2b77290f3cac74032a4e3c08",
                "sha256": "9300c31297e816d0317777243ad0d58f2f049372faedbc421b393793908cd002"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "986187ce2b77290f3cac74032a4e3c08",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1180753,
            "upload_time": "2024-04-18T05:48:30",
            "upload_time_iso_8601": "2024-04-18T05:48:30.269298Z",
            "url": "https://files.pythonhosted.org/packages/57/28/9b0c147a32c54f2247f1ada3abc5cccd6a3b63aeefe1a4ca9c9d18c0dc41/endec-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49986cd08daa42ab47564de6bc570b235132c2654f6c27831133d6ff3c109cb1",
                "md5": "98fc1e1c4d8d2515c1aa6c2e7104b49f",
                "sha256": "3d548eb1786d2b00fca44d1fca5862c7d4dd1110e64cc11db19fd3aa8d79f5dc"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98fc1e1c4d8d2515c1aa6c2e7104b49f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1152216,
            "upload_time": "2024-04-18T05:47:19",
            "upload_time_iso_8601": "2024-04-18T05:47:19.687618Z",
            "url": "https://files.pythonhosted.org/packages/49/98/6cd08daa42ab47564de6bc570b235132c2654f6c27831133d6ff3c109cb1/endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab7fcff00c8137a28ca0582c6e956bb288012c9b4c6cba2c3e0f77c91d2da7b2",
                "md5": "c5fac2d646c98511cf79ea332ba116ef",
                "sha256": "98717a44097c6b73ca3c886374dd78ed13bade6e55f09f88859d99f9fdf49a91"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c5fac2d646c98511cf79ea332ba116ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1167480,
            "upload_time": "2024-04-18T05:47:37",
            "upload_time_iso_8601": "2024-04-18T05:47:37.730852Z",
            "url": "https://files.pythonhosted.org/packages/ab/7f/cff00c8137a28ca0582c6e956bb288012c9b4c6cba2c3e0f77c91d2da7b2/endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19e140dbb21a0b081e025aafea0c3ec07d8f75776a168c0c11ef6903101e8b1d",
                "md5": "fe99988bced7ada7913f706ca411351f",
                "sha256": "42fc384d441c88e7b163845c0efa8b2504da48eebaaa590f5a1fd8d2c8ee15a6"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fe99988bced7ada7913f706ca411351f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1306082,
            "upload_time": "2024-04-18T05:47:57",
            "upload_time_iso_8601": "2024-04-18T05:47:57.048518Z",
            "url": "https://files.pythonhosted.org/packages/19/e1/40dbb21a0b081e025aafea0c3ec07d8f75776a168c0c11ef6903101e8b1d/endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54a5b6bf1c10c7c41a0a22affb85c54e2a04bf7fec41c83516bdd118ee85b283",
                "md5": "91d0e599b58aa10d43950726710f151f",
                "sha256": "e878321ddb30779ffe1e19db39824ee1cdf5447f90082259ee65f67da344254c"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "91d0e599b58aa10d43950726710f151f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1293185,
            "upload_time": "2024-04-18T05:48:14",
            "upload_time_iso_8601": "2024-04-18T05:48:14.281176Z",
            "url": "https://files.pythonhosted.org/packages/54/a5/b6bf1c10c7c41a0a22affb85c54e2a04bf7fec41c83516bdd118ee85b283/endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05ca456e0242808cc98f4cc39e19b13a604675e4a5cd018b99529fefad206522",
                "md5": "22b27b56514694561710b67413e69f26",
                "sha256": "0de816898a395758f6a9d4c6b4c93b6ffd4701d0dedf6aeaeca81668e1a4854f"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22b27b56514694561710b67413e69f26",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1161965,
            "upload_time": "2024-04-18T05:48:50",
            "upload_time_iso_8601": "2024-04-18T05:48:50.250772Z",
            "url": "https://files.pythonhosted.org/packages/05/ca/456e0242808cc98f4cc39e19b13a604675e4a5cd018b99529fefad206522/endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed1714aac98af3a4191be958ca05daefb840e69fef1a0e37924299cfe6c2edba",
                "md5": "f9f2cc81e47413ba17dcc5032ca2224d",
                "sha256": "19a4ebd995adb99f1c06af02d71524ec776067a34ad29fcad6e0f155badc7103"
            },
            "downloads": -1,
            "filename": "endec-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f9f2cc81e47413ba17dcc5032ca2224d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1180670,
            "upload_time": "2024-04-18T05:48:32",
            "upload_time_iso_8601": "2024-04-18T05:48:32.271559Z",
            "url": "https://files.pythonhosted.org/packages/ed/17/14aac98af3a4191be958ca05daefb840e69fef1a0e37924299cfe6c2edba/endec-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba0a4a3b4976f78174df6521a6969411859592533843ac78f5c3b2765166fa58",
                "md5": "baca113fc7358b2c76a29ff2f897c8be",
                "sha256": "b11ff5a45b36ee626f2dd7c1546943b70186b77499bb197e5e5f99236f4ddca8"
            },
            "downloads": -1,
            "filename": "endec-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "baca113fc7358b2c76a29ff2f897c8be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 11826,
            "upload_time": "2024-04-18T05:49:03",
            "upload_time_iso_8601": "2024-04-18T05:49:03.711129Z",
            "url": "https://files.pythonhosted.org/packages/ba/0a/4a3b4976f78174df6521a6969411859592533843ac78f5c3b2765166fa58/endec-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-18 05:49:03",
    "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"
}
        
Elapsed time: 0.23031s