autosar-e2e


Nameautosar-e2e JSON
Version 0.4.1 PyPI version JSON
download
home_page
SummaryPython implementation of the AUTOSAR E2E Protocol
upload_time2023-10-08 16:10:53
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT
keywords autosar e2e automotive
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # autosar-e2e

[![PyPI - Version](https://img.shields.io/pypi/v/autosar-e2e.svg)](https://pypi.org/project/autosar-e2e)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/autosar-e2e.svg)](https://pypi.org/project/autosar-e2e)
[![Documentation Status](https://readthedocs.org/projects/autosar-e2e/badge/?version=latest)](https://autosar-e2e.readthedocs.io/en/latest/?badge=latest)

The documentation is available [here](https://autosar-e2e.readthedocs.io/en/latest/).

-----

**Table of Contents**

- [Description](#description)
- [Installation](#installation)
- [Usage](#usage)
- [Test](#test)
- [Build](#build)
- [License](#license)

## Description

This library provides fast C implementations of the E2E CRC algorithms and E2E profiles. 

Currently, all relevant CRC algorithms are available in module `e2e.crc`
but only E2E profiles 1, 2 and 5 are available. 
If you provide example data for the other profiles I would try to implement them, too.

## Installation

```console
pip install autosar-e2e
```

## Usage

### CRC example
```python3
import e2e
crc: int = e2e.crc.calculate_crc8_h2f(b"\x00\x00\x00\x00")
```

### E2E Profile 2
```python3
import e2e
# create data
data = bytearray(b"\x00" *  8)
length = len(data) - 1
data_id_list = b"\x00" * 16
# increment counter and calculate CRC inplace
e2e.p02.e2e_p02_protect(data, length, data_id_list, increment_counter=True)
# check CRC
crc_correct: bool = e2e.p02.e2e_p02_check(data, length, data_id_list)
```

## Test

```console
pip install pipx
pipx run tox
```

## Build

```console
pip install pipx
pipx run build
pipx run twine check dist/*
```

## License

`autosar-e2e` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "autosar-e2e",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "AUTOSAR,E2E,automotive",
    "author": "",
    "author_email": "Artur Drogunow <artur.drogunow@zf.com>",
    "download_url": "https://files.pythonhosted.org/packages/3b/2a/17561c627a5b86a7ec929bbbbb114c6041b26f0c3fb2e9e4b2b9044696e8/autosar-e2e-0.4.1.tar.gz",
    "platform": null,
    "description": "# autosar-e2e\n\n[![PyPI - Version](https://img.shields.io/pypi/v/autosar-e2e.svg)](https://pypi.org/project/autosar-e2e)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/autosar-e2e.svg)](https://pypi.org/project/autosar-e2e)\n[![Documentation Status](https://readthedocs.org/projects/autosar-e2e/badge/?version=latest)](https://autosar-e2e.readthedocs.io/en/latest/?badge=latest)\n\nThe documentation is available [here](https://autosar-e2e.readthedocs.io/en/latest/).\n\n-----\n\n**Table of Contents**\n\n- [Description](#description)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Test](#test)\n- [Build](#build)\n- [License](#license)\n\n## Description\n\nThis library provides fast C implementations of the E2E CRC algorithms and E2E profiles. \n\nCurrently, all relevant CRC algorithms are available in module `e2e.crc`\nbut only E2E profiles 1, 2 and 5 are available. \nIf you provide example data for the other profiles I would try to implement them, too.\n\n## Installation\n\n```console\npip install autosar-e2e\n```\n\n## Usage\n\n### CRC example\n```python3\nimport e2e\ncrc: int = e2e.crc.calculate_crc8_h2f(b\"\\x00\\x00\\x00\\x00\")\n```\n\n### E2E Profile 2\n```python3\nimport e2e\n# create data\ndata = bytearray(b\"\\x00\" *  8)\nlength = len(data) - 1\ndata_id_list = b\"\\x00\" * 16\n# increment counter and calculate CRC inplace\ne2e.p02.e2e_p02_protect(data, length, data_id_list, increment_counter=True)\n# check CRC\ncrc_correct: bool = e2e.p02.e2e_p02_check(data, length, data_id_list)\n```\n\n## Test\n\n```console\npip install pipx\npipx run tox\n```\n\n## Build\n\n```console\npip install pipx\npipx run build\npipx run twine check dist/*\n```\n\n## License\n\n`autosar-e2e` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python implementation of the AUTOSAR E2E Protocol",
    "version": "0.4.1",
    "project_urls": {
        "Documentation": "https://autosar-e2e.readthedocs.io/en/latest",
        "Homepage": "https://github.com/zariiii9003/autosar-e2e",
        "Issues": "https://github.com/zariiii9003/autosar-e2e/issues",
        "Source": "https://github.com/zariiii9003/autosar-e2e"
    },
    "split_keywords": [
        "autosar",
        "e2e",
        "automotive"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6adffdc1c6d7c93997c44227d3931771650cfdbbb977c76f1929190b92f1d0e3",
                "md5": "741d70c17e9316a375c2f1b39df87bd7",
                "sha256": "d8912997522f8eed665a4a72d6635903c3ed249ff31a8c3eb1456deeb2134eb8"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "741d70c17e9316a375c2f1b39df87bd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 71336,
            "upload_time": "2023-10-08T16:09:33",
            "upload_time_iso_8601": "2023-10-08T16:09:33.375139Z",
            "url": "https://files.pythonhosted.org/packages/6a/df/fdc1c6d7c93997c44227d3931771650cfdbbb977c76f1929190b92f1d0e3/autosar_e2e-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "411297b4d69e5186a6f8feb6f8b2018aba0d79d36781419d914c138866b7ea05",
                "md5": "6c1f28be84fd9658272f46da1d2e4105",
                "sha256": "bf866b523ebedac784e8e21e02d2d63a2eaae60d2d6397ca9d40b4153def1ad1"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6c1f28be84fd9658272f46da1d2e4105",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 134877,
            "upload_time": "2023-10-08T16:09:35",
            "upload_time_iso_8601": "2023-10-08T16:09:35.426653Z",
            "url": "https://files.pythonhosted.org/packages/41/12/97b4d69e5186a6f8feb6f8b2018aba0d79d36781419d914c138866b7ea05/autosar_e2e-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bee27a4a46bc58f02fa9ceba8b1e92023d5ece8548e744b72083ca1d509c322f",
                "md5": "ed9b9bffc1c574ed5af72d49837f3487",
                "sha256": "e4eed9ac76418ce6fc06ff2f908717eab8b3fa85df003ef9dd6e163f083cc9bd"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed9b9bffc1c574ed5af72d49837f3487",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 146411,
            "upload_time": "2023-10-08T16:09:38",
            "upload_time_iso_8601": "2023-10-08T16:09:38.627456Z",
            "url": "https://files.pythonhosted.org/packages/be/e2/7a4a46bc58f02fa9ceba8b1e92023d5ece8548e744b72083ca1d509c322f/autosar_e2e-0.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9506f7848c000823000542ef0564691b8d08e22a4e157a621d93cb5f852b573",
                "md5": "d7cfe57e195e62610cf48b971a28e3a0",
                "sha256": "75b89772fd18752f24e7c457e3bb4068008b96069640420258f65b5fe7c1e92b"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d7cfe57e195e62610cf48b971a28e3a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 165813,
            "upload_time": "2023-10-08T16:09:40",
            "upload_time_iso_8601": "2023-10-08T16:09:40.477446Z",
            "url": "https://files.pythonhosted.org/packages/d9/50/6f7848c000823000542ef0564691b8d08e22a4e157a621d93cb5f852b573/autosar_e2e-0.4.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0047826f4a5aec1123910be0eaf0ab11d529f5ffbca3cdd740c75b35ad1711b8",
                "md5": "04c87981d1625f111790d6ba80be4dc9",
                "sha256": "2d5add18ab3ab250107505f46e974c58574013d96869191f8e08c6cb1fd54710"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04c87981d1625f111790d6ba80be4dc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 175665,
            "upload_time": "2023-10-08T16:09:42",
            "upload_time_iso_8601": "2023-10-08T16:09:42.121840Z",
            "url": "https://files.pythonhosted.org/packages/00/47/826f4a5aec1123910be0eaf0ab11d529f5ffbca3cdd740c75b35ad1711b8/autosar_e2e-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c892d6316fd84eee5d8daac5f16e5d01eecfcc3db1933f9568b1dd718416dde",
                "md5": "541ebf5df3a30db037d693d5d02da3a6",
                "sha256": "8c7c0fc67b50d8bbc6d95a183d9423bd7641592b2c53a055a2669b4138e1dd89"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "541ebf5df3a30db037d693d5d02da3a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 76213,
            "upload_time": "2023-10-08T16:09:43",
            "upload_time_iso_8601": "2023-10-08T16:09:43.949699Z",
            "url": "https://files.pythonhosted.org/packages/5c/89/2d6316fd84eee5d8daac5f16e5d01eecfcc3db1933f9568b1dd718416dde/autosar_e2e-0.4.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "134a3460e3172b88cec75ca8a7b05668852375042270c25547cf5808f418e3c6",
                "md5": "c4edf8d8d3217f79df988743c4632905",
                "sha256": "8ff8b501a89ba1f4effc690397cc1416668bf94ce99a6ada4601258402e4e37f"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c4edf8d8d3217f79df988743c4632905",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 79944,
            "upload_time": "2023-10-08T16:09:45",
            "upload_time_iso_8601": "2023-10-08T16:09:45.476293Z",
            "url": "https://files.pythonhosted.org/packages/13/4a/3460e3172b88cec75ca8a7b05668852375042270c25547cf5808f418e3c6/autosar_e2e-0.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e03337af2a796cb78ee3bd4e5d09dfa2a5bbfbd9b2554c195ea5a0981c2bcfd7",
                "md5": "162b9d8484b0f9b8fd0504724925516e",
                "sha256": "a6dd77c08860e7de2670d3d7cdc733c0389ab7104a765bb6fb0b978d1a4f7ee0"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "162b9d8484b0f9b8fd0504724925516e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 71336,
            "upload_time": "2023-10-08T16:09:47",
            "upload_time_iso_8601": "2023-10-08T16:09:47.125188Z",
            "url": "https://files.pythonhosted.org/packages/e0/33/37af2a796cb78ee3bd4e5d09dfa2a5bbfbd9b2554c195ea5a0981c2bcfd7/autosar_e2e-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b455c16064630218ab41d7fe065fe6553509ae678e279128d1b26c4b2ae89b22",
                "md5": "e3e97f8312ce037ee3ba9480a2ee90f6",
                "sha256": "611e85fd2d6ae6a058bd7ece0aa942065993e6f761ec6372ea2756af65afd4d5"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e3e97f8312ce037ee3ba9480a2ee90f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 137560,
            "upload_time": "2023-10-08T16:09:48",
            "upload_time_iso_8601": "2023-10-08T16:09:48.375293Z",
            "url": "https://files.pythonhosted.org/packages/b4/55/c16064630218ab41d7fe065fe6553509ae678e279128d1b26c4b2ae89b22/autosar_e2e-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d510bdc58c8363771706c4adf9cde3c3a3eaef4291b3c67b12f863b78e0aaa9",
                "md5": "f8467a40186b9bbaa55a7c149a2a43dd",
                "sha256": "947211a2889d14b7e8138db45cd47fde403b7e98c23ff681f4e6fbc37c301df6"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8467a40186b9bbaa55a7c149a2a43dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 149292,
            "upload_time": "2023-10-08T16:09:49",
            "upload_time_iso_8601": "2023-10-08T16:09:49.703315Z",
            "url": "https://files.pythonhosted.org/packages/8d/51/0bdc58c8363771706c4adf9cde3c3a3eaef4291b3c67b12f863b78e0aaa9/autosar_e2e-0.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f034bd37ea3befb67ad253a6026eb8717003097b71b40026b0c422d8f712176",
                "md5": "cedb32470aff4899b8438802f5da6901",
                "sha256": "e97b0f17162e398c0519c97b36999263295bccce4397f1d151cb69e6e5471e5e"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cedb32470aff4899b8438802f5da6901",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 171021,
            "upload_time": "2023-10-08T16:09:51",
            "upload_time_iso_8601": "2023-10-08T16:09:51.666820Z",
            "url": "https://files.pythonhosted.org/packages/9f/03/4bd37ea3befb67ad253a6026eb8717003097b71b40026b0c422d8f712176/autosar_e2e-0.4.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0334daa8713ddcbf21389edb8b69274efef1921f42f3752b609f68e0d502c15d",
                "md5": "c6b1ec09da510f38b3b7d33bc4aad308",
                "sha256": "ef4ca20ce66437e776bdb4b28ef12c46410954c5097cc2615f490b9bd2d41eea"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6b1ec09da510f38b3b7d33bc4aad308",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 178955,
            "upload_time": "2023-10-08T16:09:53",
            "upload_time_iso_8601": "2023-10-08T16:09:53.547462Z",
            "url": "https://files.pythonhosted.org/packages/03/34/daa8713ddcbf21389edb8b69274efef1921f42f3752b609f68e0d502c15d/autosar_e2e-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "369c03d7ea2372a39f56888b2fbf3915387b0f18b9648a12052e648daeb76eb2",
                "md5": "6c966ae279218f9e84271748698a86e8",
                "sha256": "fa2d7cee49cdcf701aadcebd71eb10258de214f6291d5645f340376191c52822"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6c966ae279218f9e84271748698a86e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 76201,
            "upload_time": "2023-10-08T16:09:56",
            "upload_time_iso_8601": "2023-10-08T16:09:56.495914Z",
            "url": "https://files.pythonhosted.org/packages/36/9c/03d7ea2372a39f56888b2fbf3915387b0f18b9648a12052e648daeb76eb2/autosar_e2e-0.4.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e51c1baa4ad6de2a87e884f81f218dcb0951f51f57355eca2e90a8f61054cf0",
                "md5": "f59be46146264cacc71c099b138da99c",
                "sha256": "15e27917107839cae21718cbd6d3cb11046bf2351ad6701641ddc1a0e740f68d"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f59be46146264cacc71c099b138da99c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 79951,
            "upload_time": "2023-10-08T16:09:57",
            "upload_time_iso_8601": "2023-10-08T16:09:57.721262Z",
            "url": "https://files.pythonhosted.org/packages/4e/51/c1baa4ad6de2a87e884f81f218dcb0951f51f57355eca2e90a8f61054cf0/autosar_e2e-0.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05fb2ad0c254e27ab7a88709fa1fb5b4b0152f1b245140f92ff7c3d38bd954b9",
                "md5": "027acbc98bc5a23f4dbdd23e656444bd",
                "sha256": "f80b735e13c5df6429515b3fa6cb3cd859feecc489985c501d57a3e111a3d4ab"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "027acbc98bc5a23f4dbdd23e656444bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 71350,
            "upload_time": "2023-10-08T16:09:58",
            "upload_time_iso_8601": "2023-10-08T16:09:58.957987Z",
            "url": "https://files.pythonhosted.org/packages/05/fb/2ad0c254e27ab7a88709fa1fb5b4b0152f1b245140f92ff7c3d38bd954b9/autosar_e2e-0.4.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2965090f25fd7fc7fdbed7820ab1910cb8eb9232094c254019a8365c43d238d",
                "md5": "de071704feae07154c588304c013d09e",
                "sha256": "a30b258c14babb9eb4d380c93d5d04e31bda2cc57a7f45d3d789357856de8374"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "de071704feae07154c588304c013d09e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 148204,
            "upload_time": "2023-10-08T16:10:01",
            "upload_time_iso_8601": "2023-10-08T16:10:01.192444Z",
            "url": "https://files.pythonhosted.org/packages/e2/96/5090f25fd7fc7fdbed7820ab1910cb8eb9232094c254019a8365c43d238d/autosar_e2e-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "216d37761cd09ce469a2793fe527b8094f461ee5761a84c65ddd6428fb13ff6d",
                "md5": "d3d01e03528af950edf12c5566bdfdd2",
                "sha256": "f5dec6cdfe5d0c93fc4f013093741c27d7043380a38cdb465bfacac2a7f324bc"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3d01e03528af950edf12c5566bdfdd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 157769,
            "upload_time": "2023-10-08T16:10:03",
            "upload_time_iso_8601": "2023-10-08T16:10:03.680302Z",
            "url": "https://files.pythonhosted.org/packages/21/6d/37761cd09ce469a2793fe527b8094f461ee5761a84c65ddd6428fb13ff6d/autosar_e2e-0.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb6b708f3a9a27852af1d42ee0c581dae3d85cbef2ad744358fa3455678706c1",
                "md5": "d7cec6ac40d7fe0eb92432dfb24fd4e8",
                "sha256": "30c62dc619490311a8cdc400255f269ca50f6e37b9a3df909cd38a5b4fe13f0e"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d7cec6ac40d7fe0eb92432dfb24fd4e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 174801,
            "upload_time": "2023-10-08T16:10:05",
            "upload_time_iso_8601": "2023-10-08T16:10:05.151213Z",
            "url": "https://files.pythonhosted.org/packages/cb/6b/708f3a9a27852af1d42ee0c581dae3d85cbef2ad744358fa3455678706c1/autosar_e2e-0.4.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab6b4717b4c18d1d5d3ff9dce74e8b37a526fda705bf1a5c0982cb9d1c7f9fe",
                "md5": "f19a443e22d386fee1ad78a210a17756",
                "sha256": "f289945c0a55d9567b4d37c4446564a1a53181fb50d10e24c55be30ece6a7615"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f19a443e22d386fee1ad78a210a17756",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 186955,
            "upload_time": "2023-10-08T16:10:07",
            "upload_time_iso_8601": "2023-10-08T16:10:07.412474Z",
            "url": "https://files.pythonhosted.org/packages/ea/b6/b4717b4c18d1d5d3ff9dce74e8b37a526fda705bf1a5c0982cb9d1c7f9fe/autosar_e2e-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3a29d5e20b2ab67e1187ca384282e52b88c8110118f4aeb63973d2471bc8e2c",
                "md5": "e5d6bca697d59211800884eed94324a4",
                "sha256": "61808b8aacabb91973eb41c38e9b50d84a5f5041ba43a246937878c961d96913"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e5d6bca697d59211800884eed94324a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 76291,
            "upload_time": "2023-10-08T16:10:09",
            "upload_time_iso_8601": "2023-10-08T16:10:09.805173Z",
            "url": "https://files.pythonhosted.org/packages/e3/a2/9d5e20b2ab67e1187ca384282e52b88c8110118f4aeb63973d2471bc8e2c/autosar_e2e-0.4.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b99c947d9772d240e59c2e060cf5915edf72995a7df2d77b88c5e378867f154",
                "md5": "d280ce2bdfad869318dda50aeb553817",
                "sha256": "6f9c8f63a4f711f6db26c40fca3f0fe6135477c87b0a3f3f4738f8b5fed2fea1"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d280ce2bdfad869318dda50aeb553817",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 79975,
            "upload_time": "2023-10-08T16:10:10",
            "upload_time_iso_8601": "2023-10-08T16:10:10.955025Z",
            "url": "https://files.pythonhosted.org/packages/1b/99/c947d9772d240e59c2e060cf5915edf72995a7df2d77b88c5e378867f154/autosar_e2e-0.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "940fe62080f8b776498bb5e998691e5add81666aa2f46d2b412fe718daa97281",
                "md5": "792f6491e03aa17991c88e233f393bdb",
                "sha256": "548385935dc3e76a78259fecf3d262ec7a6e5fdd3b816f380f95dd0ee3104d63"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "792f6491e03aa17991c88e233f393bdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 70377,
            "upload_time": "2023-10-08T16:10:12",
            "upload_time_iso_8601": "2023-10-08T16:10:12.587271Z",
            "url": "https://files.pythonhosted.org/packages/94/0f/e62080f8b776498bb5e998691e5add81666aa2f46d2b412fe718daa97281/autosar_e2e-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03c20ad63cbf77ffe592d3eafbe63c1c1836a181fa473f3a4951c79b3f902647",
                "md5": "f000bbb257f265c3cb5cdabf12f7cb8e",
                "sha256": "f818e8c0fc04a67d8f455f21b0e7d5fabee67d0b275694685d956cbfe2754bec"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f000bbb257f265c3cb5cdabf12f7cb8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 144561,
            "upload_time": "2023-10-08T16:10:13",
            "upload_time_iso_8601": "2023-10-08T16:10:13.757630Z",
            "url": "https://files.pythonhosted.org/packages/03/c2/0ad63cbf77ffe592d3eafbe63c1c1836a181fa473f3a4951c79b3f902647/autosar_e2e-0.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "856148b050454cb6254898ff36d1470b11dd6f4ea70f70e24b4d8d0610dbdaee",
                "md5": "6c544d59ea5fb6e7bae38184306c29af",
                "sha256": "002f89042724050533e8435023b42529a80e30199749199fb1b609f101410ea7"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c544d59ea5fb6e7bae38184306c29af",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 156102,
            "upload_time": "2023-10-08T16:10:16",
            "upload_time_iso_8601": "2023-10-08T16:10:16.195112Z",
            "url": "https://files.pythonhosted.org/packages/85/61/48b050454cb6254898ff36d1470b11dd6f4ea70f70e24b4d8d0610dbdaee/autosar_e2e-0.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1346c1ad304e523cce40724f4a0a2fa0216bddf63358799b07ff21a3f211ba2",
                "md5": "226f81cabbb05bed162321b978c14e57",
                "sha256": "1b1e9b53c6c48db2205af75bc83470a7fef71c188780e17d7d790a2377e3786b"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "226f81cabbb05bed162321b978c14e57",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 171200,
            "upload_time": "2023-10-08T16:10:17",
            "upload_time_iso_8601": "2023-10-08T16:10:17.615542Z",
            "url": "https://files.pythonhosted.org/packages/a1/34/6c1ad304e523cce40724f4a0a2fa0216bddf63358799b07ff21a3f211ba2/autosar_e2e-0.4.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dd6cd37ae11ae39fd6835149a8b22b14afe8c18a230314c473d084548313c81",
                "md5": "f51e85ee86cb67d2e95e4b37cfd172c8",
                "sha256": "fe35ae89ada1fd966ef5e949348d2d42ebfb2a2f9e061d14f5f5c77e16346166"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f51e85ee86cb67d2e95e4b37cfd172c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 177666,
            "upload_time": "2023-10-08T16:10:19",
            "upload_time_iso_8601": "2023-10-08T16:10:19.571475Z",
            "url": "https://files.pythonhosted.org/packages/7d/d6/cd37ae11ae39fd6835149a8b22b14afe8c18a230314c473d084548313c81/autosar_e2e-0.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34cd2704b5d9e10a5c5aa964c2d0791b573028f490cd26805e758b2cd73f5d05",
                "md5": "e570ab7de344a567a6057822de9d8838",
                "sha256": "2522ba1e127de38b556c69fa7e48c3ef88fb57fb6bad96592850dbdabd85f8d0"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "e570ab7de344a567a6057822de9d8838",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 76284,
            "upload_time": "2023-10-08T16:10:21",
            "upload_time_iso_8601": "2023-10-08T16:10:21.298969Z",
            "url": "https://files.pythonhosted.org/packages/34/cd/2704b5d9e10a5c5aa964c2d0791b573028f490cd26805e758b2cd73f5d05/autosar_e2e-0.4.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdd546f27ba8adc506c1b25fcf43da52ca95db2edc3cb870a0a884224666ac83",
                "md5": "98a80814d5ae8c1d6927fcdab518f110",
                "sha256": "e0bb1134ccd45a2e5c95705c258e5868c90a600e03343131d845e3a1af76f907"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98a80814d5ae8c1d6927fcdab518f110",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 79787,
            "upload_time": "2023-10-08T16:10:22",
            "upload_time_iso_8601": "2023-10-08T16:10:22.382004Z",
            "url": "https://files.pythonhosted.org/packages/cd/d5/46f27ba8adc506c1b25fcf43da52ca95db2edc3cb870a0a884224666ac83/autosar_e2e-0.4.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d1390ae9c10ad1c013a5a7d74d8d824b805e8aaef6ab28dc91b00ac351ee8cd",
                "md5": "8c5edb0d38cbcb7c466b669a2ed583da",
                "sha256": "cf78884b1bdbb92bdf78e5c8f950695465577196682ea7ff2f757a5ba38cccf5"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c5edb0d38cbcb7c466b669a2ed583da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 71320,
            "upload_time": "2023-10-08T16:10:23",
            "upload_time_iso_8601": "2023-10-08T16:10:23.518199Z",
            "url": "https://files.pythonhosted.org/packages/1d/13/90ae9c10ad1c013a5a7d74d8d824b805e8aaef6ab28dc91b00ac351ee8cd/autosar_e2e-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68c911ab7bcc33c0c4b39b4d0f6713b4bbb7c84a383e5fb1f12b24448727a075",
                "md5": "a0edf91cedecdaf9a363ea8783576ec9",
                "sha256": "724e6bf69016862b9d2af88d13a7a0514c0dfc5fa2564a2c48064f928c4d766a"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a0edf91cedecdaf9a363ea8783576ec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 144688,
            "upload_time": "2023-10-08T16:10:24",
            "upload_time_iso_8601": "2023-10-08T16:10:24.939645Z",
            "url": "https://files.pythonhosted.org/packages/68/c9/11ab7bcc33c0c4b39b4d0f6713b4bbb7c84a383e5fb1f12b24448727a075/autosar_e2e-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36a1afebd3876e7f048578a440180d891441660c824f27d7fa329c492e2f5bf5",
                "md5": "67032c50744e50fd20960c7ad1b64929",
                "sha256": "df000056493663605cd6390704dca5706c545858f151737041864f7c276ced83"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67032c50744e50fd20960c7ad1b64929",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 153916,
            "upload_time": "2023-10-08T16:10:26",
            "upload_time_iso_8601": "2023-10-08T16:10:26.980455Z",
            "url": "https://files.pythonhosted.org/packages/36/a1/afebd3876e7f048578a440180d891441660c824f27d7fa329c492e2f5bf5/autosar_e2e-0.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "493698aa5049608ef57bc61d835cedc27c9c68ea0435dae74bef91b1cce9cde2",
                "md5": "7689d4fd4e960fba2fc3a45b164abb85",
                "sha256": "5a5aa4c175bce6cee5a16de2bb680c6c8bab64294261dd63147099c161376731"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7689d4fd4e960fba2fc3a45b164abb85",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 169761,
            "upload_time": "2023-10-08T16:10:29",
            "upload_time_iso_8601": "2023-10-08T16:10:29.879352Z",
            "url": "https://files.pythonhosted.org/packages/49/36/98aa5049608ef57bc61d835cedc27c9c68ea0435dae74bef91b1cce9cde2/autosar_e2e-0.4.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2730a68e095c311c60453f6b995c0ca2156159e32cae9c3b0f0d07fcee90bd7",
                "md5": "661077372b7c0b56685d09e844521010",
                "sha256": "e11118874339c71c79e00b81739650564a60dfb4210b103f97c28170258fbb7e"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "661077372b7c0b56685d09e844521010",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 178484,
            "upload_time": "2023-10-08T16:10:32",
            "upload_time_iso_8601": "2023-10-08T16:10:32.117820Z",
            "url": "https://files.pythonhosted.org/packages/c2/73/0a68e095c311c60453f6b995c0ca2156159e32cae9c3b0f0d07fcee90bd7/autosar_e2e-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b171e6240dd9d1b7717f32a485c19d1fe4bac9fb9df2c059cd3fdec772e71358",
                "md5": "a929a672acf4dbb3c7929565c92680b8",
                "sha256": "3bdc7e2882c3f098df575b6b840843950b32db28aaecc280f8b38668eae73fb6"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "a929a672acf4dbb3c7929565c92680b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 76243,
            "upload_time": "2023-10-08T16:10:33",
            "upload_time_iso_8601": "2023-10-08T16:10:33.981136Z",
            "url": "https://files.pythonhosted.org/packages/b1/71/e6240dd9d1b7717f32a485c19d1fe4bac9fb9df2c059cd3fdec772e71358/autosar_e2e-0.4.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "987bd2dcb5ec26907599b24c2fdfe2f0d43f88dcd11c98c91e8ea2063843b6dc",
                "md5": "0b17cc8686c5aaf5b7f4c03775227ebf",
                "sha256": "eaa73016a4de2a1bcb6c9efbab00fa7fdc631309e1bce7b77999583d9c5a0569"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b17cc8686c5aaf5b7f4c03775227ebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 79967,
            "upload_time": "2023-10-08T16:10:35",
            "upload_time_iso_8601": "2023-10-08T16:10:35.340199Z",
            "url": "https://files.pythonhosted.org/packages/98/7b/d2dcb5ec26907599b24c2fdfe2f0d43f88dcd11c98c91e8ea2063843b6dc/autosar_e2e-0.4.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "731980e7af6b5ce9f5f4ae7913782172d49aa89ee3581440cf8b93ca26ace08c",
                "md5": "bce49bbb2f25b1d01bd3f332999c969c",
                "sha256": "ffbb5113e1114c7fd274869eb2cdc1ba7c8cbbe54ae3dc6b537a1dfc5c06b80c"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bce49bbb2f25b1d01bd3f332999c969c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 71318,
            "upload_time": "2023-10-08T16:10:36",
            "upload_time_iso_8601": "2023-10-08T16:10:36.992852Z",
            "url": "https://files.pythonhosted.org/packages/73/19/80e7af6b5ce9f5f4ae7913782172d49aa89ee3581440cf8b93ca26ace08c/autosar_e2e-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b647dcac99e73c131c250b55ce598119d50868e958f6450ed9d44479376f56d9",
                "md5": "04b9ce40e304a614ada324a7141095e9",
                "sha256": "73af3d8950419710a85175dd3fe54720d8e13004a1370100b1a5297f33b94f5b"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "04b9ce40e304a614ada324a7141095e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 133822,
            "upload_time": "2023-10-08T16:10:38",
            "upload_time_iso_8601": "2023-10-08T16:10:38.634873Z",
            "url": "https://files.pythonhosted.org/packages/b6/47/dcac99e73c131c250b55ce598119d50868e958f6450ed9d44479376f56d9/autosar_e2e-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9791a3e3e8bfef22d6a645f599cf5278c4130936004ee9b960a007ee4bf23e4",
                "md5": "67c1ce2538e5c308b18ab2fc2ffa41d6",
                "sha256": "570a7f785828b25b4e5d4fb9e74d50cb11810a3e994b37adf5bd357ff86a8065"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67c1ce2538e5c308b18ab2fc2ffa41d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 145252,
            "upload_time": "2023-10-08T16:10:43",
            "upload_time_iso_8601": "2023-10-08T16:10:43.295267Z",
            "url": "https://files.pythonhosted.org/packages/a9/79/1a3e3e8bfef22d6a645f599cf5278c4130936004ee9b960a007ee4bf23e4/autosar_e2e-0.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78102d3356d248b18c073ff3ca5406421cea99faace81611fbe5ac495646ddbc",
                "md5": "924e618144f43ef4b43f13b96d543a83",
                "sha256": "c8ed4c1201c664bde05b18e74f2091cbbd3c5298f3d17e320995d9d75c02fc46"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "924e618144f43ef4b43f13b96d543a83",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 164726,
            "upload_time": "2023-10-08T16:10:45",
            "upload_time_iso_8601": "2023-10-08T16:10:45.909705Z",
            "url": "https://files.pythonhosted.org/packages/78/10/2d3356d248b18c073ff3ca5406421cea99faace81611fbe5ac495646ddbc/autosar_e2e-0.4.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a844d0e625e0fd8843248269bae4d93aa25679ecfc76c901e1d8a20b79ab28b",
                "md5": "eee05d6d4d15f715feb1871818c6a031",
                "sha256": "7d6b7c29aa6cf3002a17a1d4dbffb3f88bf9bc7bbba30bef0075dd1e8abe9fd5"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eee05d6d4d15f715feb1871818c6a031",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 174571,
            "upload_time": "2023-10-08T16:10:48",
            "upload_time_iso_8601": "2023-10-08T16:10:48.032313Z",
            "url": "https://files.pythonhosted.org/packages/4a/84/4d0e625e0fd8843248269bae4d93aa25679ecfc76c901e1d8a20b79ab28b/autosar_e2e-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50935a10c97fd33a3a993a9ef1ee7aced4324d3bb510a64868cb0de914eb0c21",
                "md5": "5c6efcb21289da82a2eb7a7a83a74960",
                "sha256": "f89037277b0ce07a27029a4a813115e5acd724a2dc31510e53af8e1ce0cbcec9"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "5c6efcb21289da82a2eb7a7a83a74960",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 76236,
            "upload_time": "2023-10-08T16:10:50",
            "upload_time_iso_8601": "2023-10-08T16:10:50.546232Z",
            "url": "https://files.pythonhosted.org/packages/50/93/5a10c97fd33a3a993a9ef1ee7aced4324d3bb510a64868cb0de914eb0c21/autosar_e2e-0.4.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f73db2472112e73ac46f0c90269af36777e5c0f86a1c866a5ea273d72edaf90d",
                "md5": "a3ddbd1647e2ba9e034ba231fe05506b",
                "sha256": "60e7ee3d669805ee5487a109330eaf914f44e5c022ba54cc8fccacb9484e7a5c"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a3ddbd1647e2ba9e034ba231fe05506b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 79969,
            "upload_time": "2023-10-08T16:10:52",
            "upload_time_iso_8601": "2023-10-08T16:10:52.422991Z",
            "url": "https://files.pythonhosted.org/packages/f7/3d/b2472112e73ac46f0c90269af36777e5c0f86a1c866a5ea273d72edaf90d/autosar_e2e-0.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b2a17561c627a5b86a7ec929bbbbb114c6041b26f0c3fb2e9e4b2b9044696e8",
                "md5": "bf23b21f45f449c55d7e9054ec98ec91",
                "sha256": "e85fe6e34320cb5720719919aa5d8110ca4bdca8560b90661b1e27e58ed2e458"
            },
            "downloads": -1,
            "filename": "autosar-e2e-0.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "bf23b21f45f449c55d7e9054ec98ec91",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 21526,
            "upload_time": "2023-10-08T16:10:53",
            "upload_time_iso_8601": "2023-10-08T16:10:53.801729Z",
            "url": "https://files.pythonhosted.org/packages/3b/2a/17561c627a5b86a7ec929bbbbb114c6041b26f0c3fb2e9e4b2b9044696e8/autosar-e2e-0.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-08 16:10:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zariiii9003",
    "github_project": "autosar-e2e",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "autosar-e2e"
}
        
Elapsed time: 0.12829s