Skip to main content

read, write and modify Autosar arxml data using Python

Project description

autosar-data-py

PyPI version Github Actions codecov

Python bindings for autosar-data

Features

This crate implements Python bindings for autosar-data using PyO3. This allows all the features of autosar-data to be used from python code:

  • read and write arxml files
  • fully validate all data when it is loaded in strict mode
  • non-strict mode so that invalid but structurally sound data can be loaded
  • various element operations to modify and create sub-elements, data and attributes
  • support for Autosar paths and cross references
  • supports Autosar version 4.0.1 and up.

API documentation

API documentation is located here: https://danielt.github.io/autosar-data-py/

Example

Load data from a file

from autosar_data import *

# load a file
model = AutosarModel()
(arxmlfile, warnings) = model.load_file("filename.arxml", False)

Load data from text

from autosar_data import *
# alternatively: load a buffer
model = AutosarModel()
filebuf = """<?xml version="1.0" encoding="utf-8"?>
    <AUTOSAR xsi:schemaLocation="http://autosar.org/schema/r4.0 AUTOSAR_00050.xsd" xmlns="http://autosar.org/schema/r4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <AR-PACKAGES><AR-PACKAGE><SHORT-NAME>Pkg</SHORT-NAME></AR-PACKAGE></AR-PACKAGES></AUTOSAR>"""
(arxmlfile, warnings) = model.load_buffer(filebuf, "filename.arxml", False)

Create data from scratch

from autosar_data import *
# alternatively: create a new data model from scratch
model = AutosarModel()

# create a file in the model
file1 = model.create_file("filename.arxml", AutosarVersion.AUTOSAR_4_3_0)
# a model can consist of multiple files - elements appear in all of them by default, unless restrictions are set
file2 = model.create_file("filename2.arxml", AutosarVersion.AUTOSAR_00051)

# initially the model only has its root element, <AUTOSAR>. Create some elements
el_elements = model.root_element \
    .create_sub_element("AR-PACKAGES") \
    .create_named_sub_element("AR-PACKAGE", "Pkg") \
    .create_sub_element("ELEMENTS")

# create some more elements
el_fibex_element_ref = el_elements \
    .create_named_sub_element("SYSTEM", "System") \
    .create_sub_element("FIBEX-ELEMENTS") \
    .create_sub_element("FIBEX-ELEMENT-REF-CONDITIONAL") \
    .create_sub_element("FIBEX-ELEMENT-REF")
el_can_cluster = model.root_element \
    .get_sub_element("AR-PACKAGES") \
    .create_named_sub_element("AR-PACKAGE", "Pkg2") \
    .create_sub_element("ELEMENTS") \
    .create_named_sub_element("CAN-CLUSTER", "CanCluster")

# set a cross reference
el_fibex_element_ref.reference_target = el_can_cluster

# check the cross reference
el_fibex_element_ref.character_data
# '/Pkg2/CanCluster'
el_fibex_element_ref.reference_target == el_can_cluster
# True

# get an attribute
el_fibex_element_ref.attribute_value("DEST")
# EnumItem.CanCluster
model.root_element.attribute_value("xmlns")
# 'http://autosar.org/schema/r4.0'

# set an attribute value
el_fibex_element_ref.set_attribute("DEST", "I-SIGNAL")
# setting the DEST of the reference to an invalid value has invalidated the
# reference, so accessing el_fibex_element_ref.reference_target will now cause an exception

el_can_cluster.set_attribute("UUID", "1234567890abcdefg")

# get the current xml text of the model:
print(file1.serialize())
# this prints "<?xml version="1.0" encoding="utf-8"?>\n<AUTOSAR ..."

# write all the files in the model - this will create filename.arxml and filename2.arxml with identical content
model.write()

# get the autosar paths of all elements in the model
paths = model.identifiable_elements
# paths = ['/Pkg', '/Pkg/System', '/Pkg2', '/Pkg2/CanCluster']

# get an element by its path
el_ar_package1 = model.get_element_by_path("/Pkg")
el_ar_package2 = model.get_element_by_path("/Pkg2")
el_system = model.get_element_by_path("/Pkg/System")

# restrict the packages to only appear in one file each
el_ar_package1.remove_from_file(file2)
el_ar_package2.remove_from_file(file1)

# write all the files in the model - now the content is different
model.write()

Working with data

from autosar_data import *

model = AutosarModel()
(arxmlfile, warnings) = model.load_file("somefile.arxml", False)

# display all the triggered PDUs in the file
for (depth, element) in model.elements_dfs:
    if element.element_name == "PDU-TRIGGERING":
        pdu = element.get_sub_element("I-PDU-REF").reference_target
        print(str.format("PDU: <{}> = {}", pdu.element_name, pdu.item_name))

Development

  • maturin must be installed: pip install maturin if it isn't
  • create a venv in the cloned source: python -m venv .venv
  • build the wheel and directly install it in the venv: maturin develop
  • activate the venv in a shell: source .venv/bin/activate or .venv\Scripts\Activate.ps1
  • run python in the shell with the venv

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_data-0.15.0.tar.gz (264.8 kB view details)

Uploaded Source

Built Distributions

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

autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-cp314-cp314-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86-64

autosar_data-0.15.0-cp314-cp314-win32.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86

autosar_data-0.15.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

autosar_data-0.15.0-cp314-cp314-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

autosar_data-0.15.0-cp314-cp314-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-cp314-cp314-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

autosar_data-0.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

autosar_data-0.15.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

autosar_data-0.15.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

autosar_data-0.15.0-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

autosar_data-0.15.0-cp314-cp314-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

autosar_data-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

autosar_data-0.15.0-cp313-cp313-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

autosar_data-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

autosar_data-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.15.0-cp313-cp313-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

autosar_data-0.15.0-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

autosar_data-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

autosar_data-0.15.0-cp312-cp312-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

autosar_data-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

autosar_data-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.15.0-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

autosar_data-0.15.0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

autosar_data-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

autosar_data-0.15.0-cp311-cp311-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

autosar_data-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

autosar_data-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

autosar_data-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

autosar_data-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

autosar_data-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

autosar_data-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

autosar_data-0.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

autosar_data-0.15.0-cp311-cp311-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file autosar_data-0.15.0.tar.gz.

File metadata

  • Download URL: autosar_data-0.15.0.tar.gz
  • Upload date:
  • Size: 264.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for autosar_data-0.15.0.tar.gz
Algorithm Hash digest
SHA256 71617483b107bf417b2f0a00f109a58054643ed6d99419742d08eb92ca6ae48b
MD5 dfd7c5270d41fe5477c6eafb2be4e280
BLAKE2b-256 0e57969bedb047837d5073b0a5711720a044f3bba49be40d3daa7f492838d25d

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a61f9a96a58a5a27072cd98e08e4e1c2d56dcccae253257bbaa3b9b150814c4c
MD5 e9967f1ae5fd866c7e27c3faa11323f5
BLAKE2b-256 7611d4b4770747205b3a59276525866758490cb891bb371513561dd0da8a89ea

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5249513aa6e57fa2d7d1cf4a6f6f0b0514265aee59231130c35f682a30d4ea80
MD5 e765bef704056b569657442100d934b5
BLAKE2b-256 209f3d686efa9408a8f2e958af207776a8e8efb88a3c07a3ae8008bc68cb8b57

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 006f701a0e49130d73e8f66b869fcc9410e5c4126fbf9651d4238d2a484dd330
MD5 25544cb64237b895ea100a0b5369ab04
BLAKE2b-256 6cda26b7232371860a9e2a52aef0de0a0f2372bfcfcb7cad13e2a72e01be6c33

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29f81efa08f5218d2be35d7790d41c441a6f0fe10aefe9baae91b1cc20fba47d
MD5 c1e7165a46e495ccacac88aba6103b06
BLAKE2b-256 5029df15bc91325cbcff40b6d8be50729836b7680425dd686afd08cef45ccc98

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85c33633e63d9a5e2feb995eebd1f605fcd438f7e6e979283bf2a77d062a0d98
MD5 33e7bf7a93901c5d21a94c9d485111ca
BLAKE2b-256 3ad1697c203870b13fd7ad22d084121463f6d1d76dbeeda4f7e127bb1bf6bb01

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 712cd97a7e09e0c1ef6be899ef6897f735c6ee6a8f934bec35c5f636daa24650
MD5 6f16aaace955d506d3cd4ffe3f9f8d3a
BLAKE2b-256 744bd4573878ee9431a6dd6546b489607bf0ee726ea690efa8f708eb50cb39bc

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93c4a1f070daf71db6d68cc8cee0f818dc558a393719b6b0c87e9385f6cdc5bb
MD5 a7520b448e5ae3c08ee36cac80fedba1
BLAKE2b-256 0c17107d3e84aebdd6d0a3d05e987ac95b810850becd5382fa9121e606f2c6b4

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19f6aee974c04bf1c2af736017063ac2f77b67cb5d7e9b1cee207e7906f7777a
MD5 365187133816187efd327b7a5e771347
BLAKE2b-256 47682d6d02b183105ea5bcd9413dc098e0b303738fc0174525fbbd99ee0b08d1

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf0faf1c53ab335ada96879ede569767c677ac8ad2b0b181c7d242ee4d2b743f
MD5 672fff40d941b9db1e6e50fe08da7f15
BLAKE2b-256 afb1fb040e521b2dad34ec9dafb2a8236b05f0e128f14174b654df0994520d04

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 472063b3c0c65d931f9db88897782d73c96bd8feb662abbf7f52dec476ab6fdb
MD5 98d3154bffd3192e1e52b97c5a474e6c
BLAKE2b-256 323c8d12cde5b9afb70a071b22009f5c2d82fdfb0b7948d2e082b334135f2ec1

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7739f8c436c9cc6e92a63ab659ffec2579d62f8711fc551bf686918dbc534305
MD5 fb13998b5568d7af64e522ac6af1edd1
BLAKE2b-256 85935b7a4d71176de8de42a3571ef7218e8bdea13f93f9fad62caf342dab1a6a

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98b4953eb1f61f189fefba70f2820a816ee6be136d5c4271c91291e753164a20
MD5 c2b6e99398ae629a79630e6be6ea6828
BLAKE2b-256 e82733a4675a91d5a1f7fe1a0b7550985d28226ea2b06c5e63eb3c159575f469

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ac9e36228cc9cc2803887c2435b005679b9fb627d5c3a17d0deb1837fe80f2b
MD5 17222d2fc433ccab0d2744b912655707
BLAKE2b-256 cad5ac383b61c0821d7d314c8e282b6fb302a37e9a238419e5a94cfe956e606e

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7eb14ec2301cef35cc7fee118f3fc803f2781b04a69b1e89ae4ca0de8b12e8d
MD5 bb3644a23755e2c1af835b5b866350c8
BLAKE2b-256 9c37b5fef60d2ab4d88c266471f925585b583b2985d27058e0a441ac462853b5

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4103dd0b409f412347dc0f80db84ca997118f9f7d34aaa011d3827ee3b148122
MD5 7aa79623977fd5e8a1d493e0da131e15
BLAKE2b-256 482b942d647f7c0306b2414a32a354e7f1936259241cac20d236ee6e0c725cd5

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97e5f3ec0f3feff26d6fac0a14c59124db810d0de99d7e8cd2ebdc929b405141
MD5 bada3862a7b34423857f2f167306c61a
BLAKE2b-256 8245fce35f5fd7d7152520a846a5d8dd057d58db5e20cfc4a90b9ed09226e369

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7086e7643b4a34af48f992ae896d6ef1832d4685c6343f87c0f2b4dc0db0aa0
MD5 1c3e3e505fe3dc36a39c63c65fd5d3b7
BLAKE2b-256 875ffaf43097300731e2bf3243f9200e036be2c31e4f75953b17d9ae09d5dd64

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58faf5adcff28f80e51621249ce9ff21d418772ecbc72e7b3ba256adabdba71f
MD5 032cbbf0d96f1a039f77439869a05650
BLAKE2b-256 5e47ed31b54a277703d33f123683fa438d09d3c6ed3296701452e3b314d9a861

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ef97f2f31cf61ff3357de99e2f7c27fca713a846016138a3f148d7960c258ae1
MD5 25819da583442e52e3b93a694188f4a7
BLAKE2b-256 eff67dce3b60f6e89873d62a7288be02dea30cc92c79e5d3a123ecc9112fa471

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1904f9ad2312970b6032b5e2c393f04f8fec5954cdf88b8d269677725c876eaa
MD5 3aaa605929fb6da9e76058224c816985
BLAKE2b-256 8e71159f2e7f94c7aaa9659f66b5647a525254804918a7139cd3d2eaca599bb8

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e33adf6459622600b9072cafaa5445dae1b5efb6fa57385536748b32c2a81a5
MD5 cc32b56aae543e7f930534c0af9f36fa
BLAKE2b-256 85ed78adc2464fb04432966023daaf78679bb1e596f2696b7067af9465773564

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7114f9c1f9d4a86c767b77e4a8e6ffc877d22d74453d165800b674dd2475556e
MD5 2dd6e0bd3e30b96f912324478f503480
BLAKE2b-256 18cb714c2d2317ba4d44f7f39f99171e57264aabb2f39141f3fc4647fdd518e1

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ecdcd4cd75aa035e8cf67222bc94cbd9e84a78bb98aefef624558a824e25305
MD5 cb5bf72a7b646a432c6c9f223d15c52e
BLAKE2b-256 0ff5420714a4e89178c1a3e4c7932d5af238fc3b0f3ffa48608f0da04f5ec3e8

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d723321f5b697abb8c86f7845fdc6e5a3d862fa13a406d254805305e2b548c59
MD5 9530117681a04483b99666b34bfae3f9
BLAKE2b-256 3f4ae2fe7496d57960f1cefd1df111c56f8b5737cc23c76b8012025bf3bdab03

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80914f86a435fa8e84ea4b139330aa7aed3fd6bcc157d138407449de6a8ef863
MD5 1e4b2da4d0fa7bfbfecca8567a391894
BLAKE2b-256 45d73b371eb911bb30ea4d06ffc16d62d572185bab13773275506bf08a5c4e56

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 436a7a6764d73b941da728bfa86e6d28824ee578dc8bbb036ad868aed4d44ed8
MD5 724465359e4bd10ab552a5a0dc8a3db1
BLAKE2b-256 ff03b8603be8711d58db9871afd44b7edcad152009e72e24804c1d7f158d2363

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8008db2a5895824c0e3035c6afcf1fa7aabf6d8928c59d3109958d5077345a6c
MD5 dc75ccbc7413cfaf3063eee7a787458e
BLAKE2b-256 68aa0853ee489d5f5501161f9462f5325b87152c4ed0063ec10cc307d7d850f2

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc6624f79efae8b639cdcfc278cb5b666cb03f15bc82f6324d626339dc1e1937
MD5 28018143161b5b8cd9a81c3229b655f3
BLAKE2b-256 10faa27dabf951043a65b529522be8fea5a1af67417a7042c3288bc95b055795

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d79b8733cd3e46f75dfb60c64bd4e0169ee1cb6cb915d2c27d72831af47ff60d
MD5 5960befb82a6e3d3fa3dcb8d154bf9c9
BLAKE2b-256 9e4f1a0c182906342d2fd46a42426ea9ebe00bbfeb210b6828a889b835639350

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ff976064644d33fcc91aab2b204742a387f9fa2a6c8b5cd67209a30540cac3c
MD5 fe53d5207c2c1172eb7a8692a10446ec
BLAKE2b-256 c9110b4d7ff0d10c9642c38b8aca0968d79bd9adac402da9fe91ffaf34871d04

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e66afb62045c51261447fe71a549527e91232611e847df0aa21ab52b32db8fd
MD5 4ae9e79ea03084d5739dcf8159f3a9da
BLAKE2b-256 fb6dc373340ff167458391dab3be2eb0f0658cbcab73ed1402879a3ef1d60ac2

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 722fd13644abb9512cf5570ed3b1a8df67221754d4d314966bbecceb91ea2699
MD5 de4d609494146a33b34af8d7accdc27b
BLAKE2b-256 444eb7506686b11bde14c6a14719b1c2b702b7c3ea156063cbcc36b882c3341e

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a9405bd5dfa0688d2c8bb0b4691cf1706eae61f2789d3dd807b4535845d4a32
MD5 18b0dbdcddde1b569dbbc396d47bae3a
BLAKE2b-256 21b0b7eb7464667e6d326424c7a25fd36e5f1653a04e0bee78aea099d05e8eb7

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88e2fbd6b4fc3630c31d367447ab0e4f49362d0274cc42592f1252c0b1952035
MD5 c40fc4435c70bd3be873b0948da09255
BLAKE2b-256 3ae014c7ad7611394b794423c4215ef7cd71fbde1110c01d900ec48ba64f52c2

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a17cfc636e78b6337f0d3f7f1e29ea7c1065465101f9950d0e36374f3dac6632
MD5 45f5d144df1d7bdf8046e9aca7bc9836
BLAKE2b-256 8c4e0022e47be9064537d985ccb766e8fa811cce964756bce32629eca6981053

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8b2f905f240438fe3e8e3775f654d013611a440903f05244c002ca8676e457a
MD5 310cebbc82f6ad323d6d662ebef0ea5b
BLAKE2b-256 30bf63aabd543816f4762423e7390ae656b1f8e45dddb91001b7b7a6f075ddd0

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c2b8cd645fabab49ee24400c0d5ebbf1d0ad1584565fa8d543a3e5b5340fa77
MD5 3ded354b8daa86c15e8545d95cd4579e
BLAKE2b-256 b5099c723258a8902fa6e3e099d2e0ea5c2b530b6ff8302fbc0a4329d9d25f9b

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 623d16b99f88c052e69543aeaafeeedef168616bf035e5db6635c4c55ba4552d
MD5 3aa1ccfe4e2ea7a7cb1eecb84f90658f
BLAKE2b-256 78b49483f141c5b618bb4a4739c03ff222fe6dff2fda04bdd0e15bc063ecf496

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25ebc8cd265a16776ddeff7e5d637abb8b687bd8d8015e1611ba1d5dba2f840c
MD5 896464b6dd7acc73dc17454799f44fd9
BLAKE2b-256 61c27b9475f90e2ac5eca7bb73a7c66c9921711132dcf6c2312b8687bb263447

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33b84e9d935a7f60277c6fd09e68233d0adbbe760546bd86480b2e063ba27347
MD5 47073d481a0d00f2d41e290997130780
BLAKE2b-256 3efefa20e1f1909141ae0e06e61459b6810e2151d315e679e9c8beea800b17e5

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e10fa50e62ed5511a578e7e3b27d57296f43aa642703d1b1016813ee8a1fcdc4
MD5 3c0308ef1988e71c25a90347c6b8fb59
BLAKE2b-256 fbc49555b01548479050de6fd9a2f33e5f1c416a52941eff8090def9a5cdeab8

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cd1635f65ac1038b5687980fb7b0a98304432a304ddc1e5067e2ea641db6abb
MD5 a9f71ef105e6c6e630176978358b6a83
BLAKE2b-256 214bfc91eab53df0a16db2cd89ba705cdc0d204bb8412ba856e29dc3ec079247

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a12b1b35d0fe57feb8f6aed79e1d3a6f30385305aef9826c5a40e82022e5da9
MD5 e3679f9e8e779c390f686342203381d5
BLAKE2b-256 d462f0b2e790106e5762a652d1416ae9e1d082a0584334a9230d34388ee4662e

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 575d13ebe57b8b673c00ac085beea042cf876f9c950c612e48ae13f0607115b2
MD5 667f7456e074be7c0a33d3f96cd9a14f
BLAKE2b-256 4dd587d8b465aba40a4743d3145acd73798fcc063d7073fd207c523d66ed61d9

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b9ead7ea2e27e538cdb841a8f1f45b04a39c6dd7a020b02b3e82b69fb6c8b70
MD5 82c4a064fdbeed41bfb6c9bccbab11be
BLAKE2b-256 c6aaaf918d63526fbd463350c211670e4d88ec6d764f587123d1e59577201b80

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b915564cdae11816de53f0a4378d6b7d34bf66c86a51dcc07e64a65b4804fca
MD5 20084f159bff995d2d1b739be76e4c7f
BLAKE2b-256 3a0109466a2c36c267bea80f37b38bdcaede9e090a1ea0676e459d21a748ed25

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d3fb6ff48ae7d070afab420c6b3422e225ec647339fda5e28f08b949c5ab62f
MD5 92af99af41e33ef1d8f72572a4373644
BLAKE2b-256 638744520d9c4900f38e803676b780b0324d609343eb2e8531baba64c8f889fa

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 047bb82169f668b51518e2df45cf104bcbb780c9f0c47a339f43d64be290a845
MD5 50ce645348c1fd4af82aeb48a1cd0c80
BLAKE2b-256 4bd242327f4c3c759a5fe8e6b9b65b334337b52f14d0591cc8e9015b5b47bf37

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24acd6de2204e098f9a7a6e3a5e83da58f9aea21c26760dbfa8f768a1ffa13b2
MD5 90926ace3ea7ebe854e171045d5255ab
BLAKE2b-256 d155e83c49ff11f3c386b2b328ad48df608b3c3fcea5ad644643be800b8f93b0

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61cbc4e6039271093d80434bc63342aee66a99a53bfef4824947b4f94adb86cd
MD5 3ab175503ee82c1fa92f3b7091dbe475
BLAKE2b-256 a65b55ee57f74c385ca8f42ed7482d0743752ced4638760d64d3eb7e2f73fb18

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b56415a4386eb9857c1db3d8b6f8a80e115de5d790f59eeeedd2b405fd78ec95
MD5 7b1b34a18dc8a4eb406a4e3c1b114fe9
BLAKE2b-256 4fdc50f12c3b680de86d49a6a2ee25299355e592b8da494b3eaa36f558d01a41

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2b9577ef18c97ec04ad258eaff9bb120b55b4b203673cf15f3a3ef46f5ee5d2
MD5 05007603712205444c68543da1fe3cf1
BLAKE2b-256 81dd7e11f6f466ca2a41bdbc8380aa8c183b24e5bab4600622a95af99097c70c

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03590034ad30ee9f15ac38112ec36f33b4f2643c56f750e83c3d0cfbe4ddfcd5
MD5 2e60307e24a9231a4c7872ce8cac5b76
BLAKE2b-256 c505a620f6d1fd2a0d22b8548f8e448001ba0562098f9d86ada3f648d5378c8c

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 afb6ee7d83157a4d3579df16833e154cf4e4569d551b96a589ce42d10ab3f91d
MD5 94e05b4cff99334f6b358437bc46812b
BLAKE2b-256 16ba0a3983edc70058d97db032e501958658f6d6af37ea5d01676af1127b9fe4

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 440467e4accaa7c1a93fd9483287d91c29b030752d7bb7410a577d7590911f27
MD5 99ecdbddd98f47227fde99b974ee8a39
BLAKE2b-256 f8437058d73af13fe4cbb11062a2eaa55b3bebe370667fdd1ebc9d42f085c891

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69e0f55dabda7d46570c580b043d2a85cde0197ffc6c93c2f8af821740d1f930
MD5 adcf224b91a82dd0251e12971ee4ebc6
BLAKE2b-256 8e1d83c07622e8956ac6117992cf01a5d732bdadd074980ec84a6a20da365acc

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af59342af4b20bb0fc7e9697ff0a7462e3c74fdf2090c0ab1f4b3147d11d8733
MD5 e8afbc8b286a5c476b239126a3dc3e65
BLAKE2b-256 9336388a9274df37dcc85b0c89723f11d055c39dd89aaee14083f2c56894e3e7

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d298f76b11e4deefeec237631c46f8aeaffa3cde4d4bc67ffba0f9bf37f1e238
MD5 9cd7b50383a321fe14bc46552a0f9fdb
BLAKE2b-256 9d41f46e625969b9bb7ff0b781e4324e581a382f0cd68e148254b4cebcbc13c8

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7540b67d105344976d124897aad47dfae390a75f9334c9f38f8d183688d594f8
MD5 8bd7f083764ec0bb91fb1c53ea31d837
BLAKE2b-256 82993b44ec04f2cc4ced751ed22e75a693878a6621509a614624e51eed030362

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d021263dff22b7a8ac73ffd0778360aa119826c76beaff8691cf0d1bc79ed982
MD5 0c65b73a9edf3d60f098f499bdc64b38
BLAKE2b-256 f6c9923a0cb0f86ed6628da03ab5c8138489b1cc2ab4d021bc2c514b75a1300e

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3ee8d4ecbecf7f7b10ddf145b7a83ebef777a9649c055b49e462f8b2a996e52
MD5 9427a1470e3fb9da39208c16eeeda734
BLAKE2b-256 493b0f51f358bad7cfc9b6b988bd311260b979053d815245262b61ff8c03856f

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 909dda63b81ad5afb375bd1b55ab5d65a80b8e523c98085f7116ae3e72678401
MD5 d221c72db1d8be9aadba7132108459ac
BLAKE2b-256 9141dded76d05b707da42f2bf6dd0bf46d81f0d124cfe2f6e8605a3953417385

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1100ad89cdd84e083443cd10bd33f84dec4f750f0911fd98c1772817d7616113
MD5 01781aeb5d28f3242de92d2d5aabca41
BLAKE2b-256 0391def9f48c9655a5ba00e9c15d0f22f6e4fbecb132aaac325de70ff203fac2

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 843f94700a948d06c386b1dcca1ac6d3ea875ab581d9ec42436bd7d11ebf290f
MD5 c0b280fadbc5acaa56fc8bfb1421d82f
BLAKE2b-256 c6f44614142b3e8442c25038acfccbe36ca8c8d84a94453b5f46ab716593d4bc

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca40d452e068257a4205dd8b57cf92300cd33153cf929d3080e80341ce345abd
MD5 5410e2273497f2b17d47d99cbff34637
BLAKE2b-256 e664462cace43265fe1d95602c2e1a2f8b9eb8406b7e3084078e736258778e1d

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5565f07b951ee585fd019f05b90b1a48dc43fbc52c66d1112319763b5c042565
MD5 7127349ccfddbc9a16b357e87e794bbe
BLAKE2b-256 ff527162f8ed6c53e5af4ae34797c5d4a04f1390d7bb21ea7ce35fcf55d20839

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa8dac35711202469d29562c7ec2b27a0e4921fd0a062e75f4337b5f42f19ca3
MD5 8372df6b97c0f5ace873ea4e9cfd50ce
BLAKE2b-256 143926480aacd10dc7ccf3bb1bd4e57d0694028fcec2a5e1bfde68568cc80ad7

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe3a2cd814f079a1e02b4fec6286efb365bf0af0807638b0ee2e20bdcf09138b
MD5 649a0d8ddd91fbba8a2f43e09021d723
BLAKE2b-256 96fc5b54070fb0f840184ae9bcdb549bbd8251263eca752075fe79813ad48ffc

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8781bdf224cdea374e04e59a019f8f457344f89d1f3a7b2bf6c67c81beac35f7
MD5 cf2f988411d608f78d29e88d8cb7112f
BLAKE2b-256 4accf37e5a5a92eaecfb93989387e3696f68767add3cfcf92abb25f121b559e7

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 291d4f333bc55032eaf39b375304dec72604dbfeb79469c630e37d0ed02b10d7
MD5 3c8b93a7a298a22b4dcf46b07d88fd7d
BLAKE2b-256 4df6aff14051d143e6f9a2f802a6fecf9d39aec89033e3d24d11a4eb6d58e3e5

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fc9803d7e1a83545e98241dc50c82d727662d1a81afa76d59890d277043ae1e
MD5 f2de97e70026ba5b40baeafac67a82b1
BLAKE2b-256 d959c0032756c5e9afa598c5540c1322ff714afa8ca9c7fff38e1d3ce6b8ad9b

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e3b4eee6f0f166b44b35be6cb17b2f2814c8c4a10b80263b53f23ee88b9b39e
MD5 a454a0b91ccc2f401504908b2f1b0236
BLAKE2b-256 0b532102406cb0bfc7b4f3e792167cb8123830def6782248deb27b79219e2411

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a42037b3b6824926f8f8e45ff2bcc0bdecaa66b65c9c6822f88b692b19aebbbd
MD5 e488ca2cc7ccedbaaee44b895483314b
BLAKE2b-256 6be5e3b63cab4cfe7d541823876a0564263606476e069bb593fdd14cc90fb6b4

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ed120a83706807386b6a5f9cbad117c6f19cc9a8c6c9dff65ee7e48dd263b46
MD5 3ad56a1fc934234f7c73aeea06edd5be
BLAKE2b-256 a272350565eb3798b1574a9bfb8026e4035a42786b1356d7fce0701d11cba5a4

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 996b0c0e2df233dd3dc9fd9d21d2d684d4a7d4f779e3abe260de7711088e9551
MD5 46eef793e06e8e8bbce458b85dc2f763
BLAKE2b-256 ad32fc724beb868823e5f0612b944804a03141552b204b40c8a3872c3960435a

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34b016822837b26b171eadfb5747ad9d6bc99d6edb6ea2a1b7616cc04109b03c
MD5 8d0e0da36fbae0362e3f13a14ce3d7b8
BLAKE2b-256 3eaf1c7d1baa7c9e544c527232519e9259fe4ee46320c20fd7e9fc0203bfe168

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 495281e808410fde9f956fdb1567599fe782b3476bf960699b971ebadd4266df
MD5 aecacbca8ade17ce17ba22773bb2bda9
BLAKE2b-256 8e966348021813f0128ce09c866535b5027aa979b888382d8333973bc3767d42

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42980dc9697dea7e9ada9a3e87999e6fa35b672463780ecbaf2fa254f5d4e076
MD5 37a9bb921eea6121d36f18fe95c5d5f1
BLAKE2b-256 c59206e829ac580c13f31c58a1805c2f182d7fb0ba9fdae71a59b4ac4a04f216

See more details on using hashes here.

File details

Details for the file autosar_data-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf3f038522db80e81c7661cff8e6dc8f3ab2f770c4fad95fac3b15482aa29dc4
MD5 8a07cd16fc0807145dd472dd9fd06051
BLAKE2b-256 648785c5b7ce7380932f7e4a31232a81e4739edf57a6c03575323e9e8dea938c

See more details on using hashes here.

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