Skip to main content

read, write and modify Autosar arxml data using Python

Project description

autosar-data-py

PyPI version Github Actions codecov

Python bindings for autosar-data

Features

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

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

API documentation

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

Example

Load data from a file

from autosar_data import *

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

Load data from text

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

Create data from scratch

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

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

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

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

# set a cross reference
el_fibex_element_ref.reference_target = el_can_cluster

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

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

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

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

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

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

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

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

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

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

Working with data

from autosar_data import *

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

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

Development

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autosar_data-0.8.0.tar.gz (37.7 kB view details)

Uploaded Source

Built Distributions

autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.8.0-cp312-none-win_amd64.whl (680.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

autosar_data-0.8.0-cp312-none-win32.whl (646.2 kB view details)

Uploaded CPython 3.12 Windows x86

autosar_data-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

autosar_data-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (786.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

autosar_data-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl (796.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

autosar_data-0.8.0-cp311-none-win_amd64.whl (677.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

autosar_data-0.8.0-cp311-none-win32.whl (643.8 kB view details)

Uploaded CPython 3.11 Windows x86

autosar_data-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

autosar_data-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (786.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

autosar_data-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl (798.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

autosar_data-0.8.0-cp310-none-win_amd64.whl (677.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

autosar_data-0.8.0-cp310-none-win32.whl (644.0 kB view details)

Uploaded CPython 3.10 Windows x86

autosar_data-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

autosar_data-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (786.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

autosar_data-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl (797.8 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

autosar_data-0.8.0-cp39-none-win_amd64.whl (677.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

autosar_data-0.8.0-cp39-none-win32.whl (644.5 kB view details)

Uploaded CPython 3.9 Windows x86

autosar_data-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

autosar_data-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (786.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

autosar_data-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl (799.0 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

autosar_data-0.8.0-cp38-none-win_amd64.whl (677.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

autosar_data-0.8.0-cp38-none-win32.whl (646.4 kB view details)

Uploaded CPython 3.8 Windows x86

autosar_data-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

autosar_data-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

autosar_data-0.8.0-cp37-none-win_amd64.whl (677.3 kB view details)

Uploaded CPython 3.7 Windows x86-64

autosar_data-0.8.0-cp37-none-win32.whl (645.8 kB view details)

Uploaded CPython 3.7 Windows x86

autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

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

autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

autosar_data-0.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.8.0.tar.gz
Algorithm Hash digest
SHA256 6b305785213f69fdf6341e1d44d49741f91d5a0c99b2bc111491bd43ea5cbad2
MD5 5598aaa1a4a2d0940f495360f0ea046c
BLAKE2b-256 c66ee9235cf0b338ec719c4ccf0daa894aba9f1c3afb8a07a4240a3e59c8df74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf75fae56bd90c6e0ad249eaf4d4f12d9a78060d9f8a9f7381fd3c2691106f99
MD5 337d770e98cd11a4cc127d346392a26b
BLAKE2b-256 f618b299ad77fa45a4f0196ce0cd3f7801fe07ea9a0fe906b61833cd3cbae2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73be846f54da2f00d99381c09baf9d7b3f9f7ef2ae09a79a25ab602a0bcf5832
MD5 cf566a90b86792edd6f7c6fd1ac76ae8
BLAKE2b-256 5f8697e780693f2a50f32de403d96a57fa22e4f4a5e3cb49f508c8eb03912b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25b588d5d142b242365301d5defd9fcd883892c4f358cf159f9922d026e54996
MD5 74e08cd497d106350e4dfac5ceabd646
BLAKE2b-256 bdce6c73fa2fe5f5cfaa7e58bc6e10f44a4f388b036c7909b181ce1d13303768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce8c55ecb57b90e557073e0f7ead18ae0efd354de86cea30e067947dfe778a2e
MD5 558900aa8cb46222cc26161124f4005c
BLAKE2b-256 ea237b3a70708b7ceb7ebb828df8a31374811b00b515ecbcdcd52b792e456acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb293df9c43c5a5508f532e787c3d94475b3beb43f15bf87e4605e4137f1f8fb
MD5 6f7e5e2b419ada9bb80e21eb8906a773
BLAKE2b-256 c71249ba256d8ff774d82b1d6db6f38071e1912eaa95d0c736c5436525ab6cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2001f546b62ff047bf6b558f2ea8338d493f4e2706f439bb14bb844b9f98456
MD5 5143174a2d7cbd1e3929e2eebd7d2cfb
BLAKE2b-256 a21ac4462fa2a530bb4b235d31a141052a99f91ce00630e617ad8166321802ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70faae79a4e0b6c6dc5d271dc8e76b3e6f044ddb61bc836612da296c5e9d429f
MD5 866529cea8d0d391abe539052ccf2bfa
BLAKE2b-256 a8cd9443766fc96d7a65ac76665deb9d86368db1111c269fd6243b3b0d881886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e89ac98efceebb828aee091a96045e0994fcc6bfd37f3ae83e4fcb8228edc783
MD5 5ca31e7ec181c34bdebb47c3989a14d6
BLAKE2b-256 7d76955e36e4b5bfc554b1381217bc7ec9af450a79ef5849ebfef52500fea709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db2d847462363408a296bcffb61535502d2e2228c81277b544cf319688a59b5a
MD5 f8e18d74f72fa2934e37affcda4a5655
BLAKE2b-256 ada4f22182d8f67a6b897d50284b1e692b620b2b89ad397e1c44b42a232bc35b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bd68870f6e384184f7c0a326ca0fb486b1f2ef4714bc3763b134c45b2f29933
MD5 90926633f7ba6caf44a84b5cc037f80a
BLAKE2b-256 ef05359bb4125ceec83f58fc86703813e2bf5f251baa7c22fb84fb0522838118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c5095781e6bb6d90b156ef1088013d89eff47837168a75ecda8ff64fe164d47
MD5 e4d131fb138269ba165b88c212cf9f23
BLAKE2b-256 7efe86185cba4b9f90f5199ac565b64514b47ba8785d1236e4f239feeb5e6617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c2abd46b4da92591599ff7143b0dfa737047ce990620e381b2185b4389b1c07
MD5 f02787f6b24d85a8c4a9425300f0572a
BLAKE2b-256 042b8d3b69b9f40283ea9387666ac23bb735ff582a760fff3815580495f897a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14654f413e27fd26c9485eb5257b80e08aa3cd54b74ad935aed97e21b137aac0
MD5 b84ca64e1852dfed10dfdb161d7c99d3
BLAKE2b-256 38644b8179d8cdaf5a21843c0cb0e1e6a94a44f84946354de9cee42a7113bdd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba45147688bf5c34683619d024269e1c5ed2e243a50ebc8dedd32ce801512d59
MD5 0de7cb43c8a21fdf29c2179b2a769db9
BLAKE2b-256 0287614f25b54a4daa164717edb4f843a49d9507a0dbb9ca22c913ab451c1baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd155b3f67f0247ee4d2ef4e398287f4817da0e144b6724165ded17b5afcc174
MD5 2ba6857f33d5914f3fb9deceb4de7e8e
BLAKE2b-256 8ceb6b8a715bf78e85aaf06e14d4dc083ad5be519842ea3b0070521dc40d6c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70304235217664db58d1988815c95353366e3cdf402d110527af07ca0f983f24
MD5 07e8c2e207659da9868be1028bd7c745
BLAKE2b-256 3be36e538f82ca34f71406558062cbea9d37f5590e51c8758734d083a6e55e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebb786d7862e48379446444575d1f5eb817daf5fc342a4081ae3a3ca5aad3a2b
MD5 727ab71e7bd6c0b2dd7b5762eda58497
BLAKE2b-256 9bc1a6a742234acd9700db348f5ebe4b2319c00bf7727a313757a9f9b0f5bf71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b98922f600166377abcac6163bd63f7a3d2260c3f2cdc47198fc42a81eebfaa
MD5 f74ab553127d543bc99bc76f017a0e6c
BLAKE2b-256 321eae23dfffbe8a052a088e478adc6c7f2ec27b31081c956a67dccd88b1098c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 616c38c9c1b47aa1b7676b00f41117cb6331a809dfe55415a2cd6dbbefbdd1aa
MD5 e3279036ea2b55446faca6536d987f20
BLAKE2b-256 7a83d8387d15badab156a53c36df497d4b901af3c5411fdf4eb737f366c004c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b8fd003bc17ab09cb5599da26d2ee5801dddd8dfd336a372f389c6ef128c38c
MD5 51d3b2e83689993771c6f5b2827a772c
BLAKE2b-256 a59319bcf206b03e84582e7a8ccfec4eb7f23bb329713c35e805dfe01d811fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73647f81d5b8021e83c1e830517db51bff9cf7a6fd6e4fff2343ce512893843d
MD5 68db231664a52aee7e858c7d241646b7
BLAKE2b-256 76c24ca94ff76331de095dd256a295bb77f576302cd43fbe5188d002e5a1a721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e73e3ac47dd2f2c8c73f17504a40701f867c40bfb69ce0a7e78c77da16b6b7be
MD5 7ec7d3ae6f16bad5495b8f53956e4fec
BLAKE2b-256 6f00fbac7a033ae0538d9559198afafbecefe7a375d306d71b2042fb8be6c4a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8076722d817ff6fbdf48b1edb5d20081693902042ad011dfbdeff1c433504b7f
MD5 5d3e5bae98b7073f87548bd7def0fd52
BLAKE2b-256 ed77a4ed88299d508144ec08a7035862c48fdf9985aab746135f99f8900a40c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc65af9df19b3862c5e8c523f354d40600bea54293119a5a9408ecc0e0f14095
MD5 e555fb38a69db3387a653734c8ff8c22
BLAKE2b-256 8c1f8a14529d112ab97a8656bacd3fe2c4b26b235aea28b9bf152f2d8200bf64

See more details on using hashes here.

File details

Details for the file autosar_data-0.8.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 17d5f076a5346e123802cfdae8ddfcb2f813885e274e15286a09a164e4655d6c
MD5 62ccae45ca073d712aa58df74ba70fa8
BLAKE2b-256 6f302a6fa696522784635dfb255ba9c922a900691a7f781569caa37aef33c96f

See more details on using hashes here.

File details

Details for the file autosar_data-0.8.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a6fffdca6d8a574a2906a2dbe7c4b77b38bb6a568f9905f242531bc0a35a4afd
MD5 ed2012085f17d0e713b4ab10d39ff6d9
BLAKE2b-256 fe50d6c00a917059aff5fdb9531dfa3c1c77272dc2e6a70bb205ce6499355847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b790f42b9c4f87a304d6f916c99924a8c4582ef90ac7d603938de29cf5d6b5f4
MD5 8a188e8b0e1d159a8bd5b90f9e71f781
BLAKE2b-256 4b2b6f4578aa313e3e01a266870faa1488394d1071939a102274cec08ff1e9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 459bd382f07cd9a584de0d2ac7084140749957ac197dd2abe0ab4da7d323c67d
MD5 2f3878fcf0933ac4641e763dbfecec45
BLAKE2b-256 4144aa8fc08bd4555f8d82676c94356aad153e25e5e6f639fa0eba9ae70a08b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c989525046d49b10263e05fe6026fce03d46c509fc7039138ace91a285d9b44c
MD5 f2d7fa76b5fad2cbbc5067fa06767668
BLAKE2b-256 9b4938a95bfbe7a260fbfdc2f33087ac492ae49a6a0330d91731636e3bf9fcb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00b16321d899fa83b20c5e559b146fdce8de300bc96e67abddb74c9d14c5074c
MD5 030ffedc2a60e6b676ebffef03588c12
BLAKE2b-256 a8d90c5bbe65d8cf5b46db634231bb0551c9343155fee2785054550a62474baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad12d3f4ff843f7b6e86e5c16732e755ad13917b51d8845dcd529bef20b39a4f
MD5 114afcbe9ab487b376cfe8b245fa25ff
BLAKE2b-256 da8e1cfdbe6863a18f5e5ab68ab589b214bfaac23607801aee29d7720366d9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a74e83ec196a44e6bd292e0b7bc03b0acd50975b46564f037dcf0fd64f1eae3
MD5 e5fa48675ab8121aa8e5fbeb0f514f35
BLAKE2b-256 039dd2ec6f38413b8541c53539127e41c5178ff70aec7a65bcb853e422320422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0626854f8406f93058319e855c18ce494b24e8f6fac2dae8393a7ec38de47adf
MD5 9ee52e51702d67502a68928d19387c52
BLAKE2b-256 38fda150ceccfbf4ede031d9b4daddc05d604a578fcbc2d50aeb6b9c3a8a13a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 002ed20e824cb4a36731a638657a25749bb5fe5770278e51eb36a553e5def2d8
MD5 cf3bebf52eeba855d967901c70f44cdf
BLAKE2b-256 d544e1228114fd59b7b7679f8a66fdaf306443c9f0824fc6299601bcab0c961a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9c89b604765f60f8bf8bdef3a3892d6a4ef2346add92b85b804ed2257b616852
MD5 e47f61c59c27df0a03226d56b7366f5b
BLAKE2b-256 004a558417ce0dce2043cc48bb693b934b7dd8ac2e1536421cca938b209c2b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2d198583f31ba4e7fdcdbf02651966e22d2444319b01bc66d6f269edcbad5594
MD5 eda4946ffde20aecf7741059e1cc4495
BLAKE2b-256 327bbdfa57f53b2a5a53537df08fcef7298b1ccda94464fa6015cb146da3f43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3775722c5ae2ea7f04b1854269991156c40d4462f2da96c8c7a45697b6a84b3d
MD5 36b5378df3419d6dd3ac74056ed55898
BLAKE2b-256 c0fe8e52976a96d5468e35196357d182862a70b2daa4bbe0f45531b399598491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 813f865286cb3b21f439070f7ff27a0c0952f6180c86b01f538b206b9f57c8fb
MD5 0b319c64b7b4e6c514b965fad6b08519
BLAKE2b-256 5108f0d90d6071056a9145ee7d52494bb3c55e7211b3e4bada32bef446ad496c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c014bf2bcbc191ccb27c0c76992794a929d1db9ab5f300f8a16c247056260bb
MD5 0bf068ec1d6f96ec7e2c6d34c02e0314
BLAKE2b-256 9a97d8b8811646348eded1ca5606131468d76b86aa18b2b9c8de5795395138fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7af6f1a558598c54cbfdd2a0cb68aee637afac3c93d95301c079646352cf91e6
MD5 2ff98ba4e190ab8b540a87eb77767ddd
BLAKE2b-256 69b94ce775ae3eb0fa5ed1036061e96cf75b1188f1b6827b406f80d95c1bb599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c41922eb6e4bb52cde645abb8ca9acd44df581c267ee362a87ffeeb1555c4dc8
MD5 fc0bd7c700169cc537c0e2c65e11bf61
BLAKE2b-256 abba26757e16c09b072a8ae4e55c3d735e4ec4b609288a47b516cd0ca07ec0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f645b2c28a37f63c16c41cc420f9abef3b191422bf95b55ff8bb2acf64ebcebb
MD5 edebb0b494b743a65b7293a603031ded
BLAKE2b-256 d56631e4012e39109fb1d9eddf11c35233d47a665d2feea4f01cdc6568d736af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d3bf4ed43e139f5296c97a9d4992993e5720e67936f7c3cb3256e3c73cfe919
MD5 ca8a4b25d23e7dbf7a67eee2880a89fe
BLAKE2b-256 dce5516072b9069d345d06f0679ed65d8111a80741f8c96a975a67819aefbbe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f7a7fd27c808dfa22df5a598cb66868d9655d5f44448140055668a63506b24b
MD5 f2eb4a6ea56038bdd67c2416eec1334e
BLAKE2b-256 2da61f7e1a216152779c5ab21ae68af0c3ad2dd8d9ba2eea8573c443c4f1c370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a1d7de2d1e39acef9ae6e38fe4a67cffaace6770fcee5fc088b66bd405a7e367
MD5 2ebd313591599eb336d6f2acceb5738c
BLAKE2b-256 a49b754e494dd6d4d224286e26eab2838036e2833c05dee1288ae543b5ade4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 cfd7f0019ecabbe3de9d3ccd2bb90c3034b46502bd47edc08f1d72a76221b95d
MD5 a284ffc82d49235798710cbc1b9a6cef
BLAKE2b-256 d076126541604f3f253bda63616ba99b36d65aa3ecc8589e32d615158f8a95c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1214b37bfe8abce7e005a0e93dde3ecaf528187925ac7f1efcb945e5b09655bb
MD5 770c9b65a69c9d5f7e7a02843f7aa848
BLAKE2b-256 0f47aa11a2419af6dc11908b6e9582646795e8280d2606ded6bdaa146490369b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3839eefa9d63aaa162d9f9a7f07d9acfbeb15256a6252354ef562e92616be4da
MD5 413c4eae91df94b4b6624ec3997c558a
BLAKE2b-256 d64ca182daf92af84c8e345522cc183a57f0ac364db2c9e36551c0fb9249d430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8720349f69f09ad9da3f03e2eb3a4d33653388eeb45fe79cb592ba5d9b70cb2d
MD5 4b714b502dc7ff4ca67fe0f24086ec14
BLAKE2b-256 54b223554127b6c0d60bc9ae102269eb37ac54387e4c68d48d0743eacd74c4fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdfeff50ae85a3eca1ce73e60f884350de17bcb39be50a5aae2e5e6b62e70a03
MD5 1f29b6d42c00fd37d03cfaad7b18ae6c
BLAKE2b-256 0a685f9878bae5da655688bb94d32ce2847410cb90506bea16cc282553b71ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b855a06e8c0e72ac668202f82a443a2d5fb1aff4a32ff9701388a35068a2508a
MD5 b78d6bfa4c98a573fe630822526c3e32
BLAKE2b-256 3a38b14093d4b08b4626ad9a0c8055159a4c55f5e1d30a783d7cd8bb7aebde2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03cc3718fd9833e165bb000c55a85d71a14f2b7a4016693615a5a03b4963021f
MD5 b4df774e368618563acae1eb1a9815ed
BLAKE2b-256 ed14297fd5b4b4dd93a32d4a2d4b856e419417757c9c7dc324167a1b8ec52c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f282eaeb944d38402a6a6cb4cab85ba12233857b450ed25a2249e665240c89c
MD5 7b2b4bc324d4716e1d11f4813a15ce52
BLAKE2b-256 337b8b1ed515a9fd02ce8e629179b4ab8fc519c22aaf0713cf9b9e974adc2145

See more details on using hashes here.

File details

Details for the file autosar_data-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f01620e6b10bbe13057d6da62d94597e74c7c321803d820915c6e3d7e3c4af7e
MD5 56ceba5925d0f16b2313d28683b1b3df
BLAKE2b-256 2388eb29468febb981e7d2a22d132e25523782cc52dbefd06e603a694ba5d323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 bc1024b8b763abb94adcb52bd273b41a98e9700e8f8279b383e33ec8de6a0991
MD5 4cf97b29db8c0cde063b2ebc5157041e
BLAKE2b-256 af218ed136d865a5b8e728fb789c0712064490e5612623ba08ac367be8cf0bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 265dad37c1909d87899e1a8ff9525f7d43ee1f10a8bdfb11a1e4cbc9f3666fab
MD5 7304713902aa631fd199f25a60c54ccf
BLAKE2b-256 13e7e80156e4ac8c16d1661c0ef2bf0625dfd180808227cc97bfc05e8049c0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8996ac0b5de452799b0d9f603da34c314990795d3f2a1f54e70ff2f607023c7
MD5 d1d5251e1501ace53d46b8f65d202b32
BLAKE2b-256 e87c3e1701b52dcbf7ad23e6bed21b5efce108914f9eefdd8709d9f1c993ca68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f1f057a6e94eb5d3563a591ac7da96f642cb48b2126c334c54873d0eb1b6e64
MD5 79949110172df1a70b4ffadbd84e9a39
BLAKE2b-256 0ea312bac37c96d4c43cc219c51d88c009dd18d235e7b7d8fd252bed704b7a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 976878093bd935fa9d88aaea3f0f11210230cec133c40657e36e41b760546906
MD5 57dad6379c373ec70b4452e3ea637f7d
BLAKE2b-256 8cbfc917502c16b96f0c36ccd7513168a02a5d6fc38dabf233a39af393aa6b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28dc8bd1d27f0efcb638cfd76a4e377242e7cee883eebd896c59d8d81f90cd54
MD5 46eb1b8915bcd0eec4f7eb447ef43221
BLAKE2b-256 f8d1d9f529c3dd3c0212cec5a7aae6803e3638b161b4e3250f7a2c086d0379c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd6d0d05dd41e38a9e95c07a88563f5c75909114ab49175f50892f1c7798de9b
MD5 5d41dff6cf8254943b603c7223fc6605
BLAKE2b-256 223a857bac75ac3ca89a5d565d3bcfd4f745f12389345d48464ee2c82ad8acc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5696f24e8f28fd5f6c1ef55a931c75b952671b0ac5552eb795d9e4c1a68d49b
MD5 ed1ecff55ed83a2573c63fb7d21eb9c0
BLAKE2b-256 6855e728d4352e6fbda278a1223a0be3ca02a593c9e618664e810f5449d5bad5

See more details on using hashes here.

File details

Details for the file autosar_data-0.8.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78f6a362b1313cbf14ddd15ff19d074a3bfd4d6e7505684b83b5d6afb0189681
MD5 096b6016c022ca9cfa17b2ae7f469a2f
BLAKE2b-256 39f921d815b3efb31928f580db2ff3a0b59b40f551ccbf5a46a4caa6c2128823

See more details on using hashes here.

File details

Details for the file autosar_data-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e54415adf26456891145ab65c21490c9a28897cf9bcc72c7b1fe443eeb38c207
MD5 c570d0538c3db85aabae6fc41517da2c
BLAKE2b-256 8f47beb702eb61dc716c6454486782a1ebb8b023aa5653734b5528b8df58ceff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 33c00bcc8361d93d52ee53e6053c36e5bc586c71cae4aa7cba2ae3811c84e73b
MD5 bf1ef9a163f3f4b9ecde8b684e5b002a
BLAKE2b-256 2034c8bf3a57956d3b7c2979516276e3f93a929f69b3c429b4d5d01ee3e7ba45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9beff2d63e83c39e1627cfeac4bf75ff931154660f2b9e82a920262964d09753
MD5 2a37db55a56c9f19d26e94912ade3172
BLAKE2b-256 5093193d647cf583cb8a2c30a93ed1acf2fead9a1441fca74b8ddbc75ffb124a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7163468c9c76280e18b3220e08f8153c9aba73e311382492c81846b5ea039a5
MD5 2fe4595959a268c086ea148a81784c04
BLAKE2b-256 90bfd0ca8c551d58750e75d26fca3c94b731d4920319762d012fcf23f93b6b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52b1260d17f822ca72c0e5c486021730bab68759bf90005fcdfcd7b2eff16a11
MD5 3a8a5f76c81c9e12350bd964bfbbc470
BLAKE2b-256 cfc347eb62adf7ac8a57abc2c9f995d545ca6818555770c306f08c66d22165c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f6dd4dbbe2f431d9b15b1d5a9be09770c12db67a2b517d044214aa0fa97a5c8
MD5 c87c7d43fa5c97e68ddcb153b4ef3c14
BLAKE2b-256 ca2041e8119ed97dccb88be3ad95469dd0c9d9b9d8e9a4f641611f74be962858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b315fe83d791802d866414a4216b790b97d82eb0347c973cc43dde26f871c018
MD5 da2aee1f981d60078a9f3a0bf17ae16b
BLAKE2b-256 cdbcb3042628ae8fc510668967a930eddc8a60dc8c1df5856a67f9b0f213174d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dff8e8ed344f7220853fb3e2055902e4f531e40bc61a43dc25b829476a1f0b61
MD5 d0270a95d7beab57d7e0d819e50e34f2
BLAKE2b-256 d253dd66f335633093d2d1f91565137549b9ceb84822829d03e767df23c1345a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36506a5405b0660b9b847067cab49d034879d705899a35eec8ba13205d45fdaa
MD5 9cfcb6f6a68fe0fb738d8fe201fc616a
BLAKE2b-256 b65c9ab817ab7c3a8c6e8e39a607e2ec7fe982e4a3f3bf7d00236c44ae4b6038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 9013099701c7161d6174930d3efec521d5cf072a60d376a1f2e8dae95c55a3b2
MD5 f262c87de6c3e75ccb10358613cfff54
BLAKE2b-256 ab6e1724f044a0a878687292d15c08577f4f34e6e01bf857872c29d2e051912d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 6e66a088940e0364cccc1e38e0a5e97d14da72dc0d0a67cbc24ae8c56e63e664
MD5 f4ecab15d7c7f2ea454cf78fc227a7be
BLAKE2b-256 9163941403f37580568953e59863176e28156b0d31227603effc4fb89241d20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 391b5f82f7a9ee48ae800372cce1d5db1b26ff0732a02bc7d916e02fe22cb9bb
MD5 cebf2cf66f383deafcd5d05c07030a74
BLAKE2b-256 472ee7ec9b29b214b7a22116378df4cd5b9e6fab915c162ff55f66d302f5e88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d61c32b52941d1421f968d6a23c8fb343b19867dbd81c248ee320e9aad0717e
MD5 b160968f8a750fb0ad07bbcca7294ecf
BLAKE2b-256 e6daf16e1238b456b32aefa5f704b7a584528232c313f4fd14188f263408d028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2b9b842caaf2afb1d7de854ffc15d800036b44741bb77b9467885a2dba4c851
MD5 427c65e18f69dc43d7136a58512eceaf
BLAKE2b-256 e30e2c9f99899f7b7e1bac66d8df6e4900472d9f97616eeb50693f1e6cff6ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1f6082493663bee7b2b19517a913a35a58d52cc63502697dd3a2386c132f9e2
MD5 aeb2db067a5f503ba5c49cec099c6408
BLAKE2b-256 671156e54edf4debbaad781625bbe2c9cfdf454254f0bdb266956a489bc8191b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e5229e0cbcdeb668246c0556ba534e6d96a051eca8f5eedead6dfecedd19b95
MD5 7d01813847192ab405834cd3ab160071
BLAKE2b-256 50745e20c619a441997113abbdf9b627f535ac86bba1d4966b3132c645b9f76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d0569e23c76f0a25a0313aabd886b20ea8b6c9060bfb21a186a560f0b7a2be7
MD5 399213d19a79554179d6afda5b62663e
BLAKE2b-256 9fcfb1729ea40e40d5f4bbb948cae8621b092bf7e9d3ca833e2a96d668865f2d

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