autosar-e2e


Nameautosar-e2e JSON
Version 0.6.1 PyPI version JSON
download
home_pageNone
SummaryPython implementation of the AUTOSAR E2E Protocol
upload_time2024-11-19 18:54:49
maintainerNone
docs_urlNone
authorNone
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, 4, 5 and 7 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": null,
    "name": "autosar-e2e",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "AUTOSAR, E2E, automotive",
    "author": null,
    "author_email": "Artur Drogunow <artur.drogunow@zf.com>",
    "download_url": "https://files.pythonhosted.org/packages/c1/b8/6e566a52093b9224ede91f33b58fd71e3c7c8be4570cccef7ed68b598497/autosar_e2e-0.6.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, 4, 5 and 7 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.6.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": "75e1a4e83af9ef889f90edca20366689a1309403e5f6ef8798e1f4dc8534f926",
                "md5": "6becedc941ac4347ab75dd8438d724ad",
                "sha256": "f98ed74db4d61d41a8a3f27d1968acf9edf45369637b29a353924e33093c2be2"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6becedc941ac4347ab75dd8438d724ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 86436,
            "upload_time": "2024-11-19T18:53:43",
            "upload_time_iso_8601": "2024-11-19T18:53:43.695581Z",
            "url": "https://files.pythonhosted.org/packages/75/e1/a4e83af9ef889f90edca20366689a1309403e5f6ef8798e1f4dc8534f926/autosar_e2e-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "462382f4c96be77f2034dde5ebabd4d6af69aa78c79f669bf9a07b09e6b4ea5e",
                "md5": "061315d08d79c6e647215b577ece88a3",
                "sha256": "7891771d74b1a03c5a9a30e3472db7c527d9c0c2fc720ff49fdf2402f6517534"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "061315d08d79c6e647215b577ece88a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 87098,
            "upload_time": "2024-11-19T18:53:45",
            "upload_time_iso_8601": "2024-11-19T18:53:45.314705Z",
            "url": "https://files.pythonhosted.org/packages/46/23/82f4c96be77f2034dde5ebabd4d6af69aa78c79f669bf9a07b09e6b4ea5e/autosar_e2e-0.6.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83d4939ca477c484c5395562d7ad8c504eaf39c501f78852f91d9dad7faf53c6",
                "md5": "1c4f7610c66b24e74bc2dec19e4f1f23",
                "sha256": "90157c07e4b8a3e6be0d6fe1e3d76051c15efd63e917be8b2ca52f999bc3c259"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1c4f7610c66b24e74bc2dec19e4f1f23",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 95236,
            "upload_time": "2024-11-19T18:53:46",
            "upload_time_iso_8601": "2024-11-19T18:53:46.819033Z",
            "url": "https://files.pythonhosted.org/packages/83/d4/939ca477c484c5395562d7ad8c504eaf39c501f78852f91d9dad7faf53c6/autosar_e2e-0.6.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": "0da84d7353e1545c85c30218c2e12027216eb9c568a4136223b2df67114a18af",
                "md5": "3800caeebd55e882a4c13778a7e5b5b1",
                "sha256": "a8b72e6e38421f8f8a34a5218200404c4a863d2489be7a6bf3de5ccff8f9511b"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.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": "3800caeebd55e882a4c13778a7e5b5b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 93070,
            "upload_time": "2024-11-19T18:53:47",
            "upload_time_iso_8601": "2024-11-19T18:53:47.974779Z",
            "url": "https://files.pythonhosted.org/packages/0d/a8/4d7353e1545c85c30218c2e12027216eb9c568a4136223b2df67114a18af/autosar_e2e-0.6.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": "603fe5c13940e63a5551d7bfa91db2f67854c4ced508319454fe29f29c7e4664",
                "md5": "1ca1afe76df71c42ebf6e67330038edf",
                "sha256": "652e922dd3b55734dc1d961b30dd59a9a59e7399b111e84b9f7d0fbd76bed350"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1ca1afe76df71c42ebf6e67330038edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 95635,
            "upload_time": "2024-11-19T18:53:50",
            "upload_time_iso_8601": "2024-11-19T18:53:50.336765Z",
            "url": "https://files.pythonhosted.org/packages/60/3f/e5c13940e63a5551d7bfa91db2f67854c4ced508319454fe29f29c7e4664/autosar_e2e-0.6.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4964ffd762247819969231d4fee99f656f277d2f6b325ff52d27b0fca3e64183",
                "md5": "b003f96d772d0826b2025a7222bc9bbe",
                "sha256": "7fa3416c514c8971c91708f42a07bae7ce917179f2d3998d4c05f1da5d6bee68"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b003f96d772d0826b2025a7222bc9bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 92895,
            "upload_time": "2024-11-19T18:53:52",
            "upload_time_iso_8601": "2024-11-19T18:53:52.396618Z",
            "url": "https://files.pythonhosted.org/packages/49/64/ffd762247819969231d4fee99f656f277d2f6b325ff52d27b0fca3e64183/autosar_e2e-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adec7b676d3dc4548d6dabe31c4cbc555ee55403a1989097d04c00f981bc123d",
                "md5": "e6e6a0051529702516fc6ed729300cb4",
                "sha256": "fd17125f76dcb50c24e2da81786d52c7cac2e4b69fb011918047739e843da6d1"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e6e6a0051529702516fc6ed729300cb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 103795,
            "upload_time": "2024-11-19T18:53:54",
            "upload_time_iso_8601": "2024-11-19T18:53:54.346440Z",
            "url": "https://files.pythonhosted.org/packages/ad/ec/7b676d3dc4548d6dabe31c4cbc555ee55403a1989097d04c00f981bc123d/autosar_e2e-0.6.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bdd25e81c674bc158a14e340a8f184ad7e79e763b4aaf642b85f49352a6f557",
                "md5": "df0091e9ef8dfbea7045e99fec818f6d",
                "sha256": "bad63591f5bafd5aaf1d61ad1a3747399a7bbdd613b5a6ba623e81693a803b34"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df0091e9ef8dfbea7045e99fec818f6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 105023,
            "upload_time": "2024-11-19T18:53:56",
            "upload_time_iso_8601": "2024-11-19T18:53:56.331987Z",
            "url": "https://files.pythonhosted.org/packages/7b/dd/25e81c674bc158a14e340a8f184ad7e79e763b4aaf642b85f49352a6f557/autosar_e2e-0.6.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99a52425f3f91fbb71147f64cd071dd4e14c204dcf09fe6f021e0110602a676a",
                "md5": "1b75d973089699c3116a7559a5fefd99",
                "sha256": "2346575bdc1043f0022e380c7c632f670299ceb0fd3beb4618c1bc49b84d831f"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b75d973089699c3116a7559a5fefd99",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 86498,
            "upload_time": "2024-11-19T18:53:58",
            "upload_time_iso_8601": "2024-11-19T18:53:58.311973Z",
            "url": "https://files.pythonhosted.org/packages/99/a5/2425f3f91fbb71147f64cd071dd4e14c204dcf09fe6f021e0110602a676a/autosar_e2e-0.6.1-cp311-abi3-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c96e4bc1b446c4e95b37325d4cb8fc8565e3bdbd27ab1286beabd0038b7e6a6",
                "md5": "26c5683654f6563b042af9552733c071",
                "sha256": "6e4ebbcf4cc3700a86bc768bbc45e2daf903afc408e62efd20b11d97704a0aa7"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "26c5683654f6563b042af9552733c071",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 87170,
            "upload_time": "2024-11-19T18:53:59",
            "upload_time_iso_8601": "2024-11-19T18:53:59.940170Z",
            "url": "https://files.pythonhosted.org/packages/4c/96/e4bc1b446c4e95b37325d4cb8fc8565e3bdbd27ab1286beabd0038b7e6a6/autosar_e2e-0.6.1-cp311-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e47fa221605b2cdb353560e17b5a9026f9b99580e01d9234f77e2838ff74c3e2",
                "md5": "9ec7a09455ebb5232a59b7efe375d50f",
                "sha256": "651abecfd92e470a0619d9f6ecc3f6753e77c3b13231896055b090d960149c1e"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9ec7a09455ebb5232a59b7efe375d50f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 95281,
            "upload_time": "2024-11-19T18:54:01",
            "upload_time_iso_8601": "2024-11-19T18:54:01.969234Z",
            "url": "https://files.pythonhosted.org/packages/e4/7f/a221605b2cdb353560e17b5a9026f9b99580e01d9234f77e2838ff74c3e2/autosar_e2e-0.6.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3274810e17edc83f92c7debe8816a413b6a0f2c43f17941adf01156a623af3e",
                "md5": "d7dc50e6b265c6eb7c4861d06f7cd791",
                "sha256": "db1c39d743f6322b29f7160bb9fd423de019e0cea5f3f567f39efcdd659d8f61"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7dc50e6b265c6eb7c4861d06f7cd791",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 93135,
            "upload_time": "2024-11-19T18:54:03",
            "upload_time_iso_8601": "2024-11-19T18:54:03.471523Z",
            "url": "https://files.pythonhosted.org/packages/f3/27/4810e17edc83f92c7debe8816a413b6a0f2c43f17941adf01156a623af3e/autosar_e2e-0.6.1-cp311-abi3-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": "27cc9e5490d28c8becd85d15ee6e05e7156981297477e8d15fa6af6ae6595f8c",
                "md5": "d7a994923bfdff574c2ace9cc5f38822",
                "sha256": "de50666cb82b191e76ecdcf40cbb279f738923908e59c1492c4c59fdad904c62"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d7a994923bfdff574c2ace9cc5f38822",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 95674,
            "upload_time": "2024-11-19T18:54:04",
            "upload_time_iso_8601": "2024-11-19T18:54:04.735288Z",
            "url": "https://files.pythonhosted.org/packages/27/cc/9e5490d28c8becd85d15ee6e05e7156981297477e8d15fa6af6ae6595f8c/autosar_e2e-0.6.1-cp311-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd52aed0d67df0da1b21e5d5815fd19b343e4bcb46279961dc2e427f60ae31d9",
                "md5": "90b315bd9149ed1f61e19cb319feabe1",
                "sha256": "5b9a1c3fac35057f3f217f28de72085c3c951a2af8e7149c4fb55bb79a9d4a08"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90b315bd9149ed1f61e19cb319feabe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 92954,
            "upload_time": "2024-11-19T18:54:06",
            "upload_time_iso_8601": "2024-11-19T18:54:06.086354Z",
            "url": "https://files.pythonhosted.org/packages/cd/52/aed0d67df0da1b21e5d5815fd19b343e4bcb46279961dc2e427f60ae31d9/autosar_e2e-0.6.1-cp311-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07dcb8eb8f51283ea2a722bb86e97a5246e27b24ff3a6a0f5a8a01fe5030dc23",
                "md5": "9c8ea33902a834543396495fee60ce56",
                "sha256": "1a5d5778fa6cf426074cb6e6e690fde91457de8f196db3bc05790a995a4aa4f3"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "9c8ea33902a834543396495fee60ce56",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 103759,
            "upload_time": "2024-11-19T18:54:08",
            "upload_time_iso_8601": "2024-11-19T18:54:08.164119Z",
            "url": "https://files.pythonhosted.org/packages/07/dc/b8eb8f51283ea2a722bb86e97a5246e27b24ff3a6a0f5a8a01fe5030dc23/autosar_e2e-0.6.1-cp311-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ead454a800d4c30e1c53ebe8aa9a47d94896cb6de955be6077ac026d78886cc9",
                "md5": "6390c6ffd045034145fd11aefdb2d4b6",
                "sha256": "fa3d508502924abb5e9364b650524b418b349a13b93cd0f5d265166eb42e6704"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp311-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6390c6ffd045034145fd11aefdb2d4b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 105008,
            "upload_time": "2024-11-19T18:54:09",
            "upload_time_iso_8601": "2024-11-19T18:54:09.601064Z",
            "url": "https://files.pythonhosted.org/packages/ea/d4/54a800d4c30e1c53ebe8aa9a47d94896cb6de955be6077ac026d78886cc9/autosar_e2e-0.6.1-cp311-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "960c62ecfc752f0dca1446e77748b880282e2cddc6454ff520c8c604065a0122",
                "md5": "e6d88b0f596bb35e77e17515edf9638b",
                "sha256": "51ea562c9823842e136bacc9cd593ef6430bcc8e68d7dd741d9f01986330f573"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6d88b0f596bb35e77e17515edf9638b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 86208,
            "upload_time": "2024-11-19T18:54:10",
            "upload_time_iso_8601": "2024-11-19T18:54:10.981708Z",
            "url": "https://files.pythonhosted.org/packages/96/0c/62ecfc752f0dca1446e77748b880282e2cddc6454ff520c8c604065a0122/autosar_e2e-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "871d5d21c00c20f66d2cb5ab23befd6c10559ffbe5dba6fd312437d24395d06d",
                "md5": "417432204b863ac89af39f2c810897a6",
                "sha256": "79e9ac2d070986800756efb9b807ed63efb27968bbe242295f6ce8009118ff84"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "417432204b863ac89af39f2c810897a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 95090,
            "upload_time": "2024-11-19T18:54:13",
            "upload_time_iso_8601": "2024-11-19T18:54:13.033218Z",
            "url": "https://files.pythonhosted.org/packages/87/1d/5d21c00c20f66d2cb5ab23befd6c10559ffbe5dba6fd312437d24395d06d/autosar_e2e-0.6.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": "525171deac84c307d06cb8e7ead3dfb77fdb055cafea834b6d3a92dfeb7491fd",
                "md5": "e2fe970b0b00446eae61a8cd0c894da6",
                "sha256": "b45ff1d832410169f6885b6c3e5e909c33444770c6937f5b151e1478cd17cdee"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.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": "e2fe970b0b00446eae61a8cd0c894da6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 92848,
            "upload_time": "2024-11-19T18:54:14",
            "upload_time_iso_8601": "2024-11-19T18:54:14.201733Z",
            "url": "https://files.pythonhosted.org/packages/52/51/71deac84c307d06cb8e7ead3dfb77fdb055cafea834b6d3a92dfeb7491fd/autosar_e2e-0.6.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": "70b0b861862f4087950951a78acdd0aa061b434ca82c572dee3506b0b2b84683",
                "md5": "a34e1fc4790d1f49d62d414aa9ff58f9",
                "sha256": "ff3beca38e48396dcbd45449d248f07cbcc2f518ace1413bc2adcc8ca3ca124e"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a34e1fc4790d1f49d62d414aa9ff58f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 95499,
            "upload_time": "2024-11-19T18:54:16",
            "upload_time_iso_8601": "2024-11-19T18:54:16.132384Z",
            "url": "https://files.pythonhosted.org/packages/70/b0/b861862f4087950951a78acdd0aa061b434ca82c572dee3506b0b2b84683/autosar_e2e-0.6.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f85b84c4bcff4aa6e75519609b0df7312c71f3ddacb900adc0ff4eec8d560616",
                "md5": "be7f37955fb2462ba6e217032946c588",
                "sha256": "d720b9e5d3c25e966aaef95f7a99586714e07e5c99aa43f71032448441be7eac"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be7f37955fb2462ba6e217032946c588",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 92710,
            "upload_time": "2024-11-19T18:54:17",
            "upload_time_iso_8601": "2024-11-19T18:54:17.511362Z",
            "url": "https://files.pythonhosted.org/packages/f8/5b/84c4bcff4aa6e75519609b0df7312c71f3ddacb900adc0ff4eec8d560616/autosar_e2e-0.6.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45ecc5c6519bb457e2e1af0aa65ddd727d8c068c2323290dbe588abeb51ad37",
                "md5": "bdc1ad5e33ad16fc2b9854e974d7f15f",
                "sha256": "0f6093e3445384bc8448037973aef3e663673b59df2cab430cd7f485d5d181fc"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "bdc1ad5e33ad16fc2b9854e974d7f15f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 103742,
            "upload_time": "2024-11-19T18:54:19",
            "upload_time_iso_8601": "2024-11-19T18:54:19.534168Z",
            "url": "https://files.pythonhosted.org/packages/e4/5e/cc5c6519bb457e2e1af0aa65ddd727d8c068c2323290dbe588abeb51ad37/autosar_e2e-0.6.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8f8ae8b2536459630726e8e36c3b41531a5e6a15b1b4a2c6c6825db04adf067",
                "md5": "af34c5355581dbfbab60579a8affa65d",
                "sha256": "b93b65f247323fc7f630941806dbfd109efb8e906a292ed68b4171bbde03db94"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "af34c5355581dbfbab60579a8affa65d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 104984,
            "upload_time": "2024-11-19T18:54:20",
            "upload_time_iso_8601": "2024-11-19T18:54:20.904667Z",
            "url": "https://files.pythonhosted.org/packages/b8/f8/ae8b2536459630726e8e36c3b41531a5e6a15b1b4a2c6c6825db04adf067/autosar_e2e-0.6.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f537b1b88ddd7bb66515d6ce917db2e55c0c5ccecc9a380eb70a6e6226b69584",
                "md5": "d348719646087af570ce2003a42c788c",
                "sha256": "43d42c035823c94b1062ddcf35850e92095cdcf7c76cb318730b762a0a3c3cb5"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d348719646087af570ce2003a42c788c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 86435,
            "upload_time": "2024-11-19T18:54:22",
            "upload_time_iso_8601": "2024-11-19T18:54:22.944348Z",
            "url": "https://files.pythonhosted.org/packages/f5/37/b1b88ddd7bb66515d6ce917db2e55c0c5ccecc9a380eb70a6e6226b69584/autosar_e2e-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "591032917580d27fa35b069ddd06beb8ec6c581012ed4183c80338f1e63c2ed4",
                "md5": "15345cbc297efbaccc36b602d92f4cb3",
                "sha256": "0c54d0dd8dbacd57ea60fcd66a9590e7f0700de2416bb50f9801a72ee6c2dca8"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "15345cbc297efbaccc36b602d92f4cb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 87101,
            "upload_time": "2024-11-19T18:54:25",
            "upload_time_iso_8601": "2024-11-19T18:54:25.998255Z",
            "url": "https://files.pythonhosted.org/packages/59/10/32917580d27fa35b069ddd06beb8ec6c581012ed4183c80338f1e63c2ed4/autosar_e2e-0.6.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "589ad90bc50a9c29240b4197be7153774cdcff397aa786d3bb9ef7f5d046c7a1",
                "md5": "b9e74816fdffded067b539ec75468dff",
                "sha256": "31d92752cd72abe02ca055a1fffd259887482376444062636eb7066ad7f023eb"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b9e74816fdffded067b539ec75468dff",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 95238,
            "upload_time": "2024-11-19T18:54:27",
            "upload_time_iso_8601": "2024-11-19T18:54:27.467765Z",
            "url": "https://files.pythonhosted.org/packages/58/9a/d90bc50a9c29240b4197be7153774cdcff397aa786d3bb9ef7f5d046c7a1/autosar_e2e-0.6.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": "d3fe795bafbd2f496a5fdd638ee66ccd9eeb59e404bb46fa4e360ab176e0bf6f",
                "md5": "53f846864ac60b6580622ab53173cd29",
                "sha256": "51841e635e4b2eee4204d03bcbd8c6e84ca611dac3b9c2e1c5a0ec22ac8af833"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.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": "53f846864ac60b6580622ab53173cd29",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 93070,
            "upload_time": "2024-11-19T18:54:28",
            "upload_time_iso_8601": "2024-11-19T18:54:28.800319Z",
            "url": "https://files.pythonhosted.org/packages/d3/fe/795bafbd2f496a5fdd638ee66ccd9eeb59e404bb46fa4e360ab176e0bf6f/autosar_e2e-0.6.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": "b4ab7c7e29285470ccf67263c57a27acd7fee8b54eebe72ffe21cfc36d82bae1",
                "md5": "96db8619121df68954143fa322daf582",
                "sha256": "f179166885b9dd970755f8795a69251de70e55713a7ca8d9112c67babc12d37c"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "96db8619121df68954143fa322daf582",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 95635,
            "upload_time": "2024-11-19T18:54:30",
            "upload_time_iso_8601": "2024-11-19T18:54:30.159723Z",
            "url": "https://files.pythonhosted.org/packages/b4/ab/7c7e29285470ccf67263c57a27acd7fee8b54eebe72ffe21cfc36d82bae1/autosar_e2e-0.6.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "365f754d8f82ec63a504f95d05327159572a44efe36b3b3fdf15f218b362d69f",
                "md5": "06487929aa4b93aa9c77385ef484a8a1",
                "sha256": "da458ca72aa16e0853c230efa86d8bda119c7716e75a3c6382e0658a814df113"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06487929aa4b93aa9c77385ef484a8a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 92895,
            "upload_time": "2024-11-19T18:54:32",
            "upload_time_iso_8601": "2024-11-19T18:54:32.081128Z",
            "url": "https://files.pythonhosted.org/packages/36/5f/754d8f82ec63a504f95d05327159572a44efe36b3b3fdf15f218b362d69f/autosar_e2e-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74273b33cdf9c08af487b3cecdfb49ac078dda30cb38c2f106090c69699f0f94",
                "md5": "dda08769075d6e5076f4e0126723776c",
                "sha256": "86f69c5ecfe4f8b863d97ee69abf8831683bce112f2d2c7fc0825f4bd2a8e886"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "dda08769075d6e5076f4e0126723776c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 103849,
            "upload_time": "2024-11-19T18:54:33",
            "upload_time_iso_8601": "2024-11-19T18:54:33.425264Z",
            "url": "https://files.pythonhosted.org/packages/74/27/3b33cdf9c08af487b3cecdfb49ac078dda30cb38c2f106090c69699f0f94/autosar_e2e-0.6.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17b73bd034ec6d152d9b47f7a2df787bc85deb3184a71faf920f9fc59afc3e22",
                "md5": "22e0f7a795374c90861d7077f2d45906",
                "sha256": "d20e24eaea6c393d91af55df71b8d239dfb6a4f65d17fb760b36dc5307d756a3"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "22e0f7a795374c90861d7077f2d45906",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 105086,
            "upload_time": "2024-11-19T18:54:35",
            "upload_time_iso_8601": "2024-11-19T18:54:35.002482Z",
            "url": "https://files.pythonhosted.org/packages/17/b7/3bd034ec6d152d9b47f7a2df787bc85deb3184a71faf920f9fc59afc3e22/autosar_e2e-0.6.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58c92c375268d20d2c2edfe2c2dd0e9d8e2758687781c8eaaaaf6b3913422ebe",
                "md5": "7d8f61e011eb869f738cec083fee6a9f",
                "sha256": "8c4afeee5bd1d3afee6baa210b14dfda4d0907f0f161c25b2ac192bd4a75cf83"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d8f61e011eb869f738cec083fee6a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 86436,
            "upload_time": "2024-11-19T18:54:36",
            "upload_time_iso_8601": "2024-11-19T18:54:36.352206Z",
            "url": "https://files.pythonhosted.org/packages/58/c9/2c375268d20d2c2edfe2c2dd0e9d8e2758687781c8eaaaaf6b3913422ebe/autosar_e2e-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64130a41be312a246570ea1852a4c3fa227ede78c3b82b9d585779d835522c91",
                "md5": "0be0f1da8c8cec620bfa600af74e5561",
                "sha256": "b8cff0f56922b7a1372c8bf28494e464d82f897e03c1a6c82215ad0fe319c1ef"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0be0f1da8c8cec620bfa600af74e5561",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 87098,
            "upload_time": "2024-11-19T18:54:37",
            "upload_time_iso_8601": "2024-11-19T18:54:37.669101Z",
            "url": "https://files.pythonhosted.org/packages/64/13/0a41be312a246570ea1852a4c3fa227ede78c3b82b9d585779d835522c91/autosar_e2e-0.6.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abd2f311f23a9b37e6a708b8baccc6860dda90c131bea16afcaf726e63c26e2c",
                "md5": "9d5516dd4dc895b9fe09a3407397c7c2",
                "sha256": "a2da139d058a0338cf74662ef76f990bc7179fe3e3a0ff2f19dd5c83d56f83c8"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9d5516dd4dc895b9fe09a3407397c7c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 95238,
            "upload_time": "2024-11-19T18:54:38",
            "upload_time_iso_8601": "2024-11-19T18:54:38.984569Z",
            "url": "https://files.pythonhosted.org/packages/ab/d2/f311f23a9b37e6a708b8baccc6860dda90c131bea16afcaf726e63c26e2c/autosar_e2e-0.6.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": "b64ef382ef4b065c14f732d96d3d0578d915021e1ee8ab6890792d0d0122c121",
                "md5": "0be267317049e7b0fcf69679aa9868ff",
                "sha256": "e4596428cd53db8433f769e4c0933a0c1a7b993c3505851f70ed880948a55f0c"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.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": "0be267317049e7b0fcf69679aa9868ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 93070,
            "upload_time": "2024-11-19T18:54:40",
            "upload_time_iso_8601": "2024-11-19T18:54:40.578063Z",
            "url": "https://files.pythonhosted.org/packages/b6/4e/f382ef4b065c14f732d96d3d0578d915021e1ee8ab6890792d0d0122c121/autosar_e2e-0.6.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": "ad0e0dada5afa41d6f1104a052c643a7682e43fcfe9bdfdbdf87a84d5e7f0f9e",
                "md5": "7ba807f6af6df7f98d426b942400f165",
                "sha256": "593c56e2489c12a8a796e864409b1abda5270ba988484a41b31ea3334c713ae5"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7ba807f6af6df7f98d426b942400f165",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 95635,
            "upload_time": "2024-11-19T18:54:41",
            "upload_time_iso_8601": "2024-11-19T18:54:41.875528Z",
            "url": "https://files.pythonhosted.org/packages/ad/0e/0dada5afa41d6f1104a052c643a7682e43fcfe9bdfdbdf87a84d5e7f0f9e/autosar_e2e-0.6.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5211786975ff2e2dcd3a79db729557a8b9a1f9fc7137f05036b2e36297bc25f2",
                "md5": "9ea2084f1938b430c3760b3745f85412",
                "sha256": "d06a9a1aa66221517fd96a01618c4e37c9f2b049054e33dfbfb7bc35faa40526"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ea2084f1938b430c3760b3745f85412",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 92894,
            "upload_time": "2024-11-19T18:54:43",
            "upload_time_iso_8601": "2024-11-19T18:54:43.204446Z",
            "url": "https://files.pythonhosted.org/packages/52/11/786975ff2e2dcd3a79db729557a8b9a1f9fc7137f05036b2e36297bc25f2/autosar_e2e-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8022bc766157636dbab906c2b3f06aeb763827bdd49d40a8261a81592d182b32",
                "md5": "47fe2a4714eb279f52d713cee03072e4",
                "sha256": "d642b3f515f8be460e3a2ca54937cd8e3f9bd1251234435c83db5ef037c43df4"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "47fe2a4714eb279f52d713cee03072e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 103857,
            "upload_time": "2024-11-19T18:54:45",
            "upload_time_iso_8601": "2024-11-19T18:54:45.974445Z",
            "url": "https://files.pythonhosted.org/packages/80/22/bc766157636dbab906c2b3f06aeb763827bdd49d40a8261a81592d182b32/autosar_e2e-0.6.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "396b24d01881f3865d331cc966df21af1e210c473467a351b683bf5a087e81f6",
                "md5": "e8b8c78a33063e3ac2c90f4824d28710",
                "sha256": "77df7aeb9f4126812a26622381b6f320b1eb81feb7a383b9a11a32c17e4b2d34"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e8b8c78a33063e3ac2c90f4824d28710",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 105087,
            "upload_time": "2024-11-19T18:54:47",
            "upload_time_iso_8601": "2024-11-19T18:54:47.317588Z",
            "url": "https://files.pythonhosted.org/packages/39/6b/24d01881f3865d331cc966df21af1e210c473467a351b683bf5a087e81f6/autosar_e2e-0.6.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1b86e566a52093b9224ede91f33b58fd71e3c7c8be4570cccef7ed68b598497",
                "md5": "cbbde2c494b8ebd911e1e4620d044565",
                "sha256": "150476124a65d42d1dd41921820bd87e690e819092e4dd1a8eba1fdda1d49021"
            },
            "downloads": -1,
            "filename": "autosar_e2e-0.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "cbbde2c494b8ebd911e1e4620d044565",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 28693,
            "upload_time": "2024-11-19T18:54:49",
            "upload_time_iso_8601": "2024-11-19T18:54:49.247141Z",
            "url": "https://files.pythonhosted.org/packages/c1/b8/6e566a52093b9224ede91f33b58fd71e3c7c8be4570cccef7ed68b598497/autosar_e2e-0.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-19 18:54:49",
    "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: 3.21732s