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.

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

Uploaded Source

Built Distributions

autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

autosar_data-0.5.0-cp311-none-win_amd64.whl (642.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

autosar_data-0.5.0-cp311-none-win32.whl (604.4 kB view details)

Uploaded CPython 3.11 Windows x86

autosar_data-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

autosar_data-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (805.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

autosar_data-0.5.0-cp311-cp311-macosx_10_7_x86_64.whl (814.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

autosar_data-0.5.0-cp310-none-win_amd64.whl (642.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

autosar_data-0.5.0-cp310-none-win32.whl (604.4 kB view details)

Uploaded CPython 3.10 Windows x86

autosar_data-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

autosar_data-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (805.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

autosar_data-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl (814.1 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

autosar_data-0.5.0-cp39-none-win_amd64.whl (642.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

autosar_data-0.5.0-cp39-none-win32.whl (605.0 kB view details)

Uploaded CPython 3.9 Windows x86

autosar_data-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

autosar_data-0.5.0-cp38-none-win_amd64.whl (642.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

autosar_data-0.5.0-cp38-none-win32.whl (604.2 kB view details)

Uploaded CPython 3.8 Windows x86

autosar_data-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

autosar_data-0.5.0-cp37-none-win_amd64.whl (642.6 kB view details)

Uploaded CPython 3.7 Windows x86-64

autosar_data-0.5.0-cp37-none-win32.whl (604.2 kB view details)

Uploaded CPython 3.7 Windows x86

autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

autosar_data-0.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.5.0.tar.gz
Algorithm Hash digest
SHA256 aad1e048013d0b65b8e5ac75e3298754d89403c3788e787df5184f0624ce51b4
MD5 0358696da60439b6d7440512bb2d91e0
BLAKE2b-256 350e6cbae924f988a2d469b6fdf34041fe8811649ab08658080461e320a7c78f

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d05e92f9b0c4d44067138380db77d0b656be5a9efef8f750ff7cc421bbd02c5f
MD5 93693ef26dd51b7f0f6d8bc3756b6d12
BLAKE2b-256 a36a2ef38a973b5341b1e9001fd411504f9fe92651241c66b8144251610fdc84

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6e1b8095d77bb79c9adced772d85f5f9bfe7a3e59d1c4230aa8be42c790b9df
MD5 707c321fe196b3a9dff8625b52b83c45
BLAKE2b-256 b4fb5a6f74448501bbe3a894fcf8448342d237097d9aa1914909d6420d626a16

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebe4fa824534d62fd0025ef4f1ea113a6a5136adbb485668865ea6328a035368
MD5 45d035a7f6d1b529d5c5fbe1292dd245
BLAKE2b-256 e5a40d002ff4ca6b7c2aa7bad5ba404f320b9e22f69867b61642cbf970dbc9de

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cb2793b5bc708fbb41761020605e8c2b66a4667936c21a9bcf8e42713e037ed
MD5 a2d6a48688e11a72032faf01fde87e37
BLAKE2b-256 72d89b97858950550a4ff5efbc43983233b6bf6f6982f12aa463baa31097bcb5

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25adba43b66e73e5cc90ccae3eead94a1e7650f9585b242918d2034a3b30502e
MD5 69081031a7ef3ea8cc950e374405fd76
BLAKE2b-256 cdd3328381ce41d5f456fb4aa3b4dfece1235c0d3d5da92bd7f6f544c0b580c1

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e6d32bb63d416d13cf7259b775e6ea4a41477fdf30c00152763aa6eb331abf4
MD5 58a62812bffbc41ef23e86f9628546dc
BLAKE2b-256 fbe37b1c67df736798d3d0c5ef2fcfb0a11c999eb61759ab399bbeaa3c9235c2

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20378a5a238ba9b338f0f61c2f3d814f530450561013c35ec15b81f8999c6435
MD5 0c2bb170981840b8b8c6864ff1e49d45
BLAKE2b-256 214ce65b8aeef55483b557e396060838d01b5a929975f78dc3fd2da853ca7f59

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3dcd6d04833c2f411107947adbc5daed2959eecc519bc733bb3bfdec0e53c481
MD5 048df5cd42a8006d02ed88e728d493cb
BLAKE2b-256 0954d390d2e520852c9d5da97ed4e47603dd07c3dc0214abb4128b15682ec020

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b805aea6d6e272345c9b3a7d40142ded4b1ac490101fe7a2bdc17c8abd3a4c40
MD5 1771b00af8b88142fce42b0db210ceaf
BLAKE2b-256 4bb467a1070fb06e876a841a6bb70e61fa33e8afab23092e9de5e2a05f7d92aa

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e83be84c5669d5f90630473900360a4a6ce649f81459384ccacd91612b09a0e
MD5 31836ff5d3a9b0b5ebd6aa32fd1e7620
BLAKE2b-256 5cbc3ee75bf22b8543a0abba07170e8de48b5ddfc2495884c0ff762b1a8e0b4c

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0374136b373d3f03128976be14900f1643c16b6269eb349508c40f9ea521c0b
MD5 cd0f2ff845f3288127a019b0b486f26b
BLAKE2b-256 0541dcc140afa44aadc255ffac5b48b970309c5e2532849f01226dc128350e0e

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f48955b743a42cd5333208aa87d29e73c30273d9f492774b08e1cd73200be79
MD5 25fc31ef0a5b6c67eb905ec2a9986230
BLAKE2b-256 d0863d9b644b9a0a3486aba1530a2e60c52f53f93d0679dffc1c60a2f54cdd8e

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 352548409862f8c77ebd148911e55b289e7be4df70e2879e53af1f6334869f66
MD5 f8703bb510140fa947107cc3e592063f
BLAKE2b-256 748974d49b1c0ae38e1f374eb91bb086786e731d22296f6427c4ab1e54531fb7

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56ba2561ec7bc8aabcc91a566f8d925a4df7014c1c310799f0f672c92ff2f438
MD5 b93a426220ced070aa83616831dc4f57
BLAKE2b-256 27a6b016154660b424b4409a821c32bda8076464cef4284c0a8c6dec34d40075

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a0268f1e75d6573561944ad9d483ac66997078294cd2ad62ac2b6839be17ca5
MD5 b09b3e38a4628c402203908ca1be8b45
BLAKE2b-256 0f0fe00e21639f38df381b458fd3ef2b3b6f0294c6246dbabcfc808a02e17f44

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3311ec56ebe9953c68c72c227c2e8a8a7ab8d4877a89213c196784bc57fa339c
MD5 5b460eb7335db6dc7787e8c3d4ce82f6
BLAKE2b-256 b5ddd2584d86d8735d2104dbbe4560edfbc0bcdd1f3f81468a00667ab4927f0e

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89514bf82edfeb95f4ebfb38352ed03fda624cc1e9ba5336d44ac6190bdf5a2f
MD5 9572e1ef243abfc74af096feaf1973bb
BLAKE2b-256 ea852d44f9886d898dc2bbd823e9c4202a5309a984cb3f6ed5b3433a5775292d

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c7903f29060da3a368383549043d178d859577bcc6bd249d9cd781786431266
MD5 5ae8bd333396d585cddae539f23e2464
BLAKE2b-256 69833477f216bea0a752673c550577a50e4fb3c0f7f210fc08af6b361ee854ec

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 966c42a5d64116b782389ae65c75ee596ff0239757f15254680c78c0553e713d
MD5 50916fd41809a9a3714b6a2e97f8c9b1
BLAKE2b-256 f3364eea246ee6beb2488685a008d5410d71a246c32c6566f3b1cfdfdce36b06

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02b7ec044db8d38b1b92a0e4f93edcb784c69f30945846f3b74621763281955e
MD5 f7ab3fdc4ad4589467b28ca7a2d090e5
BLAKE2b-256 9bc91e12889d2dad770176bd21a2026de4cf7bc1a1ccc05eb8292981fb8b6e9d

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1490af254edfb3140bbd92d0444a748c511bb87c91d383042c68c23997703d70
MD5 7a15939c61b0dda94320ed1e80e3169e
BLAKE2b-256 5e95aedce85c7daaa3ac3df3b630a3fc6d6620f7c37e5631eaca9cc9e5d9fa9e

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e908d9bbcacfefd61871e6370518f1559c5457f2ba5ddf4629efb4e1b6828918
MD5 2d920c452ff2c6e8e00717a9b6e5430e
BLAKE2b-256 64f963d10197497e2b4acefc57a3e030743b51754316bd03c507db3aff6e3c8c

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 457fcad4c93447b299b63885982ab1625f1283021a80ca076376f9624d4368ba
MD5 c924677af6f84c44fa3da7fca0a84e70
BLAKE2b-256 48a2919193d9a5e6ca30f0b076402435c8735517235b75b50a74395a5fe3e84c

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e132bab074f2a5acfb43a8c58098d0f08d78f5fa8679e89f35099a341a0f0e4
MD5 176c387c8f63189cda17aa305cc3a6fd
BLAKE2b-256 42d5834dc8d83622efdcd5c2bcfffd0ca53bbe688fbe56d8139b35c6d66bede5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9a221f57eb6b6f0f0601091465fdd6f6a10badf8f10eaca9244c89e4d5f98ef
MD5 87c3ebc0eb518e5c29b4424040ee82d6
BLAKE2b-256 1ec3f3e74e0465611ca95147d01076ff082b9a8e2f0686f1cc3d115e4359fda4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72dbe24dc2b8bfbbb899ea010c3ed337df272f3ccb1c97e7e89403f6f01ae4f5
MD5 3bad388b1cf7a96d255c2300859bc7d6
BLAKE2b-256 cc2759eac2a8640a40529a2bb82c2cc6f9a80823629dab3bc03d4fa2c60a7b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6efad4bc0c2dbc3bfd803d7a27772eeb856e0bcd2bb26d21f2dca4323f64e077
MD5 c636d4f75cc6938cb6dd34e7afff3c1e
BLAKE2b-256 acb8285fe7ecae5d6ec831304fa187e1473e28ba308b4945ef1307a3e6cbd199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34b709cf1b8a4d211635342865b4706b20c30a0f7b2fd997f659748122effbf3
MD5 7e758f8d163c40dba8100da64209da70
BLAKE2b-256 7dc04280b9f44139704914c24201fd580d18e63d794a4f6ff07accdb3ea95309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e6d074c2c9a07622274d981c7be217b459d7811a3d32d3555c17d16e7c390e8
MD5 cfdd1625bcf94f209cb0fd8d197675ab
BLAKE2b-256 def77d9a704de1b4766b9943e65ce8c2b0d83881c6fd6d4b656914afb852f251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37f42e6498c32cbc27fd4afcdcafa203936ebfed320e12afe9f4806d07fb7b94
MD5 a359e164fb18a478890b4cfe3f6fd426
BLAKE2b-256 9833ad2633b531f80c1c1c2b2f8458cb23b3422fd1950a6894e69e706ea4f17d

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 29152ade4e2455ae8a2f6db40b011dfd508c354d56d5d5fe7b3c3bd6ac5baecc
MD5 a81785226abc3d9c00f84c47861e06d8
BLAKE2b-256 2ca3dc3fd08737273ba70fe1827f9f8e0cd4cfd9f02f6637e1ea8a21ae67fd8a

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ab3239b1d7f2e3d197c6042dd0dd46be380e5105fca9b5d371d340b6a0270b2e
MD5 3b6d9fb2f0c5e7bc2c06a4b4fc03095a
BLAKE2b-256 113d2efdcb25735b4d23dd869d994c60b986803ad256d549bb24f6793f8aa205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1e4b76b026be1d2fb3647fe3bc4c41765b1ce1fcb62a5d1695eabde77823815
MD5 e179a7a06314190d190df86a0ce67d3b
BLAKE2b-256 517e0dc820271d0938d7d3892fdc5fe582dd892de5447ddcfe6533bf94561345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65ce135da3d563d50fb63b0f9e64c207f2f80b6964b1ec4aa57b7cd914244d32
MD5 9f71babe26d88d4637b1da39c038a9fe
BLAKE2b-256 cd89fcb1e98d52f4093f760090ff6aeebd19aea3a041733086726348c0677012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7287bcd9aa8c51f2f4d2f6342ca1651e28a26af36e943108dbd443075cf15d02
MD5 0411932bc40e067245364ab04ee22856
BLAKE2b-256 6d9b6583913141a6dcc435eef1a2e6941900653cd2ee38e90b3716fbe0db57be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ed6720ced3ba68d89f2062264464deaf79c840863fd4d9ed8dff6adc8fa2642
MD5 fd98a032141aafd528d5b3032a8cea23
BLAKE2b-256 d8de2f5d3cc0b4aa6223b626c49e820293e32a51a397daaf43358eb75cc5dca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fba2176bfd3a11f74bc8d73db2e7c1e8062e6ca9fb7a605165c818bb9fe9539
MD5 551ca2760c6b5b8c030ab21ef6292d1b
BLAKE2b-256 a91d32ba2642b7627043385c6ef5d9eb4df3fb02441cdfb16d0b7580224c0bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 54516021e626069f2aa1ab26303b50e4b707bbd215c6dd5a606a141f85c1bcdf
MD5 40881349d4a5fc8acd966330def66d8c
BLAKE2b-256 e4b50fc64ca345cddafc82c43aafb2dec4c6ae122026ff32b80a30d74dad825f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c5500862bd1c626ecca4654fedd6afe7949c6f03ab1c259fe690e0e8ed92ff
MD5 3e6d4f072ea1195d94e17a09159c514a
BLAKE2b-256 c399b82647baaa65b89af1984f0eb175213e445d63308354779ebd015e2dda6c

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e8fec385d98ecf3147280f06370da8e30efa687fa71e3ef7dbaa37e48ce7fc7f
MD5 76b7ce7e4fb2540299f53587a5873c2d
BLAKE2b-256 21ffd3c9a96976ffd2c60f8fbf52ce52593bceaad9fdee0d7e92380bd9c40fae

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 74a5afe97e54892eb648d60d0de43b13dca45520213dcc9b5b46e079f9cc2fd0
MD5 e25c535afe762271b9e5acafd17d9fdb
BLAKE2b-256 e59a1ba0dcbe989d135f48ec4052bfa3815d113276a071cdfc986c33906a3e44

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5f63449c7a6303efc62dd3aa1ce6016d8ed0fb357636d8988e56f55e6c98c0f4
MD5 5ead56c8c17379c95a6e31073e2c4e7b
BLAKE2b-256 15a18431e708afc145fe02f662b0d7a81f1439125b0d45c44adaeb95b4174c45

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfc51835edf95199c2dc25b192e460b87b66ed204c60adedfa4859beae7749f7
MD5 5d451c040418488203ab22aa2159e22e
BLAKE2b-256 c96d4dc473ecaaf2c80f2f1d16fa17ab23d1d1c738d23b7c6b1e8594153222cf

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 162733dc50afb1553cb7b2ceaf1d35393b087d26b0391002c333016477982c96
MD5 960e1c57d42b83471db3cc8852af827c
BLAKE2b-256 42866ead0c34e883080f474ea1b49178f667b200a02a68557e897647f8244323

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0557b1c30f54ee864685187e3bb639017e6c6fc96a058b75112a288d157b8ac
MD5 ed2f5d36f3395ada6e72ab709e26d559
BLAKE2b-256 d4cdb086b7afd07228c49ba2df0de6ad00f2cbc0bade07acd7b2043f6669b942

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ac7f8ad13fad9e0669c6f33b916bc151b6785efd3c4dc1be997fc8a85e1da19
MD5 1cca1b76b2b76d624bd9182564cc7fe1
BLAKE2b-256 5334aa53d2ea30ea98303011689fe753129df2d5252c4953ba7948ea48237e8f

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f0c4f7844b91bd26f2b7fa86de924116a94cb40f0f606afad5f93abd8219ae1
MD5 902a969015ab30c2758a53bfed7325ba
BLAKE2b-256 3ccbce6193764215ca4292eae2d62f10d7b88a72221c8fccdd45e3e9d7a9dcd1

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53fe0fc7cc99c8bf81e979042d6b92e5b5c1951db8caefd3f0cd77d844f47ac7
MD5 5ad5209b2e070d49229f7327649d2a1f
BLAKE2b-256 6e48765f485cba9de4fa316c87aa5b28b7a73b96b7d62f356edc02526e66b2d9

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aed4c1db512ca3269079019a12d692808ed9ceff85ca0de0aab873ee6d20450e
MD5 a454fce68ee885afff80681c5261b815
BLAKE2b-256 a0baa054a04108cf14080f2d233dd4dff9baa630182f391a674a484309a24e8d

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f65009bba87ea8711aad97c969454df1a275e5abad799cfa417c9382cd12aec6
MD5 0e304b9a100e694f29eb7fbbd27bab26
BLAKE2b-256 52a04fbe7200e035979e772686c8de82106e2d25c61089744efd815c08b53b5e

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4251aabb426c4beb7d3348814925ff05bb0080b8e86c21baa70b4c2c9b51bcd2
MD5 89c273e84f20dcb65909b57562224c34
BLAKE2b-256 31d62f4a3af2ddc386cef34ca197b2696174d2a03bce66607fcbe5a68d442863

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c82bce79113856a3934408f1ff6dba3984cba51431c8fa7829b3c54d21d6105f
MD5 21bdacf0da00857ab39af4d200c6fcab
BLAKE2b-256 a55f4792397c06f2f3d9a778dc8e831860300a8d938bb90cdb8532331803a2b6

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7359a6dae0bde1acd00e41f0e28753beeb2e4b34cb0bb5482459c5cdbdfc829d
MD5 9fe14f6e8b068de0169599081ecf9156
BLAKE2b-256 c5c14345b63a80dbe6cf8567df14ea682906b7fef3d67412fdc8b50c2d532b42

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 851d59605e4ff02ccaac8e112de006b2228d04552734f94b91c61691abea2567
MD5 bc15b252a066b60be8af03550f0ebd25
BLAKE2b-256 f05fa21aa069e865aa9801be5d1e2749ff32df57919fe3707f51ddc645e914a8

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab69ca8110d202aefa9bd8a1957286ddc2976106719f92a2197e425ebdc4b3f0
MD5 ac0ca158fc1bbac3327c6386fe0ec9f7
BLAKE2b-256 b080de40276e3fa7f3d74a2ab7df9e4f63de498147d866604966fe1d3dc8cf2d

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 323512f1d808b98b3bf73d34b6ec7123b0d958f3ca3e529b7770785ec729cdc8
MD5 a42391afa80a856eb5645790ec048507
BLAKE2b-256 19305cd6159269a5cebb13ec9582859b4395330e3533d5b86e218e0065cb950f

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5589dc64019e8394e4e4e7d9e0091cf72c2886cd252a0bd8bc5de65b27a6d14
MD5 04e1255309a788ddbbe7dc69152359de
BLAKE2b-256 a48c454cc65938e0e5b3207c85488a19523207c2d5b805d7996175996da6db19

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5bb2f8c29b3ec4dafd5ef2e2d8b99e102d97058d2f8d0f9c0be4e47fdb840e9
MD5 446add567a79ac00876c3c9984b40827
BLAKE2b-256 1fb019a179768f7369ac766292d141888082dea71a86c83266818c1d674d6d7d

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a751e4d0e30138919f464a884786262b4ec958d2ebed193dd2ee53df98372b55
MD5 55e33c03fb352500d72bdd0a132ff25c
BLAKE2b-256 7dc1122b014ba798f0d6fe19dfbd48f8e55cb2802908043d690da6392fa7b773

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 bfa10ae2d3c3a863d4175c7762b000ae62d024061b0f6358aeb0c92439d4480a
MD5 517b23804e10b2c4a27557558ed0ecd4
BLAKE2b-256 cc2105c1bb1441b95b5016b2d3ce7915b100edcdcfa6ecbd919c4c64e30b075a

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b59a11dd140136409eef1a1614a83c4713b871a5249822e71cf0f49c776eea8
MD5 693e6065080ccc33946692c69f19a893
BLAKE2b-256 9047fc4b635b915a00c7b0805d083b3f315472c272cd7d0dc9ef33a2bb88a5cf

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa276876cefbed27f705e3501ac0d3cb720a2ccbda17d7c8cdb66cc90c106496
MD5 d82bcb2df31950353bc70b339b5222ad
BLAKE2b-256 d5a8c9594a301fd85d20e622d7f7b95c43dd72c3c794c1826efe87c32621a508

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5dcbf36a33b4e4dab0aa917baf174f74f4717625c45f27741e0b2b4d94ee5750
MD5 c5a4e8303f76eeead89eb9f92a96567f
BLAKE2b-256 27dba2b49fed0764e8845e08f5329fba5e84340b6cabbb7502c664f2424ae1af

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a17315619737f7f03343f09d9af59628665dcbae9b9ebe31e4bb43b8de1f8a55
MD5 ab9d57f25746f1ceca660c77576574b6
BLAKE2b-256 6fe6411582e2678f017a7250cbc86ad0ce1641aac553b8ba14c27e6a9fdbeb21

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97afaa671b9ef5126472473925f3dec28c4fe7fc5fe6382cc19f73038c012e08
MD5 fe0b175d73542291936d7b6919e195b9
BLAKE2b-256 7d94d2d9a5087a15aaf6d88fae71a8bdb9a0ceff5765b1c0efa6a07fdf7be9cf

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d5f49f0a08e07e16a09f964dc127fb24315e633a304add5d0f9e23f78a34182
MD5 11ee0751b0a3416b0c8743d08fd714f6
BLAKE2b-256 ca5cae3a4ccd2783b82773620c2f347210ec68f2058609b2c41bb73ea36172fe

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 a3d88efee65754815c10f729e85b034d331319a6e0d6d9b3f698951dde8020a5
MD5 f70c61e040112a181f76727b074ce4cc
BLAKE2b-256 ca6e3e4f1acb9246e17ff8560f985dab5479f354d7f2925be29ddf8bddbeb90a

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-none-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 ae0a61684e273a9c43cd3f2aa9416fdb28d2287dd4abe8a2cd9deb3d54f99825
MD5 157debd625e9a673b4094093e7e351b0
BLAKE2b-256 5a050d8804770b27ebf037e20c2837654b708c244cdd5c973f9bffdb68a8ad12

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00e8e6e96e7e5fcda46fde21ba8d63a5e8cb3cbc71c9666eba03889140c3904b
MD5 ee7b731546b2db5779a6d34dae9dc46e
BLAKE2b-256 eab47c6f51ab125f5e00e0c253f28d92f5c4103459fc310232cb31a35bd53017

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb49fb5a37058a79e21b8ebea89c532dba61864a3d7cdc6d45a68be0b7f492cb
MD5 01e4de2748af89c6e15dc895fbd9b63b
BLAKE2b-256 bad3eb13f2e3f6109729e180fede399adf3217ddd3ba264309f8828f1428d59b

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 530dbdfc7f398297b5947ce91e265baeec80aaa7d3629268e7dc192d4a5ac15c
MD5 0160ffb7c22f747426cdeaa34f43fd5d
BLAKE2b-256 8234814aba21b570ee9cd6e6729f77aa098a677fde7eeff9456230c76bf181e0

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a2ba9d503c1633f0aebe8512ff225daaf907203d1d8cce775207441c9116e98
MD5 e22ee08f4f59dcc14abb022c67d25b84
BLAKE2b-256 7e6b7d9354715f2dd25b4a2b5cc10ef2c415fcb86a73913fa84fe80f47a9ab8c

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc3008a677fcc9d85304290b12158dbdb99f66960e1a6b2c74ad95f583fb9108
MD5 a9f4098d1a9f67cc62f0334f03e4225a
BLAKE2b-256 ceeaa3a58e57bf899136479c9ae57bd30ce79bdf69a543829a8f1d2cad48fdc7

See more details on using hashes here.

File details

Details for the file autosar_data-0.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0864bb086574d989b4c9c577af9bd258eeff5e5b8f2fc3ad1e8b1ea84e27034
MD5 f228f15bdcdb59cc18b83c292b031d2a
BLAKE2b-256 5ffcbb560ff5435180e89089a2ec8a58050d5adcfbabb61680a6257f1311c160

See more details on using hashes here.

Supported by

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