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.16.0.tar.gz (270.0 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.16.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

autosar_data-0.16.0-cp314-cp314t-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

autosar_data-0.16.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.16.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.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

autosar_data-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp314-cp314-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86-64

autosar_data-0.16.0-cp314-cp314-win32.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86

autosar_data-0.16.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

autosar_data-0.16.0-cp314-cp314-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

autosar_data-0.16.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.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

autosar_data-0.16.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.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

autosar_data-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

autosar_data-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp314-cp314-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

autosar_data-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

autosar_data-0.16.0-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

autosar_data-0.16.0-cp313-cp313-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

autosar_data-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

autosar_data-0.16.0-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

autosar_data-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

autosar_data-0.16.0-cp312-cp312-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

autosar_data-0.16.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

autosar_data-0.16.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

autosar_data-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

autosar_data-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

autosar_data-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

autosar_data-0.16.0-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

autosar_data-0.16.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.16.0-cp311-cp311-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

autosar_data-0.16.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

autosar_data-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

autosar_data-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

autosar_data-0.16.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.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

autosar_data-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

autosar_data-0.16.0-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.16.0.tar.gz
Algorithm Hash digest
SHA256 cc54e6018af6a7d2f26c36aa58d359e16857a4464fd7ade76c68ba8e92db9ae5
MD5 bdb40c8e8f39bae5e3c9f86e79c67efe
BLAKE2b-256 0725b0ba417c702ee4387e1540ac4e3c598a83cff1a2b470eaa0e2636ed483ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f1d47ecf405b9c145b665f7d515afef77cad277353fce0393647e9981599e24
MD5 28222fc81c45f7345f3cfa5ee96305de
BLAKE2b-256 1c7579e6660a5584fedba21087934b01e99436fcf6283f76c87f7c4201778853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59ceb50dbc0d69ec0cdcde5653ffed19c024af4792f8c8b45ea1a4af2ec8ea0c
MD5 242216ccb0cec80994a2450b9dbe63fe
BLAKE2b-256 584dde630f71d4fc138f1f359a5e67c637aa6b4ec510bf86c04421d57a7d9a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 140d40945e36700cda3b4116341c6903fa4812c2ff47fdc1eb2d65dd81cf0bcc
MD5 d43770805979d5106c3d3b0336837cf3
BLAKE2b-256 042b38fe2dca6de5d64d8972085a6d99eb3c6ef636f84f14cffdc12df634a532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba9dfd4e8c69b0b0cfc3f76ff3a5de12b8dab1f8e5960efe2954003853c0480c
MD5 13da6da97fca3e70134d4e343c1692df
BLAKE2b-256 25a12d5bfee5754f80ebfb5d0898c4a3d24b3629f7aaf280fd998f537b7c2a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40fd80a2bb7e27793f1ea916ce40816898e720185d0c42fb2944634a33ffc5a5
MD5 bf1030fe877ad776a8536cf284168664
BLAKE2b-256 89ae0bf1ee1b17207d132c2e2ab79d28e7cc56469883807e3f049cc5dd781c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20fa6e61a6c43c58b6d949957293e3d87c1f328351ff0ef9e7e060ce2ae6c610
MD5 6dfcc4eee9a86a346366b191c55cbde7
BLAKE2b-256 8a8c9d7149d7a6806de78d68ae857008af063ac51791c460e000d465372f8f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce5f3a343b0392ff7555c2a9875a6991b1b3f39406ea6ba577806c40711ac896
MD5 7edaf134be3e4b8c5956abbdc5d910cb
BLAKE2b-256 cf121cbbe0ffd53a3058ca27490d0754e88ab447e66a4e40f7bf0ad47955a553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f8417d1dd6b731ad89422d25a45c1ea84c77d6a6922ad06f545167d821721ee
MD5 81a964a117033f3982a9762f0242cb32
BLAKE2b-256 887bf96aec3f05bf3ede38d6f485ad6ba4fa9a829307152e95ebf87d21514366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79c7e1dd3f023b18a087f8adbe3a91bd677d0d609e0dd943bdafdff3c687786b
MD5 27367e0296c1abb583bfb3a7763b29d2
BLAKE2b-256 60c88189cf2ab62516e5080477875f7ededd2f72fd4532efb42b21926148e689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84aec720f74e6576d9abc19f4432087857e45e7a9c3b27d4de7e2cb15771f1a4
MD5 4dea170ff768af1cd4b1b0928e7fed5d
BLAKE2b-256 c853322cc7be9184a55b94c00cdf2f9530189d53a6e60f459aa52b768f5ab060

See more details on using hashes here.

File details

Details for the file autosar_data-0.16.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd4cbfab13143dcf85d3e79da2c67c7e48e5d56813befde0dfde43117ae855c8
MD5 0f1c33abfc2037a5723e42d8917ab5a7
BLAKE2b-256 04ce7eed522d1af3e1bd7ab6ec5e13a92a454157f18e43de104e956fb9fc8c85

See more details on using hashes here.

File details

Details for the file autosar_data-0.16.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74b48bc6c29af746c02965b57e0e603ef2881bf4e428b24dd814c27f1ee16dca
MD5 e197108a6b56be4a1a3e33458428a882
BLAKE2b-256 a3736530de9fcfb7b544a399c03697f6980082063f014a8c14cfb054c4918eb2

See more details on using hashes here.

File details

Details for the file autosar_data-0.16.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 495a907ae157d9690398d138e7fc501f876bd06682fff3715173f0e1d0de0bd7
MD5 2396f15547b036308922297681d06070
BLAKE2b-256 5d409d058f8c5c83e65a4e5fa280cb40f76fc225d1b8fc4435723bae734460d9

See more details on using hashes here.

File details

Details for the file autosar_data-0.16.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a34e2910d7df9375b17c201b21da274e1afe41e0d2e3fdc2c813a280459251f
MD5 aae0c979971cf4fd9407185af6aeb06f
BLAKE2b-256 296ac8229113b00153b3c92e4c21ae5ea7c17086d1e92b8caec15d789f0cb91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9445dccc82e9398420a8692c1e6c21b9679b45693a683043a533bb6333dc116e
MD5 57bae0ee34bd9d32dd43ca35b94c3d40
BLAKE2b-256 08ab76ecbb8a09e5f35584fe84f512ffa3d60c6dc62ebae661484162308ff1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b3d38b882277084576c6dc1f4f609e936f4bb2b0ff5a335138852aa36c5a89e
MD5 5911770680ae98ce7e10da78f88a601e
BLAKE2b-256 638eb3a7a812460e4c2107a70b86e4a5e10c4a1f4f91236a2086b0ce12d1733f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 346204b2d03d6d90d78e94e9a2ae71b8d2c821265315c0b256bb961c09820917
MD5 8e3aad7c4f1249aaa0dce2799d7e68c6
BLAKE2b-256 efe0483d7b927817719015f6f35082a5728608e46493fd4bcf00ed59b0dfc6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c70f4c4ee125806bce6e432dab537126609f21f8fe1c67cc08d6d2502c06e141
MD5 5dacd0de320f4dfd638409a48b81d7b2
BLAKE2b-256 8072ed8b4db4734851a7122b1d89435da40e8edb3696826635d8d9ffbd21b2df

See more details on using hashes here.

File details

Details for the file autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10caf328dd744536246c8827974eae9085fa176c32b75da7b8e0275a58d3f9a0
MD5 73ed48ede71ea6decb9fa4c0f61356cb
BLAKE2b-256 31d0e035a579c7611580755b06a06382bcccba793a36d9f4df65bd481ae09d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6b31e32f9c624b86ae6d9dd4e60e2b2bb29ddd6b087ae489bc4dc573ea728c4
MD5 d4c6a00b61fd8fadb1bfed6e12f7e6cf
BLAKE2b-256 8e02df9fd50fb41e33ede4d67301a5f0ab794bbe4be5103101859b41cb3e4cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 778e0a0263f7677faab98aefd8f56a31c8cb9f020ecf1e36200795da4ba5da27
MD5 53c3357bd9047d409df4b31f90d28f16
BLAKE2b-256 a862ecff6b55d94ab1709928b7f0746bd1f07505a118b7d38f1ef3b0dedba6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 395e4c8ca469dc85b1345a2b869769ff5a0a0f836067fc6c46486c5684246c9e
MD5 c1c5b39ca71fe962e92c6979213c5ebb
BLAKE2b-256 04f65139d892cbc0bbddb6283d434ef63ae48a5caa480de6a215c7525a3b63ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49f4d9ceea635994fb6e326c8a385c4e8d9fcef1cc9f7a72faa9cf1a632db16c
MD5 e8c6ebfdaee114c907e541fed3bbfb5b
BLAKE2b-256 27965bcba7ea41dfadfdbcb91e8c8baed71dd6bf718514de2f2d791e48c0ac1e

See more details on using hashes here.

File details

Details for the file autosar_data-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26ecf41a261773d74638898c0c66b1e5e55e623308f319c7e07e5ff33b6a0695
MD5 1021436a86447029a55160d432d00ebf
BLAKE2b-256 03820c812fc9557dd4ac3b80e8cb2fca1e92101cf3eaae1e2fab017e7437b336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 768e8982b2c53c3de58900ba5d5fe9c6cb7f0d87de013ae76e8cfe0b6562ac65
MD5 572ad34ace594c236d58b29f3bdf512b
BLAKE2b-256 60d540e5f77c7d972ff7f1d9154e310c6c09a3df89397720ff2127f7b0eb255e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bc0319711c1af3627205ebcd4eb83deddf4228cd653b59f469495cb351cfdf9a
MD5 993d1c6e8155f7a6e47d349ba30760d6
BLAKE2b-256 34c8231fd74ab2cb26149a38812da75cabff1f71797a3c9f24f94a6eb5a438ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cee6515b70120802dab5502de7fa9146985d62b4d0c9670b2b347a465297f9db
MD5 021285215a1f5876b80362772c41e5b9
BLAKE2b-256 1d04934a0920bfde76e95e1f0c5278e0f5a786ce1465dcd96c7d718009ef12ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e25a215d0036de30e30224fa9084dad604c8c2216be61b386aae9251d58bdf10
MD5 d268b6cc7048717feb4ec3bd6ac70508
BLAKE2b-256 7c2e59b5724fd433d48057990ba37e8cc7ea82a7a063e7dce96669b5a70ff0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5401f5d46af1cd9d6ce0e4da6829ac2b2c49da2ee3c5b200169503fe514bf631
MD5 71eb6512b5c06dafe831e275cc6e7389
BLAKE2b-256 f2d2a54fa0c6c8bba8bb0ef0d12e51ae6455fe5f3c69644f5f9510b5d85a86c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4be58e6307e2225faeace9443eaf4eeb40952da9a026a1e9268fb89da66eb9ed
MD5 3625ad7e3d4903e70b5ff424a5c57713
BLAKE2b-256 bee793389c6ca9fea7bb04498c0cd067e9f7dddc792c1491e4445079005b65fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92445c9cbd6107be7c6cfa42e577b873e2bc355e7bc9bfeaaf63a3e7f452023a
MD5 df7b30872c0aee91de1f461d13093998
BLAKE2b-256 e9e05d20db02cbcf509a456af3cd9d13cc6d3cb2d4fe549e265f1519c89a0ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f43d87c52e2c30d47e1e31e9697858b7ef95196d1685174be9fdade8b6c9f39a
MD5 20bc4f033d650a76a6167d9d27631d65
BLAKE2b-256 41d977b03b2538aa68311f2577062870a9fcd93e51808976bc336be33a30c443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eeac8a061a65652c083726fcebc6e30a2b4b3608d9fd16694c2473211a60c6e
MD5 0a9fa7dcf745e5956538466791ea8ac1
BLAKE2b-256 1e53fb081fe0d436b64e08003634cfde14d22000037cf7b771dd5df3b6557f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6f0d52284b7f73b534ed9af471fb794e4ff3350fd4e9800625c9582b0764630
MD5 bb31ac1adaf464748e7b376c02da210d
BLAKE2b-256 4d1976b27737969e9ce95aaace9441861489bc024d01dbf34c655889a35d8df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 010b5d714db79ae84e363f796668e30bf0c3573dd02f594b3b80f4c37252dff4
MD5 3e78381df8998e42151d659a9037371f
BLAKE2b-256 3c93c2330da342d395cf845eb285bce730beeb52ed72fed8277c7ba48ebea301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27e42a1660267dd18203e28614cef3144f99f8f7d5673951c57f3a50de7aaf83
MD5 826c1111b5835f35e9ba375708117eb9
BLAKE2b-256 46cb3b039e8867948e05a3c7b5c16119e6aa32af426893deb84c4b2758d473c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fe50b59fcb0f0584298544f6bea95e5763823f0598d5ee5982255750f4adddf
MD5 bc383de4e94f49cce59c2c1665b8724c
BLAKE2b-256 7338e85dc9881a90b4502aa4f47f9db8c8d697b041327c482a3fa97550f5b66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5b958ef5ef422fe43cecf6a1e5822f313ad830817f5f6929155b1793d15a28d
MD5 24e5351aeb3a98383e90a2e0163e7ecf
BLAKE2b-256 26ec19f37e9d3cb7f29de351fbbe5ae78dbced40c51509e2b07d24406d8fb19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fed18ab0852b2393201ffee506cb99254ac79f9786a6792c44db378ca9966980
MD5 c714626fdf54d027be890f359f9d08b5
BLAKE2b-256 a4e8e7e0a3ab8df3ba7104dfc1f4b613eaf2492685d946c4c52ce8b538fa2089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be22cf8a1d837092248613f46367ba786682a78ac3b794bfbab9c81f07afacfa
MD5 99b6db938f0b3111851d33916bccff9d
BLAKE2b-256 497b53a195a652bb6666b9166dd8bbaab2291e868c4656b2ffe6e52793cbac73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1abcc4a9b0552184486bb45e0c7bb787b68d3aa87dc1454cef5bc555797c0ee
MD5 00068363e0cdea24f9eb3b6f7e3c6446
BLAKE2b-256 839b931df1eb5d8259f27b2f041a706c61b0d63a9211e6a46ace0cccfaa1e53c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ddc67923177e360f63360fab25fb46de0d1c6beb2d44393de12c7ef468cf7d1d
MD5 cc4edc1f45a05f82aabffc64c621286c
BLAKE2b-256 ca91e5689a5d0a9d763c00d6583d44c490d4f0bf7cc03c422ef71a631ae519b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 128ddc081bdcf35b53695e3b68d362c28c0fab7903da7c7e222c9d90860d0985
MD5 8c656fefd2629418514e5944c324d206
BLAKE2b-256 9edb4ab893d72731547dd997eb5f519f450812f2c1d2df43a35d0635402f7d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc3b52ac9391a67819c0930c5879777c1b3a12f27d23e137db184e8ee4110b8f
MD5 b4f16ed8cbaa5bac48db2f0c0443d5c8
BLAKE2b-256 c5b9b4e2ccfc2933c6fc23023ff546c2074b3e43c9687222f8a32a9bc4dcfd9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a7585354a503a7eefd91f875f9fe100087d1377c3540bfb0605102f3736d126
MD5 4c72d334e2406668890c4eb66ac2fec2
BLAKE2b-256 48124b3eea189c63af6a6159e3d1834f4ab7c9837fb214f4d36dc889277fbb71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e66a27bdcb17ba96306b391a8ea19b46d0cf207b37ee0130c923e85a66e43dd
MD5 1abddf880f59719f6e969fa6693fefcb
BLAKE2b-256 b63d57d243eed01fcf40d7c89d0ec94d5f370f5a80313294667db61cfc65b6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e0e03067dd9f95b29f5f1ef470456b85a798505b0147f9502a60efa056580c1
MD5 98ba72f421e46f0ec7eb805e59e505eb
BLAKE2b-256 8edbd80a882a2cf6951c0e0405969851c97b7c861b26958bef7d0cadd96f9109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0416c362b0d61483e7a641d6f29e69f89a10af2c6df06b35c895227997a47bc
MD5 2de560b1b5e63954f7e3eab5d0342807
BLAKE2b-256 9b2eac180f0e32314915bf20fbc2040b362c0efb984c4df1ed6242c93fa44701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08c13afb7e51df78ab18484a8cf75d25328dfba6b6b5e07e3c25e5a6a38f1196
MD5 f7f02fd4a337b7b64068a12b907aa9dc
BLAKE2b-256 f1e59e25ed86d9cd567f397421ca48ea97fa968d76c9b93a7a2872d1f91c62ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0c8431048fd825e14f40bf32c87888ba9aef19e05c541e58725c7233ab273cb
MD5 e993146755eb715e48071c603ce1a3a9
BLAKE2b-256 9e6bd48d2caa3d8fceeee44f582b5eebd0b140755a23a06472099a85ea9d2969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84640492635a162494b09d42c59869b5a84f5ecd83be83d9adb2147888c1badf
MD5 8e276f5616ed08d1b6d044c7185b825f
BLAKE2b-256 ebe118efca8ef49030942c5b62abaf8b1e7f02765a3f1d6e31a6ffae13effd9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27eb0bbafcd5434891875095e1bce545ee4579c1145be9e6c7698574059fba56
MD5 cb7f85ce3290d021afc9b5bb05612199
BLAKE2b-256 0a552e0067fbcf52747073f4015cd6d2ed8aaba2cf107b3e588b278014c83635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36ffba2b761b87f00547ccbe5eee737193b21cb49efbe5429604b4ee8aad55f7
MD5 24c5dff5b49f73ae0fb1bf813e3030c6
BLAKE2b-256 766f6608c56c6f819b78ea06adba52ecf7761e29bc3c488642f950a0773d102c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb4e6d28a5f5170ce3c06b25b848639bf75b63f01bed032847013bce0717fd6e
MD5 9394ac64d85ca9c0fb9fc8e2ec216184
BLAKE2b-256 3cc38138e0c82e693ff27f163b7b1f7369d7bab43532be592c6c7b739e1b9cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3dd920d9f130857790c666b106f84968a80bedff91b01997a5be12c29f4da64
MD5 20f71e8f0c16f4b9f9038ee4790b51df
BLAKE2b-256 5e1785d9b999fdfe1ef4001d2ae6eb55cc23051998ac558c05fa6b549336f15b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b687dcbeb630aa26555e40b3157a12aec8371dd6fa2fac655e8248fe365a97ca
MD5 fb70142fe61dcf35923ba8b620d42ed3
BLAKE2b-256 b7788f3ea6fdc6f3f72562c1104384e1da4cfe0330d1dfee1b130cda008b1e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cabb246127686985dbcf827e5e5819d088686229f8a4e82c55db737bfd4d448
MD5 5fb3d5b238e0f582e25b6e6a9443ffce
BLAKE2b-256 172b307b1fe63f3260b1f0ea03c74834b352fbd2a98da3f735e983a18f658f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9dc56e0aa962ed6e87d188ecc7f37bea7ff6b8de05b70a63a6f4e771defa87e
MD5 fb5029f4aa539718d59397ebcf83e76f
BLAKE2b-256 829edd33f125684bbd43c846b8f792b082a12b242cfaf16ba1fc47617f02cf4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e59384fd594d0e9f157820108b4d6ebffb7ab5c682600889d0255c042ec0bc5c
MD5 eb3a0c2c456c37144530a18dd0ea89d3
BLAKE2b-256 449b9c702ee0dd3d72875513ba705e5d97550049dfe1f0efefd554169f83e66d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c5fa7fa1aa490749cb1da6a0b60be99c024b94fb57db1a480dbf51b752a51d0
MD5 924d82dbeb7c5829a74ab3298d2e9870
BLAKE2b-256 be2161c9a3842964cafb05119cbe82b7dc6cf12c1d5e31c375c4b9edea960e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe24d7c72835954d70e26fe7c9735a5f35e1a448f3c4a9cd9e86e9c5fbb385bb
MD5 2475c5354958a01d53de83896539204f
BLAKE2b-256 925cd017ff95e35729fbcb85696fa9bf39cfcf35fae0778482ad14a49ca5eba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9ab3d7614471fd79d4b507942eeb6b84dbbbe7c7d9e679f59ed16aafa2f1784e
MD5 5913ea48903da83c4c5019515f5ea803
BLAKE2b-256 db58da4b5cd07c993ddf6336cabab415ede68073fd49d2f2775217f2d9e2ada8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf2559b614d87134d17aacf88a89aa7c9d59fed3649261a5714ed5fc7e6daa1d
MD5 192e90f822a18b995d4ebaefbe7c6786
BLAKE2b-256 10fc5f113bd08b863c72b9192fe778cf06fc445a932ee6bd811cf483aa454784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b89852bee49a79df2ccebe72a3afdb264fcfa2e07e3b8fd6e878c2b5449c338f
MD5 7473a4605dff7612a461e435a6d6aea6
BLAKE2b-256 d3a962ab196849d085a013886e3dc186609bd741d5621c5ca59244fa29dbecc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6df7efb782ec698551cd7d0d01e191678b921ec5a3727d9a28a08d84fe3ce785
MD5 d430cc4d4bdfcd2f1a2ce3f432d814fc
BLAKE2b-256 70035dfbddfc5a8bfba5e9ba09083acd8a8785b30d16482ead07cf316750d16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95a38c3717aa96fb2661c9c857cdd07663c4ff7f84524abc50a9a978d460f5f1
MD5 5b8fadab1a930295df278fcfbd8352c8
BLAKE2b-256 2471315a52d66b9cf741a1ae3c4958b598d83bd075dbd124ababd09c68f19cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc917425869012457642f551cc4d90f4a8b6af336a8d62fb9a6e49d84281b72c
MD5 d43b8f60534e10f1eb9ccf1c189c7321
BLAKE2b-256 46626d3f751ffe17c995c1b9297d5a7a37a1192f1d2ca2bcc9761ded5a9cf1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6f427c6158750c98c5a3d91be67a020a2cd6cd3e4092140440bffbcdecfb3ec
MD5 1e8f2d803e1061a351173f0cf8169cb0
BLAKE2b-256 0586d97759585bdaeb48f1ba1bcea31b997e991f5b6d37ee62633f7f4fa80aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f1b1543c3e36687553af01e09fc922d90911595f52ddaa327f08e92c73b0b2d
MD5 f6c3c77154133da6da5c6927df0eb98b
BLAKE2b-256 ea0d6a691e40da813bfe92a3f0849c206750a545b2d70efa9a68fc6555e240fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4288c9c935623b8243573c8080a15a7e0b1314a7273f96aad7031c70ec3386a
MD5 437e74d5f2c638e801a53488f80930c9
BLAKE2b-256 162ac693f27d089aa1a348a16d78bca627c24c72abb56c844a63c67754b127a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b74d979f5eda3d8d9059ce2c04a776405062b08fea018c20cdee8e541b319aa
MD5 bb5358e046d8ce9ed79c9e1a19f076c7
BLAKE2b-256 8c3c54f611f1cddc4b146075f513f7e29431a9ff4ded9c991c31a6a8ac3a85f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88f2a9cd1f568c04f9c40d00619e4b0f8ddc2a72564968c909403adca96d02a6
MD5 5ec272d82014ae3b7e61bb4d9bbe2f12
BLAKE2b-256 3c4fc64d3d7aeb6582302c9673a8f4cd9102b762d0455a5200fb400bd21706a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c48a8f60468ead2aabdf13cab79dd413e74a1ff63219490b1e9c54a7aece5e1
MD5 60f9a55186298eda3678552c49700a89
BLAKE2b-256 4087141d40eaf15e727380de195cd7d1f4677eff454b2b1e88a19eeef990b8b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d67c28b9d8d85c757e12e8eb80112c82fce90f3f91aecd77baaf37d1c41458b5
MD5 70e14176b7a0d9f2874368eb1dfe02b4
BLAKE2b-256 1adb081a2237537ec5dc8ebd577109acbb0bddc8b4076bb155ae8517a22cca28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c02915e77694a2ab31c9bc6ca64562e682c2c76d151c4368d92c6719be9047e
MD5 002bfa69539a6ee03f2f53f716082f1e
BLAKE2b-256 ac74d7f831db15b09c34542d791f640eded2fee7cb5ccd22c0fc411a3ce32ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0efe82342492adadea709a8879c7e7195e1c2e2bb7af1eed76c4a65383027147
MD5 7fd256c17f89302236cdf7598e35bb6d
BLAKE2b-256 ef5dd818cf6bb7086f55019a6c5f0a42bfd0895ee2d5d70d2175985bc1660969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e419b9a1fae0a52b33e26c5ddeb0668d60acd57272dcb3ae85fb8f9a35748ad
MD5 96d160189a3be7f695775ab371cb567c
BLAKE2b-256 cf8a7464d621fe9de8870be8bd6421c3b5def6b8ced5e900570cc9e09db3fcab

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