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.14.0.tar.gz (265.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.14.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.14.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.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.14.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.14.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.14.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.14.0-cp314-cp314t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.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.14.0-cp314-cp314-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

autosar_data-0.14.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.14.0-cp314-cp314-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.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.14.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.14.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.14.0-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

autosar_data-0.14.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.14.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.14.0-cp313-cp313t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

autosar_data-0.14.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.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.14.0-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

autosar_data-0.14.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.14.0-cp313-cp313-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

autosar_data-0.14.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.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.14.0-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.14.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.14.0-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

autosar_data-0.14.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.14.0-cp312-cp312-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

autosar_data-0.14.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.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.14.0-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.14.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.14.0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.14.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.14.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.14.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.14.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

autosar_data-0.14.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.14.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.14.0-cp311-cp311-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.14.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.14.0.tar.gz.

File metadata

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

File hashes

Hashes for autosar_data-0.14.0.tar.gz
Algorithm Hash digest
SHA256 be99dd6dc7d1ba6fe68b40494b887404f335446f390a9c573dc439c02949d9b0
MD5 a1d45806b596c2daf42116c32a0e2ab3
BLAKE2b-256 d1da4eafa9398fe2cb7870328fc519a6c3953a953f2d42bbec374884274a5f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd53bbd90bbff723e9c6ea81061fef0e6d9568f37132e21d728d16a24a8e0098
MD5 6026a53abbd38bbfacba944c50df21ed
BLAKE2b-256 153071be384f988dc7825258495bdd61ce0650a0018e8532d40402cede4f61a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22630e719ebdf53ea3afdec690d7f8ef85b1d38aec46470567321ab97f0bda59
MD5 f1e50a9e60e82eeaaa0243524c3cc660
BLAKE2b-256 55775a1e3387c7da88c32386fe8628a11a898aaa9aa45a97c1339090b5822529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d1b97bbb73c4db5b871fe64e05ea8e28776a918120b8c6e1bfcef1d5f21c95b
MD5 dc74f5234399f52e8e501c1a91b19022
BLAKE2b-256 c96c151badb1d108278d6c5b1b83b7520efb71ee786c60b57b4a5a442dc9fc69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 191474787d213215dec906d242503897c31497ca24af649c49471fd4b7ffc1d1
MD5 8d92afc6e50d5705343228ed1f4d6807
BLAKE2b-256 cd40fc8275d3af7a8315177c107b88068a8798ba1dca352af957b6f278009155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6293030213f3add1b24a98161ed0aeabe166b18e02636156e527470eb32c4289
MD5 40ed1c7ac68b38278b9b366ebf954ece
BLAKE2b-256 b2daa23075fdc4c4aa80dabe6854686a59aca99c35d7fa35e19344a2daa7f976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e03ec89f1d71390f9db76093dc61c8f36533c429d587eb655de582535ae57908
MD5 deb534825c3910f92c212c06cbe4ba6a
BLAKE2b-256 231c705f4a809d36abc5a4566f2acba569f59e3d7c634b992dc8d4f6a132ccd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48f7ddfc911648ff5946e0107355165280331d36c49ebccfd54822df21cadc1b
MD5 5dccd1a98c88df6be72b27bde378b863
BLAKE2b-256 dd017a0ef920037bd8a4f220726c6012e279be3a87197884ec324e566605ca96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24986ffdbdc2142835b32f8af5ae2cb2dc85b61551e28b33358d16d67b8eb996
MD5 075684012c1f3d48fde1a80a2054a262
BLAKE2b-256 fb37098b57a111438f3f38c427668989f34f55724af19bf936f592b2bb1c7d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 031e945343c83f1ea4c19d0f6b9c0c5aa15dc988ec1811017052537e94807674
MD5 cfa7796f59156aa0929f7acae35d87c0
BLAKE2b-256 322d0c519d8ddeeb2a8269e5db58cbc200b4226ba79495546a3603a657323720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bcabe6ba8e5cc52a3596386c6592f471c0325eb79579b762052a2aa854af7e8
MD5 c6b4f7c33d4968c97b7604028e44c5a8
BLAKE2b-256 fccc49fd032915e22f890f0a020e644ae4a537ea63b888681b2bfc47019cabf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac4dccdaf1c68df31f0981c651ae2cd6046852afdfbd49480f7c6c795a2ef655
MD5 969a12613f736cf115edc5758513da89
BLAKE2b-256 d2a986af54f073c3c53e4e57db86bebeec7c3ee4b38b059db26bd679497440ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ceb729ad9590806ac7ec2891e3816dbb72770f4101116295aa3d2a25f953fc91
MD5 fd4c414baca26f6837a6b3d3677cad6a
BLAKE2b-256 3ff153dcb13bab0dec71d8e3af7f7c6abba1b5c162fa83da1247838c92bf6de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e5eaaeb4ae1f79ca470ad71f5bd8dafbee9236c3a9a6ddd7962e5d38db932de
MD5 32cab9a68273fb2c7a3477a3eb8c8636
BLAKE2b-256 b14ce623231d4efd1ec59d67f1e4a02e76737744ae6f7b8c57bc6dae57209204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94c255ab1f8ba7f025d0d3c7119758038ed6d28402c069ba4a4feb654319aeef
MD5 b5cb6d5c9a7ddf258c6ca35a6f1faee3
BLAKE2b-256 40e0073cf3e3351a4fae4041373dbf84e09d2c1af3ae03b2e1652bf785cb25ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1bb509552ee37da5768e8426645c62cc62e82ac90ff965bc6da878faab336dc0
MD5 a931aa398a9e688cec60af7a250e53e6
BLAKE2b-256 03c8396e47a7ca3ba7a754298aa8645a086d4e9fe484b4e818eae8e9170771c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 913ea199ee16d047346ce4329d97a55cb677a63342891785823ba86573ad737f
MD5 ee0765729b2ea9a75be5ad540986a9d6
BLAKE2b-256 354300b3ac1a6d76d3579ed7ad762f4b8b8f606f1f37c8adee81d745e0e651e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d9d0e5036b6484a300859eee1912496dec378f689fc4ab421bf1e766776a650
MD5 8218dd080ef35f3ea80797604286f607
BLAKE2b-256 2f0e51b78fb7d2aead9570d0124c9831699be5c64d2fa4a8dd2d0d2c3e2b2059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8119ab280503ba5521ecf69753c439fc91899efa026d77872fe9f93e48b23ba
MD5 9101a57ca3138f3764e9f020d238c613
BLAKE2b-256 0acfe91b91d5d5717db7b62ecb0f745b4ae61a52d0cbbd9ec427fd5c754cd768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2eeaa0ea26d430faffba7cfc1d51db146361322ab754ebcc918b643cc9dfaa93
MD5 30649fb3cde8fa1b7584cf5fba1ae881
BLAKE2b-256 081bb24f0d6ba3951d0c92f4157ed95f08c14aa0782a5f9bdb73b3f412c4252d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 563e897ac8c0c37adda55d31e5b90a7f5a4c5bb834f74f782dc266172d928efa
MD5 4cf7767bb74c5afa6441dde412478ef6
BLAKE2b-256 babf47161d016dbadbeeeed384949ba61d7a9ac0459ee2320eb532589f38d776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2103b3c4c8ec7398445883ac641c6ae0349275fdadddb794df60b163904d84d0
MD5 6e428e412a58713df99baaca6a07e007
BLAKE2b-256 1b4c52e39db1254ed15ae9215ae5ce8550bc870922d98838ed684499d2d672fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 530054bdd121c1452930986ea68af1c4962c30f0e7d4c4c84d424327682c3ded
MD5 ee5c7e87344b2cd70ffcf4da9e2551d6
BLAKE2b-256 fde77fef9a3073cd1810933b626842effe49d66cbd13f35451e1874bfd738a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd831705a18b8b8d09b14e8b0e7c67d7cd218e0dba3ad37ce212bc31fb634e74
MD5 5f5361089a05d939064622f0041bbe0d
BLAKE2b-256 e52d98725be655546af3ba08a2a44ec720810eb8bc834efa68a1e163595b7a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06ad3e2a4865945173aa388031240ac2dc24e76d3d751a1cb5d742bfc84fd2a5
MD5 5b73632156ea99351c82b5d39f5eb9cf
BLAKE2b-256 49b3fe0bfdafb868d397dc4ef45a51b7f1a9c6edc0cb85b1661140f04668e8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32f0411a0c45324e70292aa619f70709054bbe88d380b93f8c88ccc1312f6e0e
MD5 17e318ebe5112e295c02dd6cd4069ca9
BLAKE2b-256 e01715d85ea288b7454e8e552203a378c0ae62bd7ff8c5de9b1851a05533f5d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b2cb7dd6b171c4cd133da1dd7298dd1cd7a0997f45a3bbada7d5bc3d4c32ba3
MD5 cd6a5b3c128cc2bb61d72cf1256191b6
BLAKE2b-256 693dab2ae367077836c266dea3c47a6c1ac119941ef0401dc7de165a6a68cfda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a79f7037286f92694730b4f2c4e81173a39c6227a30126aef6cc09bcafd9181f
MD5 38359bd84ed3b57cb9897a18beafcb67
BLAKE2b-256 90f8df7a58d5304a4725b41f2949ec336e01a5f1c87c9b47e76983bffac16cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ceabd7583c05da273a4c1edfb8355f94e00fbed644525be7d15806cf7a23866
MD5 43e1055b26d59befb9c4f22583e0397b
BLAKE2b-256 66f6efaae322904177da94e825d8c36e4b6a4f2898ba8a4ba382a08ba8170622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d68e4593d99bac37fe418c807a7bcaff36b1bdc97d968ab9933358bf3011ba6
MD5 c353797f08dee1d5d1ce6b3dd518f944
BLAKE2b-256 88e52ae8a7a68a13d14c5fae11baa47cd93fbe74826058d9d8cab3dbeab56ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81e61e8f42b2766d408dd66e7a3ed82bce1336b5c8a5f67bfa71517724f4a531
MD5 fa18ccffb3afba4905670cfa09b63989
BLAKE2b-256 5a0633023320b2b0bcaad6503792b85fc9f3d6f11fdcb991769b1ef90f2de8c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7d2bf5b2ef29284aad7f769ff78e9a7d63c16bd64f461499eb173799cf07131
MD5 57100485afa9119140a790e10fc32f13
BLAKE2b-256 a2f2fb06c677a378ec902c42ca4b4c65131a061955465c65a16a5b48f1734b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 170a4cfeb95030ea4143156105816acd55ffdf04ebf0741320110aa874eb9c78
MD5 542ee12c0a9aae5ab460f9868cb17032
BLAKE2b-256 665f58e0edd664a7b7a1ca947d0a7e1c9a28eb7b06c3034fc7bc373645a40b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90fa467ca731c552848ae06fa0bc40c4daa64e272915b7981c0aae66b2dcaba9
MD5 1a261272e91cfcea85062b3b1e878298
BLAKE2b-256 b20500458c99aa43db3170018eea4868fbe9c1461194abe6f37f306589f9b5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94f2b2f92c74038f8b9b4f3d4209c3c91fdbcd91d1356a6834f49f3ad4a7be20
MD5 d0de107903b48c19697a545f149aef4e
BLAKE2b-256 501fa066f041f52bf26da272ccf91c08b5c09a0765af53238599bb0b9c50f40e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 103a8c0072634d8b83cb0c926c257bce815edb0e855c67cb5183cab56fc2d5b0
MD5 6456400e635c4d1f2215a6f5460e3a97
BLAKE2b-256 758c384fa456c00e2c00464fadf94ab975fffbba57bb2efe208f0b51697f7f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b3c164c563941373f32d31e8e8a11aa26ba6ebcea852580f1d74098f1ee29ac
MD5 4748840d6595071ac472fe3b2efcf36d
BLAKE2b-256 dde66bcc87f4d921fa400bb3253035334618412432f3dde62c6e9c3f8ee393b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b809c538626dcf3a6ba5e79e52f70e4bf0235c86937f90b085486a972bad89a8
MD5 e57b066b51a6c48b7ae0afee290c5b75
BLAKE2b-256 d5c0513b281f2322028de2f73027d38af0996c5d11bb90e75c83b9539bc61ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c596d98293a2e177aff79b3aad811b734cae4e360605688283d204f27635eeed
MD5 b814b946cf33cb5a5fac93cf3e384e0c
BLAKE2b-256 dc847aad5d919f62afc05a20b532a9b9026001a2528bdc68cfa0b4d1ec0e401c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f024a9f9c08d16f5159728baf633ae16c484064439048053f42b7b3019b37f8d
MD5 1ef74358f391dca4ef983edbe72848d8
BLAKE2b-256 b809825abdb92d5ff1036599ba93e675f94310ad591f26be07f592f2f9cea806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e782aa4b7040fc9ce8f93f03c777095b945fe10b9981c6ba8f5a3f4508396ea4
MD5 871a48706cc58541b77ea115a75e680a
BLAKE2b-256 e06b78e9e232a760726abdf2a367295db368b50ed46cb1d0f2e63a35c0d9e387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71bd93db87721612904a8d0a3d66ebee990b4b1f66d3aae2e5fb659e22e06cd0
MD5 245166ca036672f61fccba3ef830b46c
BLAKE2b-256 b67810a37f66c64e5bbc114d7af3c6d9d30378dcf48fd1cee30419153b09caef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44ceccbb4fc623fff6f10445091b33411c6bf96cf9f8c523f150efafb6c59452
MD5 e7f391617bddd2fa140bcdd684e20115
BLAKE2b-256 04eb6c92a0567b1cdac8ec0433e21b83ceae8453af99cdf45413887550a697e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66dde08a30412888c588936a9f4a90a2a060e42a10600e0e85d9c6d47f48d0c3
MD5 ea520a5061585048589a0d9306c579ce
BLAKE2b-256 e688118dc75fcdeac2c2a255992b6a460695606f6918183df58ad6284d438211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b651fcbd4cdc8fc7a72a1780c4f5098c20c2234c027a5af1e8c507f3284b3020
MD5 9c05cf2cc40d3873c2e992b45606490a
BLAKE2b-256 e8472ec2a87572c199fedf831bf61c2e76c9e456436d9c6de99eb81f23685117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84bc8bd8ea9a4157ed4b7a4862b3d9e11d7e66b835c18234787b5f895d0860b0
MD5 edd2a79e085671ede61e28c232d3e8eb
BLAKE2b-256 acac6c0157bd3d0b2caf0d3f256e70902185f6d266287f9f058764cf125c6911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dccdb9a8722e82815d5b49a94d12b956a9dd88afdcd434d84c420af095ef220
MD5 8b9368bf08b896a7009888143c43af51
BLAKE2b-256 5faadc379f619f08a19fec3e0a2686a38ae8953e5befb168579e2f59477754c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60839cbe45c8a3389d4b4d3320c4a716cfcb626bf4e874b904a6043ccbca5a8f
MD5 0cc9705ed9dbbeb95740f403f35e93db
BLAKE2b-256 5dcb2cdd7a9453f2397851ff0f6225c5bd5db5d3e23a1cb8fa2789cf91f18d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2c02f93fe425dd98ec87748c92aa3a42caa385eb97fe0a00977c3b2f72d4589
MD5 b2330ec1a3f3fda555ba9d618492bef9
BLAKE2b-256 778d29e5d27ffb28ec98ed20873bf84582d3be0a3775a1c9f0dfe11ef26081a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6af03ecca5d1d2b5b751a1f9f710c8946fe71b9b043deda4e64eb4f6dee873b3
MD5 71c3cfdc3c1fc96490fb6dd81f0c7e45
BLAKE2b-256 1aa508302f6a47506264a1466d705840e44951928337ff47be8ec6485566b948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89f60e9c1c8f19c4d6c954b158ef5f7a8021768c0e6e228b405c4c429e758a0f
MD5 e8439e286c448206fcada26ac7c7d988
BLAKE2b-256 521944aed63ed92bf10e8304c1a2367f6b13a0b596e1bff87e55c3f7276af058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9bdca0b4c9eb1d290eb8b7a2fcacab24a7d16bc06ba2a954d6ba536af149840e
MD5 b3594e4b62a389b23365f5555ae92bd3
BLAKE2b-256 3dc19e295a8a6414eb70e341db07f0a7d4ce703f1cfd0b8378cd40d5493439a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f74ceef2c6fed238043406b80110add0a595eaa0eca9a5512437ae2ed8a2849
MD5 cbc85c9fb976dfb9807fbea9fad50f44
BLAKE2b-256 aed985aaccfc98e92e602c7a0e58f9acff312c185bf1051723271a88c9d58db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d71340ab8fb437cbb60f58bc8ff7f72e018de4c862f48ef3e449a6f78832e37e
MD5 303a811e93f77a1e1abb08985911ae40
BLAKE2b-256 8990b09312dda9d91ce237df1e406e2a06a820c5d6545c8fa37f5a79fb4ae92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b2e3961b159bd1f7429395faadc3135f42d308a61bb10c70a6e996e392107b5
MD5 8a1a7f9f43ea9f38218c8948ea3fb5e5
BLAKE2b-256 97fa742c6db98a9439ec101a74b90dce7ffc9465975b3e34a1778416f0d17b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 229352a16fb2ca7f95fb503f38e9d417c3219703fa8b083f1dfd4d6a1f4009d4
MD5 9fdfeed0956136b50734dde10b8a413e
BLAKE2b-256 96ccd0498d98db52003924fc2be15fd9334e9bbe9092ffe4a7449df775b79c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2c8e69bb49a7c6a2ab59e00dee7418027169a4078b1ce56246a9a0860f2e08d
MD5 a3b0dad4a7fe2b8f6825eef1d96fd624
BLAKE2b-256 58d47d325670e88b822b12dc18c58e4a85e4252647cd16884eb499e17525635e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 917ddbf31fb48a4c960fad19a712946a955388a1df0bd1303df2590cab3aad97
MD5 39d11b032538a6b7c3e1aed39125fe9e
BLAKE2b-256 402b737bfe3f2887a9ddb9db8f2c1c8f09efc32d0f5bbc15322fd5ebea2dc42a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eabbcdc0f961f458b23386af28d537c18cb3f9c46a18e67b79b1c290a24d5172
MD5 8524738a7f9c5b00a5ffa09b4223b82b
BLAKE2b-256 1aa51fda46e1fe2d98f57d533d14b7a00ee521ac9b9850f451d3cf6266acc79d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0c42a553cbef0203a7fb6d68979039938514fe92b0058e750673bed6b024d32
MD5 727f97f691311d32fdf4ce4bba656899
BLAKE2b-256 611bfdcd01f3618f1e6f0881e2b070cd0f99dedf93586133f2957dd116210bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6255e2640d3545854e836c11ad0a0ebebc796a4f47f98e1e965e0c3d7efa30c8
MD5 f4b469c7ddfcf658c5cac5ce401bbb5d
BLAKE2b-256 5ddb5e42424c4f8ac4812fa354774e560bd5a8a600c34354cb3a39af72bea1f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c76005198cb1d4d20021b73d5d1125e4154e09178b55759081334dca15228581
MD5 5583a285f19c97a50f7d21cab46371af
BLAKE2b-256 c58663d57051cd18775cf94f618e1c49a0b2f7d81825b6566ae76e5b93f05dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e87d46d53b03d3aa364e8b2b03325e2aa0900da22827d87dad86f9925c9278a4
MD5 9df0c098b26cee9345fd02b842123635
BLAKE2b-256 ac572315298f133aad25dd2134f749ff3c3260fa8a0cdd19b4560b9acc553867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 580455497dd5d6f1c5bbb3ed10766fcc45aa2a545050ef2580f1c2bbe37d76a2
MD5 1d142819f3fdc56a25ed2498d55e5a23
BLAKE2b-256 499b7a2eb1ff87d224ebd35c356308814ca38a48a5c33c3f69b7e577af2cab40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26efe884cf81e04e916d59c0fcc70e600cb8d7992f06dd93820879bb756a2dc1
MD5 3eac9b132d9e6b4424fd003713b5d30b
BLAKE2b-256 c31f4b773e469c9b0a340bb413566e289332c723238579c4638c734d80ee9d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 142b7a3a4cdb5af275bca71d0e8a494a51af14de823731d23cb9a4e21914437b
MD5 8c508459aa82dc5d053d25f978bafb34
BLAKE2b-256 1701ed6ef8cb0f78c25d3ad2af03076ddecdeb9012c2a16d48942d154aba3681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fbaede7609395b20fbc53b083e3ad16bdb21f27d98957e5900c4aed7991a7b0
MD5 6dd1e4c5876addfabbf51420009ecf94
BLAKE2b-256 35211966936fff377b3025829d38850bd9cd03aade424f2f57a1680ac5290d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c76883a04d149d892d98a6ed85601d3b82825fb4095592b97f86c2c64088afb
MD5 b8161686a31440994330975f8574148f
BLAKE2b-256 50cb5db60429ddb887e46843ed05308d381cd59baa5814e25913bd19a736284c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 230d002121e4f254101d3b614701655c63d9d17755009d05cb62ff38cdeb77d1
MD5 8605ffeec2f72646c298367b27c212fd
BLAKE2b-256 27f40cfb241ed07d893dbabbc2e209b75ae02c9500ca79b7df64b39c87d23f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc488a82715c6d2717e758bfe296258ebd668d8e3f81f622b1da00027e2efc8b
MD5 d56433165ac5b46c9a1cc655ff874a46
BLAKE2b-256 c7588b306066a78c827b2d66dbcb905de7c76d9c7026732b5ba2d0c79fc88852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0dcbacc9942ade112f9280fec694f0dd2233667ff80d1d6507e26aa6ee63b21f
MD5 b8cbee85df7fbf12f7e36d140044dd1c
BLAKE2b-256 8c1d45528183c2139ac515225ee90925e7497da76fa41f30ff4f9d224587085d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3e5bc2c917933542e8e5c38162dada915f44becea760898a49108daf1ff2951
MD5 71c5f4d40ddd3b912002cd34b9cdcf9c
BLAKE2b-256 1e2df8892f022873852cc52661c49106d29e6f2296a096d1bc7eaf679c6edce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77219f530e6dcf9bbb39879329f4d7bf7c85e38129b8995e7a97b7b05fdc7956
MD5 26330513055756ccd677717b92c79fa0
BLAKE2b-256 bf4a9b5cf8bf2e5eee70d938e07e9fe830efa6f1ed0847c6050d8d8b9dc3f8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59750fc36038921441e6e8430c9fc5caf757f0c1dc7268a4914f65ef9422dacd
MD5 568ceafb7c9da634f9638f20b80f8a00
BLAKE2b-256 9d99a22ce86f7164440d00dceef16563d122fbb06d4ec6cd2bae587dd267351c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92a6c38cd10595aa2f11c5f24277bd0f8d3dc4e46818e8326001603636a89377
MD5 3d75db07be9cd85931333f02072e296e
BLAKE2b-256 9af29c024cd779c878e88a1bff5db9b3dcd399914ca3e3de1bd7e4c409641a33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5785679737bd9706f92926126641cdabf29588ebb796ae3e9ed93201fee0e7da
MD5 6358a957d80cf5a32486dadf26a632f8
BLAKE2b-256 924b3f0f359d9aa3274b74c165cf35450571ce57e27dc8819509b996c6918bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea3bb3cd97eb94951ac3f2cf3f5676e7e414c218d5321be37da22dfb5979f423
MD5 6896ad0592b04bef5ce1896a36ca410e
BLAKE2b-256 f5734baba5a1f5705d5c0a8631d439eedb69d028ce11b726e666640cb18fa420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f98856282184016a452e19d66c6d8b0c2c6c6cc1087852e9a143eb057755dde4
MD5 d66a3a9bbd961ea40abbcc8d4c88024b
BLAKE2b-256 18cac47bf619954c339f31ea56affee15d23e9bbc1a7b7f62114161af5be6f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6a8fc2a1ecd0e588b20685fac4ca494bb6978bc6014ee85f83073380392cd44
MD5 96333e93259408dac03b52ecca6ea154
BLAKE2b-256 10008ffb97dc3f758d2d8333951b336d4133ad0c2226570abcee3915812cb2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fed5e74370ef149daceacfe41cdf67e09986d65e988e5446a96fc8bafc95fc8
MD5 952ecbbc7b7fa03a14dc66a9ce6cba1f
BLAKE2b-256 8ab16b747c70d79f73003d5d73a97944626aeab804dc70352202542e361ee029

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