Skip to main content

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

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.17.0.tar.gz (270.1 kB view details)

Uploaded Source

Built Distributions

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

autosar_data-0.17.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.17.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.17.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.17.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.17.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.17.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.17.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

autosar_data-0.17.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.17.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

autosar_data-0.17.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.17.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.17.0-cp314-cp314t-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

autosar_data-0.17.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

autosar_data-0.17.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.17.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

autosar_data-0.17.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.17.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.17.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.17.0-cp314-cp314-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

autosar_data-0.17.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.17.0-cp314-cp314-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

autosar_data-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

autosar_data-0.17.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

autosar_data-0.17.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.17.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

autosar_data-0.17.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.17.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.17.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.17.0-cp314-cp314-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

autosar_data-0.17.0-cp314-cp314-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

autosar_data-0.17.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.17.0-cp313-cp313-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.17.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.17.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.17.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.17.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.17.0-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.17.0-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

autosar_data-0.17.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.17.0-cp312-cp312-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

autosar_data-0.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.17.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.17.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.17.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.17.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.17.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.17.0-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

autosar_data-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

autosar_data-0.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

autosar_data-0.17.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.17.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.17.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.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.17.0-cp311-cp311-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.17.0.tar.gz
Algorithm Hash digest
SHA256 28d11da2de22343e35c5c59204a816164e7107cb987d267323b87e8d8314c607
MD5 b1ff9ca39ce1d45d1ae17250e4c3a3c6
BLAKE2b-256 14af28a7db8310e8f553e38cdc7596c44682e22e4b376fb13c309a0853269510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a4bf179227e8235533b4ab51dc81af9b22f54eecc4118dfcd165df14d32d63e
MD5 50788f6ee947fb3c0dbf2b7447fec2cd
BLAKE2b-256 95eac9bd42bfb836e85881c4eaf0920c45d580140d356508e92a0158713ff58d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a44c3c0c5ca480ea807b1ad471fd1fdf9b98c67b7abdfe01a9266c15f84c02b
MD5 e216c87796097c8c8ef6d3c67043b12c
BLAKE2b-256 e4457a83f0a5b1f5ac4863164ea60e9ac0624bd1827e4c01fea577a995700c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b17200090bd3f599b1bb68c05c096d029c4b085d1c2fb37a594c82ee36184512
MD5 5ede472752d42a776c1044b0c4e40727
BLAKE2b-256 1617fbdb200456f1c6542976798dfc2ad7d2ff2976dca8c8564eef0b6e8ce3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2eeff332be6b993768c21a4703aae660fa00ec24f28ef4850c863a86eccd502b
MD5 0ada1a404604c33b40015a23936e7afb
BLAKE2b-256 0cefcedbe9fe6684093a0ff94a65062cbe82fb69ed2496502fc9b925799332bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03980c436c7f53d55d7954d86772b6e10537937a5d434fccec3870866aac07d7
MD5 b147e3a43b701fbbd4836cd77bcd4ed9
BLAKE2b-256 111ab1c3143e9455eb5c195c325c279bf396eb52c94142dc607768fc7c4f69a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f6ef1058186da377853be89cdf8d7c382ec1bd7a077db4015d55f2e6eb16ee0
MD5 ac32b112bb4539b8e52c1c4728900ea4
BLAKE2b-256 62a406f4f45067b06b9fd9453abacd9ba3b5c62605abd51b0d82740c486fb633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a107b9ee278eaae02f729c090d87604d238003e21f8c6659a0f1c0e47bccd6d4
MD5 d2f7189cce1db3acf3a0bec643f2edf9
BLAKE2b-256 f929df3b11a5b69206329b0fdd2a8050f7d53a4a8d52a220876e833ffb2150fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0c7ccdd5821397295c12ffceb113f5b4b6712f7953a5d47a676fe717cc487db
MD5 99b1cf2b69d40e1d83d12dcdf0f2f9d7
BLAKE2b-256 786880b981b40568c00be7032ca90718e8d6527eec486ecab277874b11331d76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d222ae3cf3a04454961a28eefec511880a516f41eafb168853dfdc2f87460a07
MD5 6a6a044cefa5c382c2f67ec2949d492d
BLAKE2b-256 3cf593d2e7e5f9b9658919c35a1d7e20f37e3dbd2efeed1c6f2837e0c5966aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a7827801f2727899c34f6361e3c04837ddf44ee6fa9ba0a7d88643c190f483f
MD5 9acb5131a46cfbdd908e1b586c304efc
BLAKE2b-256 e8ff9b1e657ceaea5f88b6d9256dd74ecc5c58a75d180d191485d6a29bf5b2fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 917984092a441d2a76c2161f4236083e2c4d2034fe8229c850c267584ceea470
MD5 225701f30f829ec84e3cb9b9dd3c4bd5
BLAKE2b-256 fadaad269066b0082678b36bc77df9f0f6c9dcd9617ff7102d818bb2577053c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31b7940471ce4074569320d63e254cff5dc40b41307dd996eba39e58c86e577b
MD5 555823ba5724dcfb74e8796d6af4f9dc
BLAKE2b-256 bc9ca2b1922ad85d9d8b8dad4e608e60e27b34fc7d8216cc515d9b7982c8f4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7569212b3d3265067181f8d176d35ed6b2bc1656b8e525120d4eb33ccbea1320
MD5 7d0ae704062241f0f6395547d678aedf
BLAKE2b-256 c2610bfb949a97405d55e00fe5dfc924fd06b5e876963926996524edf37ae48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97a27d2cc634c375ac3b3602039e9fd714660a01978b72602b0c4b28bd64a2a1
MD5 572cfe5f40b86f725ac7b03d3f647c62
BLAKE2b-256 6bb2e527850079d5599a434ca3c4a5bee8c52d654d2e1e167b79472a7cbea5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b388c9c76e8426d167b96df0cad7fd335942a15d24f2c28b7ad459cd807f6b20
MD5 a020efb7ec0260e4f26b6e3956680731
BLAKE2b-256 a2fb9c2654ae8f26cf91884c2289573b183f04fab5a1e2f665d3ea4820e4b93d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40682a96dfddbdfb674889b007d57bb4a0d7454d6a5a4a74ef009536de54e3e4
MD5 8dea67a5ac30361a984679d8913d9c09
BLAKE2b-256 848ba71591c63ece610db3bc6cc895c7448b1c5bdb0e2f8b101dc8e169088bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7a58b648cdf488cd657e666ebb9b0c51eaf49472977aa78393dd141c1adfd2c
MD5 89cd3a159f3271b9a2c3e9091186e575
BLAKE2b-256 9f66e60eb524e7994bdf22cadb2f86c71a7ec625c1ae0eecb8dcb0b625cfdf17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7b4908bdcdf1e248759361bebe4b9a66333053f0bc81cbb3d66e0e9c3ade390
MD5 a01d9f9706d2ff59e17126b14f10d115
BLAKE2b-256 14baea12e1c9e1226e02915ed083b875de86882dd0475d64c3999a9f9a27ae6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31226f52bd4f84d7e4ed1b8ae098efd31c86e99d67209d59aac810651263da10
MD5 9cec875cc12240d5908aa8dd5351ffda
BLAKE2b-256 dbc660ab3593847c105284b19e6c08055bcce297b724e1c1902504fadbff98a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b91ed45afd535b85feb3da9d0abbef5089ffe5c57d009ac001706d898510acd
MD5 53659d3a7d4f97d1b4ae19f227f76e5b
BLAKE2b-256 7d7d5229d7ceaaddcdb23f4a0c0ce63353d06d9163bf52d009542c49813e0dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24193d603f9ecdf03a98b1000e7e09ae9043aa56a06eb2f59a6fe88e55c618fe
MD5 b5cebf5efc043d990555d7032e5d5880
BLAKE2b-256 ab4da87030bea0e05a8026af04adc6962f9d60fd58e76a07de1153d9f76c19de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e483e4f8ee1c2fd0fdecdfcbb86e7020100022feacc94abc2a28ff75a3aea6b4
MD5 8f862227ea3ad1db978bb98672d87ff0
BLAKE2b-256 b7a884eedabea10db060c0a5e7ed57cecd236ad3b3754a24a416ddf362930e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f07a16f0fb905add7fdd716cbb88c221742ca2c3225e82b0411130ace93e5efc
MD5 dd77e7edc7ecca445903e50b356985fb
BLAKE2b-256 302aef06f3e418587a02d600059b100998f714ef8be304fbadb0d3df51d99144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 acfafee5c00a3fe34865170520f6951170e117071b8e5aad0149313cd67ca029
MD5 03446483bf4db202b2a0e7dfb47998c2
BLAKE2b-256 85aff2476e5e07bc2ecd8f4fc3742fd3050f3e6dae12352e84aec1d0c8141670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 627f33e889f167ce60fd7ae5a322a7fa71968dbd881309a3b88a80c79347a57b
MD5 d26c6084f2aa706f9d3952fbb659960d
BLAKE2b-256 99e92c9cf73c3b1d85cac57ab56ea0c4aec92ba03cc0a9a4f10eef14ad62facf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ea1ac7587cc6365bca38a4785c41c0dfc64ee9bc5f266f53e165d2601f3db238
MD5 ef3107c9bb2422fe60b5143831f6e20b
BLAKE2b-256 d40362bc5bd4ff68d2afc7eddc194f0701bcf3b081dfe7daf280e40b7ce3c7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e193e623ce43374e9871517d49555823142a291f0c2f9f6ffe5ca9bb799c42e0
MD5 8deb9d9659fbe09fa58c6a2bcdd87871
BLAKE2b-256 f3e5c931eb2ea6c9228ed5305c14589b567325aa8ab8befc93fbb7ea8b838823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e754e61d6235a7378fc7555f1a36f0e418abcc46289a917e532d5db05dbb7bb
MD5 6f97e542266d411ab8efd9a192784bb3
BLAKE2b-256 2fe549f283761a32fb708bd3effbf819a392dbf3dafd3bbd54d82e19e09e8fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6db6236362988210e59488ce2a8fdc34ccc951f4f95699120353b50d3349edc8
MD5 8a1e9ff4d0f3a6961da3aee1fffebdcb
BLAKE2b-256 eef14109510ebf9d5550a956757f126c1ccf5d3d1160a35d87806be5d91015ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 854a3150bc1b22b1e32aa3fd87fe898afe051a4ddc8be05736c9607ad2842a57
MD5 176ff2c300c20b4889b9b4d5ea92d20e
BLAKE2b-256 e8e0f52a4101b6a2f8889f013a5eb5a9b2537acff8ac2c503f35da71284f879e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4155acbcc654ce77bd6966f9cda1ec22188c273c091b32e3ab466f714aad7d51
MD5 5e8376124f5f737613aea8b4b40471c7
BLAKE2b-256 aa247a3765b532a37c2e0d79c89b339ccb5dd272aa261006087f4d9f4d6df21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32019a16557fe6e5ddb9b8ce14ca724e135f763a6c0c5eca07ddf39bf56dcf87
MD5 82b76fa6169eb2f5518c912bea49bfc3
BLAKE2b-256 3bd88270b6429c9839f1daee941f5121cba94bf4cee5e77c4ac8090fb3ceae23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcb7934a48605dce6ec775869d1eb8b8bbaf8411d9a84e462807264ea50b1013
MD5 4eaf36cff5054f5b0b8be2d4460621ff
BLAKE2b-256 971f2fb7b99b75f10049e1866af72b105d25a7e93adeca7b27e9ee74a4c59e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb6859f3992ada4f022acaed6c99d17f78378f94efe4b7a0455dd1cd417492d2
MD5 30fb791a23cb5d826dfdac42ac3b3512
BLAKE2b-256 bd39ce3bccbb78c230c1df7debc274658d327bcd631af6c459c81c94c39a8223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8b5444e4231d217bd8e15d5ff9a98e3b8cb4b13d20034a6d60928c5f69c16cc
MD5 3ae166bef07625b2fd700ac49f12d065
BLAKE2b-256 a5a22bd38afd935917a5c9b0c1efd8f526941f4361969c0944704bd791bee641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 948df6350d244931a700e4965b2f9117231b79547b0325a2c7f6d29d8c5eae98
MD5 ccd719fdb1a77d74272e364f247ee462
BLAKE2b-256 596cbffead704d4b433b8ece065b375abd63f8c6704bff4d6095a212dda28929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fcb13bfacfa2cdf62a51ef13d915b8995fa51053da264d87c56475cd2a2d65c
MD5 4921b618cd9e6e4f40672354bb5327b7
BLAKE2b-256 f336f2e64ce48cc3bc73eaa889cc34fd2a48f1f3056005b6b2041b45b98351e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3352c90338093c58018c4874f4f660df2dfe14332381b5976641372b6dd069d2
MD5 ff97ff87aaaa977f093ac80ac3efbb2b
BLAKE2b-256 f2b2bb71b7fc4a31200bbbb955b6aa14f4f37977c7747f6b1d6e592e28082384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e5353bad04f1825b28009dc309dbdc6acb9d7d0e99dbbba7dca6d801fb39229c
MD5 62df34671d40230a3e6c40160bcf9e73
BLAKE2b-256 c093856c8f74c81e1e90ca6aabefd781a0b57ee5be6d6f4cac72238c8a84024c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a54d50fee404642503db0eab24a38a954f4fa233f9fc27ea252c2983b95f536d
MD5 5893b896ed411f0958377db779429935
BLAKE2b-256 c95d39559d5d61bd88edc0c3fc763e7b6c364446ba91de402d06d520276c5539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3559606268af041b9ec5fd2a49040d380067508949b3c70b6fb16f85ddc4e0ab
MD5 a02497f812a72bc2e96685d76438efea
BLAKE2b-256 5fb79710ccbd4056c0d3e18e4d14f3e2e91cd4626116eda02a7cfe6a5501d0e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7b52e8ff59b392594c294ed7d93b0e6504533a252870cf8bcd1f815d6fe1bd4
MD5 d2f16b6c8d71ec72f080612fc2df17e3
BLAKE2b-256 2f6aa2169ab1e3c1642ff37de17e1fbf51cbb40aa3c59130b8aeb4052b083704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9e38aee0cb791152f0965fc9043c23221d345fad31b5f85784440674e0ff6c3
MD5 93bf699fd6bd35c6936cf1c6a34dc1fb
BLAKE2b-256 b40d3e85ca5d85acee32bcb6c140d57b3f8b83a5962f589625902765af213185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5191e95845557434c81f98eac1f224aa179e516733cee0141edfe3e3f388dc64
MD5 328405271b84e61a67214c634c06e54d
BLAKE2b-256 dee99c9492912acf2bcadeded2aa90e7febb410b47ec439b3281edc394bf8045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9646c84b103fdd43db6c637385f81ba6f918aab1cfed4efa69801a8f8cac0fb
MD5 328d80cd77bf88eb93160cf61ee30003
BLAKE2b-256 9b5c86b925af4a2015fcdde3a54f002625964891d27ddc25f9ef54a343fb29fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b0cdceb7b4cf54258a6e94ad8e42cfffcd9f28e9a142007c5e81d19b24de938
MD5 632585ef7b0ccba6ab71c178d68036bf
BLAKE2b-256 ffd14a4a64daada36bc28aca3296d3b50aeba42cccef1cc8b1d7f4af0ee401a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 043bc08df678f576e2ed7e505c8e44f6316cd7c5e3886473cf983a4a453ba189
MD5 794d602ed81b619615d81e7e433de2c2
BLAKE2b-256 94c19a9f54cc1a411e13ed7976b825cb47d422590da9f2a6c1c1ebbf99cf320f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eae7ab1641d80b411427b0cf0226f75e550527336b13fa2771c4be617910090c
MD5 c4787855e3ab5f56608fe19576a9bd4f
BLAKE2b-256 d1b05c4d7efdb7c8be2758f0a3e8663b1163621dd2ab1d69d66cf270185bf31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f67ad1495f9403371238fdfc29dff8a0e2b009d8561e066bea73603f786bca7
MD5 881406701fd5d748007c33a8868c6300
BLAKE2b-256 22f324a7c51712857b5e26b5426d1fd7c44ae09fc3e99c9f140f09f01a86ab8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4dc74dcd1f1a95115553afc36e3d70b3042461b80bf6bf48b082b0451673de8
MD5 d1d24593ef7920ac7330ea59a036b405
BLAKE2b-256 c4e9e33aecbc61b6fab1baca786a4ff65333ba276b83247ab3bb5a60b4fedcb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b411b85bb28e5bea24eb952deb182a284d4a522390dd75da17294df6f0b1ec84
MD5 a22549c722aec767b024e27aa4848f59
BLAKE2b-256 64db69c570f25f5623e7cfa393bbd5f75e60ae3f18283b7cb477dc0bf0f25cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8584cc3f7fae4ab4b7284219ecdfd63bfc4074245518f1cc8624c12c97402074
MD5 68625c5895c31cc752c59226b7ac8827
BLAKE2b-256 23d5735cb64121f4214e262a501db9a8bc3faad961f72476252c4e5192caf185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bba7aad880dd2b8f5e928922174fb039de3bd2e4c2afc436a499a626f6e3cd64
MD5 12de6b61d16bea830fad5dfc46029f96
BLAKE2b-256 f091ca2311f0b9b319ad9637457cb9d92ad592013ddff3a1765a284bc62af6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 615db6a45723d101138385ba06f9d4fed83c44187dfca6d6fdf05c82d37ddbf1
MD5 05c462633803ac994547e4371010058e
BLAKE2b-256 443283f6d2bb2769bba52871c5b7555f5c4250a72b4cdf28f3ff626dc1c2f604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6735f76fb874b85bcf95a0becce8d218db58253261a6e92b5764b56b62e5a65
MD5 4338f9727a2e684e619b93f17f336449
BLAKE2b-256 3fc74dbdd4cbf207eec4fe46281ac44a6a6519ddae54e1ae8878af6084908fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eda5f159a8da118e084af8facd4cb99ff9d6762182fe1a4a99b0e2789f008f7b
MD5 78ddde19b213352025c2ad44905a8e11
BLAKE2b-256 de2a88e0dfb170ba282011441aff51746fce74cf920237ec46a84c3868836ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 191a31c3d96cbc63408153ad5c3ac388e008cf2b07cf3d2cd7e78130cde78ae7
MD5 59eb518d6ed13329c1bab88874e5b337
BLAKE2b-256 056fbf4b8a925bc508eb8f1eff38b753394cf2ee695e54571ca4f40db15e4e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ba5d1d2f9a52f73ce5652f4b9f82580223e4597ee3081a2d5f49ca84f5657c8
MD5 39585279963b1552d8625f5d96a19ab1
BLAKE2b-256 d15eaa8af4017ff1d11bed2728f4d9d1b7f8b9444e6e7d6beee62467c37ce0e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc61666dcba2435c87e26e563061724a56f0446991398eae0f36175bda3ff7f2
MD5 402ab911c230eaa776b093c9d24c075a
BLAKE2b-256 34ebef34a67481ffa8b9dcf7037fcaf39d7265185b1f8534d97a831e74c18268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49cece790cb69b5ad59255aebae396080b975b05d9ca4754693b3ac9263f660d
MD5 79be412409feb4a62668f2619c83fbda
BLAKE2b-256 3c7834287e00f53da7ef7076344e9b4a6fe0cd1bfe228ab2baa26e978ecd7092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ef65ddbff7e0075c30c3375ec9baf76116fdda97cde2bf12d617db447923aa9
MD5 79c917eb0c9b31cd1c1f1ede24f47054
BLAKE2b-256 adfde85e1c8293524598dc699494ee14959f89ef03b384600e901aec17e1cb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a04315d8341473b660d34af5882deadfd25ffe1f4713275ae28b7827bafb929
MD5 a1c9a464358a47d880d2ab598d9ddfb4
BLAKE2b-256 c861a7014ad54096412d1047ef1b61752b5ac55d0df2ec189e29afb5b1d53da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8caa6ccd6d972d530d1e33d77f328ea70f387a5f68e579acc88b13c5e80834b
MD5 ed7111967658e2a538836eec6b7488ec
BLAKE2b-256 41c3c6d240a6153e6567b20913b030f1fa8dfd2f74d6d62f2d2c878828c552aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 257681f5f247c70c74e5508ad29ec7877b8e171fecac8fb894fd27a2e96f53b6
MD5 3da696714d827b8c196d68b2b0892e3a
BLAKE2b-256 fca44efd1c19f5e05f3df4e1cfe47a9332248ed7ef81f7a73633408d726545cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d0c02f8fe832cc9df235ce3915002c52c698892b3dd85a896c4a6c0da9136987
MD5 1a94e37db36da90273f7a996f25f8020
BLAKE2b-256 a296e0eb432fb0722b70c94c150b8b4b7aa6add96a02fc3d29e97835decba906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d7c61cd56647b383899c7859aa439fc433433b54d3dd88a77d63cb0259dc763
MD5 aa4714f9b6f466e7be01e44023f4a124
BLAKE2b-256 d6846763d62f92ab671b10ba4b5ae6028f13e18c2c4528a5a9277c7177c3747b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3152fa16d318966e9b117c967619976b4d4d8df67c7d686efc28a8d68bdd794
MD5 d69b82da5acdcd52cf9db7279d62668b
BLAKE2b-256 8b6d5c818216d2cc42a86d0160b1e5e706dbf1979ebcad98b1441e5d5f97db4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79389f52ef2dbbde38190e1d560345e099afb3b5a3cdbe77e4e453012f8139e9
MD5 8d2356ab895e7b8a6b8413352eb31779
BLAKE2b-256 ac98752115093b1f88c87c5cfe62d3db04f1716c7b5be49575deffc590cd5ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a3be0d0cefc7cdbbc60a974c7cc57cc7d0a7c8bc5b339b48b7a4a9c39b23fc7
MD5 e29df2bd1b7161c80b125dc759c88bae
BLAKE2b-256 37a4c512c7f57fabf93463c3af881c2fa1919f5a0b189dcc27cfad0c1bbcd3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21ef23b9be7322975fdd907d3b190303071171d6dd3a58d8d4a8075886468cea
MD5 df0b97b025b80889d65871628a5528f3
BLAKE2b-256 af5422afc56c32dd9c0fab7072326ac4fcf199109bdbee6b3cca528ddb191518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d64c202c7ccc1d46656a94e38e9b3a6c69b94f6a423f551d72702429e6866c4d
MD5 af329c42b046f2cac86cfb100364d94c
BLAKE2b-256 a5b3197f8e2b72a4d97d87a502b5296d889c30477eb6b7351b8897af5e48ac9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c5a3b80ffd4a60031a905dcd5b59bf8e6306a6673e2a96c43d8c2a5e30c0a35
MD5 554848ff59cf5ff6d9bbe1f1dc702f40
BLAKE2b-256 aa0e68f3471c254b54eaf1072f2601fac0ea2dc32b1942ec490be85a08fe75cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1930fe5beac159f63acadae63f9a95b64f9eb6f6a7dbfc3d3d9387dcfed0dae8
MD5 f74868ab9be6760621a2e72356fce324
BLAKE2b-256 6a77f080f8d3bbf9fa8b72714f8dc8af0ccafcee636f158e3da4212722175d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed9478594aec096d65d488219275b8340816813bace82deb51b16ff7c3617350
MD5 7ae200a0aa76ef58acdecab8d69fd5fb
BLAKE2b-256 03ff5fea2ce371f1c7f2a6034e83c92dbae9c9982c0216b0a9a526802f5508dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43eb17891aa6c47ca3f7c122c2590cc0a459d0bf35b57e77efb7f2b407a5ce26
MD5 eb4af1695107abe6c90140996b5b3c8c
BLAKE2b-256 63a7efba0ec7e960b2bc8a6e9f0bf4e465f2c8954209552d95a38ed60fc92afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7527ef29b8983c12c759e50133211cdc42a224f39d53884d3eaef2ae90621f02
MD5 23b5f9157a0cef79748b65a17016bbd9
BLAKE2b-256 83e3357b8f80c03c6b79049eca395d4eaccf8fb2b727d05fa9242c423cb8f9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.17.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a450d7c7b5912a85937f31776f71af1485302b23e01f3a03dc48019fc51b9c99
MD5 7c7a3bbd2a6cac747605fbf427c57635
BLAKE2b-256 f7eb237b2a5ef908ee048069756def7334e3e63835613c17798917a3370f1aa8

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.17.0 This release

78 files

0.16.0

78 files

0.15.0

80 files

0.14.0

80 files

0.13.0

64 files

0.12.0

124 files

0.11.0

125 files

0.10.1

115 files

0.10.0

115 files

0.9.1

115 files

0.9.0

115 files

0.8.0

81 files

0.7.0

79 files

0.6.0

83 files

0.5.1

75 files

0.5.0

75 files

0.4.0

75 files

0.3.0

75 files

0.2.0

75 files

0.1.0

75 files

Supported by

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