Skip to main content

Python implementation of the AUTOSAR E2E Protocol

Project description

autosar-e2e

PyPI - Version PyPI - Python Version Documentation Status

The documentation is available here.


Table of Contents

Description

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

Installation

pip install autosar-e2e

Usage

CRC example

import e2e
crc: int = e2e.crc.calculate_crc8_h2f(b"\x00\x00\x00\x00")

E2E Profile 2

import e2e
# create data
data = bytearray(b"\x00" *  8)
data_id_list = b"\x00" * 16
# increment counter and calculate CRC inplace
e2e.p02.e2e_p02_protect(data, data_id_list, increment_counter=True)
# check CRC
crc_correct: bool = e2e.p02.e2e_p02_check(data, data_id_list)

Test

uvx tox

Build

uv build
uvx twine check dist/*

License

autosar-e2e is distributed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autosar_e2e-1.0.0.tar.gz (33.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

autosar_e2e-1.0.0-pp311-pypy311_pp73-win_amd64.whl (112.0 kB view details)

Uploaded PyPyWindows x86-64

autosar_e2e-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (92.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (83.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

autosar_e2e-1.0.0-cp314-cp314t-win_amd64.whl (109.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

autosar_e2e-1.0.0-cp314-cp314t-win32.whl (107.4 kB view details)

Uploaded CPython 3.14tWindows x86

autosar_e2e-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

autosar_e2e-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (92.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

autosar_e2e-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (84.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

autosar_e2e-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (83.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

autosar_e2e-1.0.0-cp311-abi3-win_amd64.whl (107.1 kB view details)

Uploaded CPython 3.11+Windows x86-64

autosar_e2e-1.0.0-cp311-abi3-win32.whl (105.2 kB view details)

Uploaded CPython 3.11+Windows x86

autosar_e2e-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl (91.7 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

autosar_e2e-1.0.0-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (91.8 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

autosar_e2e-1.0.0-cp311-abi3-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

autosar_e2e-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

autosar_e2e-1.0.0-cp310-cp310-win_amd64.whl (107.5 kB view details)

Uploaded CPython 3.10Windows x86-64

autosar_e2e-1.0.0-cp310-cp310-win32.whl (105.6 kB view details)

Uploaded CPython 3.10Windows x86

autosar_e2e-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (92.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

autosar_e2e-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

autosar_e2e-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

autosar_e2e-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

autosar_e2e-1.0.0-cp39-cp39-win_amd64.whl (107.6 kB view details)

Uploaded CPython 3.9Windows x86-64

autosar_e2e-1.0.0-cp39-cp39-win32.whl (105.7 kB view details)

Uploaded CPython 3.9Windows x86

autosar_e2e-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

autosar_e2e-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

autosar_e2e-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (84.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

autosar_e2e-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

autosar_e2e-1.0.0-cp38-cp38-win_amd64.whl (107.6 kB view details)

Uploaded CPython 3.8Windows x86-64

autosar_e2e-1.0.0-cp38-cp38-win32.whl (105.7 kB view details)

Uploaded CPython 3.8Windows x86

autosar_e2e-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

autosar_e2e-1.0.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

autosar_e2e-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

autosar_e2e-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file autosar_e2e-1.0.0.tar.gz.

File metadata

  • Download URL: autosar_e2e-1.0.0.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0.tar.gz
Algorithm Hash digest
SHA256 e740c9896000a164769c8d4294cdb0504b76d7728e571e11d2e8c1d69967d932
MD5 27714df32f7ef7802a368a293ef1442b
BLAKE2b-256 eaf3680bf61cf36745364fc3f74412566a90b358f0398fd56d2e1b2531dce3d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0.tar.gz:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bbfcf79d94dc915bd88c64832d69dc702705110cbed9f9dc3ebbb56eb06ba2ee
MD5 b14bb3ee3ed5ddab4234931025529895
BLAKE2b-256 6df049d232e36bb304d0ca1762f60a531f173653d2fcbb7d77bf7df1c21d087b

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 edc786fd6bb41de6002d08aa7925f4a3285ea2f54a7f99695666f98cc3d349df
MD5 669b9e87cdf44f67f59766a1300d8826
BLAKE2b-256 dd1d49ea95487cf9804a18703c73a96b8b1705c7322d63f2bd6f1e54fd79afa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3abab8cad610734c40690285a9f14236e08e345dbf8a21082a4282be8000e5c2
MD5 e0db437e05960c9777b3fe405cd5057a
BLAKE2b-256 c11d1d02b1f994985b1813e6cece75cb5d10a9317cdeca2b021d53378645a1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b2a3a785e99eaa95995aa68b33eb6659f349aeef1d478ca939202403671037da
MD5 7b51b17701fd9cbc78791dd0c9fcbf1f
BLAKE2b-256 be3ed6d31bd2b7d18868a35f0b9cc1548b3a7c72777a7baa5a27c131a618770f

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ca03b75bafe6e4c393f3b6d55a76086d59adc2f761d7becd62bae98253fb23a6
MD5 c310670ee2f3b47426d70eaadd85bae9
BLAKE2b-256 d2f9cdaffd2a348ab20f002a229d970a0bafca97c24e97c90ee46d1b7fec8a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6e82b311df4c25d74b31de6f8c63f18c101f290d6c775d38f47c987dee6ac326
MD5 e5ec7e08e9b7e7147dd5b6bac10b1578
BLAKE2b-256 86807b9af9a14cd9b0f354d39f97e5912e64bd441475ecc695dbe74e910768c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp314-cp314t-win32.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0766cf5e4741b867a34e7c680f099f67ddd3c4cf861b268ff901074eed162070
MD5 02411c3eba86a685ff74417f7fa10fe5
BLAKE2b-256 cfa195856a738fb5b421c57698e877e581c20b7c33c7ba107121af47af37f707

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f8df1346d7faa66d872247fcb41d48365bf267a268d3f9da1f1353425f584938
MD5 18a4f80b9f271de36bd35c740505367a
BLAKE2b-256 4d6dec3e03eb1c820f1b71abb245ff604ebd97216724c26e7fcc62233dafc281

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e87f8f440b814e4a5bb59b0d81fdc8c2992ddb03e521005d84f7bbab3d36f8c6
MD5 bb03e46f9c453b79258aa9529f35b007
BLAKE2b-256 53efe20e9cca639229cfa60081c2fc8246852ee3c210d87271ffe8861fcead82

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6ed93214cb170d7ca3248ef1e93d6d6c0997f68f89468932d9629d82229fc71
MD5 baa0847db8d703892f9b68dd77ca15c3
BLAKE2b-256 1c0fa6df2a4bf79c4f391bec74e9a6fa8b02aafde049a3e79381766a104c4f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 107.1 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b73245f7dcf93a5520831183eeb73971cb28feeb671921b34e862e40a396d03c
MD5 a2f885e417c4284b40fbbeb520d589c4
BLAKE2b-256 bdd0540cbc1182cc5c8c1aab8214e496d55b37c0be9e4a2184badb82479da532

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp311-abi3-win_amd64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp311-abi3-win32.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 105.2 kB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 28a97c3d913daa9ad5b1f76898c336ba2e1edb489af7e42a595318c159decc80
MD5 9c63e74df344d8521d837aa26813e24e
BLAKE2b-256 8909dd4e70228fbbc60e43ac39ca333adcda5f0110bfa774f66b93767e9bfd55

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp311-abi3-win32.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21b610d9b21060c06716f56f2b0021dc8fc9f132456bcd1e851d533bbbeabf5e
MD5 598c4e6bcba3383ae4c97ecde29aef6b
BLAKE2b-256 a82a54b26fd299b1dab7b4a3db5ea86325bdebd5ded6a8c65119e9de2118f419

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 54486c97eece79804b37cf4d7ec09db1f08b933197c0e4d869e18058308ff824
MD5 5664395414ff7a7734b83507ebdee895
BLAKE2b-256 4c017d37af183ef08b7c1d2226d34ce2f369147db3e9484577802f457cb29438

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e49d3158e54167304dc2f0a2bf6f0dbebbdf7dff0ae24a39cf839463b0fd6fda
MD5 40b15f86aedc8e8a5d08ec6570224aeb
BLAKE2b-256 389b1fb70b68e372bd50aab7ee5abcb8021827866a7911692f18917d9847bf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2f54283523a4518c9504dbd8b71ca2a505ea1566721759f3c022b30b0bcf12f
MD5 367152b4c0eba6bc15adfa7bcd8c8110
BLAKE2b-256 f18cf8a747af5a0f79709fc32a45025492977096adb62d46a9e3a51c7d3e4743

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d58ea69c6245794c81e3c5ea4341aae612b565e606983fc51d5462ed8008d980
MD5 c9d5e764bc89ae378469f2b3d9a1d87e
BLAKE2b-256 8ecfed65e57ce0fa3548536212c7c20297eccb4b7e6227ff218383a173a0e888

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 105.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eed661ec16f5f9b4dccdb8bd87a5fce1f15fadc619cb41780f7a808bd64d7e18
MD5 3d2a811cbba17bc7dc7daa3b9ead2e52
BLAKE2b-256 f3f913aa7f7f0b6c197375e3dc778b7872114fbadb5389b46e2b170de78d587c

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp310-cp310-win32.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c847523ac7428226c6e2f222ad03c966c35a3c68c9967bbf176e592ea4e90d6
MD5 a587f8b8b2ccd9105a689c1adbc90fca
BLAKE2b-256 13a238895b15937a3d82e07fc09c43c141e7915863c92b923ee105ae14be66ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8c7a87043b44046450fe515080a6e3423848477dae372eea6b4cb8ad248aead4
MD5 60e9b98517a51ca5dd23450816263901
BLAKE2b-256 17ed9bb3a5a70bf7858a4490e443da07618bf9f3a0f2dde4f8670bc441c9df7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 271aefc87c5a1951276990eb7ed9696ac2aa7fc24ffdcf3ef2ecca172f7c8a38
MD5 ecc13f7ce9c3e9a6e804017cf1ac68e4
BLAKE2b-256 20d8a6c65a184888da8e3b59367a5c8372ca9c657d109ad05576b10380c18365

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 332cf662c4e50db6ff13baa535f86096dadcabda88027792231038c815f6f994
MD5 8e9010e378503ec766b1241f7862bb1c
BLAKE2b-256 d86528c7b8301c90d04542fb268e585f4d4858a84abeb84d629e8a2d319f1961

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 107.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f173543173a5c8ecda80b9dc00332c22d756e249ed0d0a44a850dd4725e00e50
MD5 9def1e4a4e46874f7a1231613c595383
BLAKE2b-256 1a6f26333d7497ae35f6fd08e138b5093810a7d1ce9c60694a2ec72c1a2a3264

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ccbb8a5a3ccdaf9aaaac2d5dd9065d19a530025fe7c30e7ee850dfd1d9389670
MD5 0c90bab0bf242fb8021b9241fbb3769d
BLAKE2b-256 1869473c4a9fa01ffdd18f43195adb9450b89dfaa57eaaf7c954abd57e417ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp39-cp39-win32.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b23baba6c3f7e5fbf3e41fd25d4d87af199365ab637c01b53dbbc61564f6f00d
MD5 819fca77885c419a3c4839464e8da6f3
BLAKE2b-256 342a03d745952147a1d8c2f1c305fdd9652a8871639806bcc041c27c34dd1ac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c30e60ee9e9c24fd3fa61d31abd529e73fd49ed026d0b09d8bd4d142aca549ce
MD5 f33d3c3cc0dc0ab574492bb07d48604e
BLAKE2b-256 0f2eb3a3fc74144a9a77d585f061c73ab3a0d36ce5787eb3b081484ca6d54ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f19546e1bf16b5a01ac3ab7b79abf35dbdc3002a07cf1c9662a2d9e60cf3c6
MD5 a9fb3fe61b2320f2d580dce3aa7f59e7
BLAKE2b-256 e5617dedbb92cd66bec2804a591e0112408d1b0cb1e497df6c4ed45125020471

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7b8b00d936663e95c355e3f6e7aecb0dfc4f04148eba309d09f57897239b98e
MD5 b2f24d291114a37be90eb29e8937570b
BLAKE2b-256 e70b938e784b432548feb1d31c06a4ccae9e5a7e93bf9483afba233e9a00894a

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 107.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b186699e623d51bff4a10889549fc949afa2fb3f7284d7848378ac17a74c395
MD5 02be2bacc2a99280c6334548d65f837a
BLAKE2b-256 4034477ac0aedb8290fb28cad1d31abe20c40950574c74a452df398d0c0ae916

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp38-cp38-win_amd64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: autosar_e2e-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for autosar_e2e-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d61ea4255a39f330a4a68405e2a2377a2df5a7589b142a2aa827f5c780bb9155
MD5 daed75901958e64f3da9c2f4e65872e7
BLAKE2b-256 4763da3919b78480f171b8e38fc63311502e02e9e9167af1975df0f411e87584

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp38-cp38-win32.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d590ba7bed384f84d386bc8953ef5c89180066ea2ab7abc56e526241fbd606a
MD5 72466d79f0b2758ff78cc30a2336c553
BLAKE2b-256 88e310679fd3fce46793b016a4e4cc2920af46305198cc8281b1935138c511b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 956ded60819b0b2346565fb1d89ee005f614e4ed5061d968b772f7b3a535b1e4
MD5 b0ad84f1d018305a6672fc82ffce2978
BLAKE2b-256 4dbfb9c8484a081cb90b06c8cf296c3a86b38c770280e49bf97f8906ffb0f9e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66bc6b1858ca0c64da9186571be88e786be20c526698c10195dbb01ce123f42e
MD5 ca701d6a098baa926347a80f5b06af3c
BLAKE2b-256 e9794b2c12891467d2b2be63aefe8e02b2f16ba145daa1bd72caca0fb6a6f35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file autosar_e2e-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for autosar_e2e-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 537719ad092c54fa565a360b5830ec45393796690ce05a00b6202d385d7b86ae
MD5 ea6c58e5e717d64483585b57f37c8856
BLAKE2b-256 0b4ed9ca7655e129f59f4f35713bc40e5cc868c468a224a1de76bd1e1c1e372c

See more details on using hashes here.

Provenance

The following attestation bundles were made for autosar_e2e-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on zariiii9003/autosar-e2e

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page