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

Uploaded Source

Built Distributions

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

autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

autosar_data-0.11.0-cp313-cp313-win32.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86

autosar_data-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp313-cp313-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

autosar_data-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.11.0-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

autosar_data-0.11.0-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

autosar_data-0.11.0-cp312-cp312-win32.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86

autosar_data-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp312-cp312-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

autosar_data-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.11.0-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

autosar_data-0.11.0-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

autosar_data-0.11.0-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

autosar_data-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp311-cp311-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

autosar_data-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

autosar_data-0.11.0-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

autosar_data-0.11.0-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

autosar_data-0.11.0-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

autosar_data-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp310-cp310-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

autosar_data-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

autosar_data-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

autosar_data-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

autosar_data-0.11.0-cp39-cp39-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86-64

autosar_data-0.11.0-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

autosar_data-0.11.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp39-cp39-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

autosar_data-0.11.0-cp39-cp39-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

autosar_data-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

autosar_data-0.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

autosar_data-0.11.0-cp38-cp38-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.8Windows x86-64

autosar_data-0.11.0-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

autosar_data-0.11.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp38-cp38-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

autosar_data-0.11.0-cp38-cp38-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

autosar_data-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

autosar_data-0.11.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

autosar_data-0.11.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.11.0.tar.gz
Algorithm Hash digest
SHA256 5c17b8ed2ebb255a49bae40cad4afb68593c2ecbd4dd66c1fa56713b37485a93
MD5 dc5350cb79b2e935ab569387c768de62
BLAKE2b-256 c964623655a01e3e3efbe61d98ea0954994d7ba99afe7c52df38067b3580433d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 757877dd048c648c91b60516e4fed89300eae11c1a1241b6026c9f0428e964e8
MD5 18a38484a7947a8481358b74ce065396
BLAKE2b-256 c4eb71271ee02fff7c40357ed48dc6c9c2ec4ea39e8da44f2046807e3af750a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed7e30b1c0256f73aa1ee0d591ff0492bbf322097ff8cb30663c6abcfc1c49cb
MD5 d515c7fd7bc6f6775f3ad2f32091d9e5
BLAKE2b-256 6451effa5f392def9b36d4a4fa5cd5ae359e49c622a114b94319b4c24b838c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a7b997452ed18becd178f8488e8d83991463ccd2c54301c624d63f3514b391a
MD5 19a1c563dec29ad428161d5116fe81d2
BLAKE2b-256 265b396a6decca53b77b3b739f6c4eccfefa5cdb580e7baf6c2057b772b55a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7085b7b38d4f22862379079ebfb27f45057b432655239d8a321b747cd65b417e
MD5 27010771554440e002990126d0d9c803
BLAKE2b-256 f34ca3b29c3b568c66b1b71a28b14bc49f92543c603130e52af006d596fb3c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2844c44b9c7b5299b1780613878e2472508abdf8cb87fef59b6cad76e006840c
MD5 f3e92e26aff86e0e39629a2e282c0952
BLAKE2b-256 38b3eb14df8cc5443a5d1beec38b3547fe8602235a59d89d881582fef6005ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ce3f847dcf95a2ffa83d0798f00cd56e33b9fc39afcb65d1d3cf1630a27ea0e
MD5 280c0c805a7555a6400348c2e599be08
BLAKE2b-256 7f3ac24322c91435a4a163d72330d2616ae7b0ce0fa7652c1bad9bd4a0fb31c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b9381dc858ba6f7eba38baef93114cc823b58315f89a19f2e86208c9345404f
MD5 1b5eb1bb8f0d27fc4a7d6814a5902308
BLAKE2b-256 80764f967eef420b978c1d256ca11669655c7f5d470eac95bb8624019b590b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ccad879fd05b7ba300c5b803ad99206426a5643fd733536f753f734ed3403b05
MD5 e021f0cff2a2b95d23c2ee5d93071fce
BLAKE2b-256 74f6108c6f3d5cc7cac5ecfcb59b4bdfc155098c0b4e26dba4ad1e632153460c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 845a89b940beeb23adc79e26ad25fa45ae84bfe2f75b222d26da92689ebeebeb
MD5 b6c2b48d3c37cccc081d0fc76a1780d8
BLAKE2b-256 dd407b65b19194b16f96caf4f208129f205f0ef557c166f3bb44ec0411d20130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c947ec976809c6764961253644a225611efe13f150da5ea8d71485dd6ba9931b
MD5 77f25065c0a097e1ea2169dece34bcaf
BLAKE2b-256 6e8fbcb918568e07b3ecf2fbe9bd82347dc237c323fb33e3fb5c364028b99227

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d32fb93e9113bc4be558ea7f1aa23b289a1887ff301a49d9a72e72a0497bbef
MD5 51e4294e7e699349bfe34215493424b4
BLAKE2b-256 db7b3cf0271b70d6427d39eaf7ac9f1570022c036ecba633471c490e765ae4e5

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 042b0306469d7446563aeb4272d8b909f83c7f44f5871d2e16f949be77394058
MD5 a07ac429fcd930a2b1a738a47f6543af
BLAKE2b-256 8835b60ddc2aae33a11d1f6eb0edd5345b3fec227ee8241e2fedd2ddd6535911

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5bc7df273c8ed8fd13b0a4b1c21da8087a2ae6dce3cb8e87fcb59b83792db8f
MD5 7da311278762389196097155d57e0805
BLAKE2b-256 773c5e2f04905886cfeba96065f8ecc0133077a8fbec1d675d7162781b3a7893

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e40e785b85ab6c67d831a4a929c39f46d3a2cff3fb3fef2f48b02ed8427bb8f
MD5 a4518f9f4155a3c34b568292e1d6b6bd
BLAKE2b-256 2d8b876bb2000ba6f0e812e35ee2c0d1322ecf8839a1019e03670f4aab020dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6186b70d96a87ecedcf0637f3bdf3b8b12995035f0f9220162c25783e741ca3f
MD5 276e96c5ee0390c44bbaed83258f3a42
BLAKE2b-256 b7a1dd353fbcb3d63277303e75373df06e53e2f098d1e96b18ce7cc42b714e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1872900df568feb27a9950c029920fe603659cb853ba3d7259e97d1155e08c93
MD5 dd0385b6c73b766e9aa86f9a8748ef94
BLAKE2b-256 9fff7c57032c7dcffadf97afbdfffbac390813a1649c89c69c6e92069a63f8e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d01a7d2663fb9331de843abe2011366bbef561edb7a2d3bd1dc214d54a43ce48
MD5 1829657d5370c5a0fb0866db8e5d304c
BLAKE2b-256 1802088b96f35506317bea2eb8e1ed7e4d31b6f6db5ce386e08ccde3bd0dfd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 175e7e76e116eae545f299e69bbfb30c061107e575be74d5bdb9d3ab79894d0f
MD5 e5b0ab07e135c8af59d31c1ac5c2e06c
BLAKE2b-256 cf5651301acb3cfb54de9448d16fdc659ee959b9c6d242a0102b5fe24374944a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dca4fc1997c513c2f1de26a69d866ed8649bf44fdb5c6aaf6e82a83021e65267
MD5 7ce5865396c73b0f9b24695909ca24d9
BLAKE2b-256 27941952276a54ba43f8f0ee9c1f0ffc1868677ec4502db306a54f6e53f8ea4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8be8528608254f5730ad389874292aefd0b0ae9132ab4ec80f188fb8c322e655
MD5 cbc9f9139b14102d20803e475da1f198
BLAKE2b-256 0fddfe1a5e94b4277dbea5572cc1eb3e9506b6ef745214f82e19142408104285

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0208561ea00e72dd8cf707081009ccef1f6215c5d9943d08eca3ce67daadb12
MD5 0d4dd728fc0088bed175ef6551e1280c
BLAKE2b-256 e7e753d118fcca146f43e59e00a1ec7979519eb919ec09ecfd5bbfd4576593db

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01afa04dd2a05bc318c0a987ec9c8c910e9e63c5cb348080fbf36ca572c9d796
MD5 486bfc8d303640240fbfdd6c8ac36295
BLAKE2b-256 d15a3ec1d5ae334d43f10efa4f08be68ef168d34a5c9ecf917cc4a07b412e201

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32075755d8eb22a1ffe2f82db6007dfa7eaa0019f669c6b04bef77ccad9b4a9b
MD5 3b8ec0cebbfbf3a322b943b65522e729
BLAKE2b-256 1fc72fd1574200a539bdf35285ebc0adfc2e5964ea68e40096b95c4e3630ac96

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae920a31bf7fb94206cba9842d1bca451c9e5b4c6820da93c4eb5cef035414dd
MD5 6354b8211c605494c95d1633e7c7731a
BLAKE2b-256 debe01b0ce620f961268ff8fa5ab58b7df0d468adf4d68572301fe5a84627745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7580e08f64c663c6d537f9183d052d12fb882bc188b14d639f079bd7e170ea0f
MD5 33ff0d48b8fcd817b8ffae632d5be4d7
BLAKE2b-256 3b0d69c938517f336aa9392eb68cf7cde0f61fc214e7c1bd5eb663f07cbba279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 628540bcdc30bf7f6d7a22225a90098b46997525baadf21e127af62f870d565c
MD5 8eed3f52801b446e5433cd36a0d4354c
BLAKE2b-256 3a402c77ab6d6095a0a62605b968b9f829cb23416613a4ff7e1c2ccab8ab8d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 751d694fc908f24ec7531b040529690939a67c665ba1af6f866a77277fa41138
MD5 2d5ca386eb30786919457f902dd9e64e
BLAKE2b-256 e2721b8d66928b6924dabe6edd5d5bcc8240e17a1a057c0be197d1221bc42f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e95f6dc02a0d391a49e07ec5f721ed28956f6b0ab3ef3ab25e065171b928738
MD5 ea0f12c694e74e4c675a351bc1a16b07
BLAKE2b-256 60b17b8a784fd03d55de8f4dcfb9226da0c95cb13ec17de714b983ff0a4b9f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7aa6fafbb4366a6ee8958cfafa06c97b9c5851024098042be75352eb4130a1ad
MD5 1bcb1c8ac2051f912740c9cce5b50e12
BLAKE2b-256 4d5ba2f1f411a1422c525899d95fad5e1293f9a690e76a91bb1b2d022977d7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86b3dcc9212c402b9589d16f5c86f77944e1862a717a1e043fd7c7b9f4cbf7ba
MD5 abf2e32b192a22221e4c4b993ceeeaeb
BLAKE2b-256 853a729ea2c9ef8c7237e1a15136d54504001600b20ab19ca36560dc09ab8bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a28242cfc322bbc09b309fdc85cc1f6732222fc293920a8d4348a89ec8ceb36
MD5 b4269ba7c6ff7ba2154fc67479919589
BLAKE2b-256 591723755430a6b6b4a1511512dc4cc3825f4076bd5ff556e274b5f5e4177060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 493c53503bc3262d1d05e9ee9457336bde8e40d4ef105783851a6507206faca9
MD5 0e760db4796e4180f7398f5a5df5a9fc
BLAKE2b-256 8af86096ede9b1ecf961be205394f75795e6b4783de92bf287bde574ba442462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1ae170c93f9c1326c684176920af744c6b85988931f823d70e51b95b3db2583
MD5 9c2bbf95a1fcfbef4e4329656c311f1e
BLAKE2b-256 90fc360a2270d9bf7cf87eee672ff49322db3f283635da2cf95488efcd6e0160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4a677606f04bf9e4f567edd0c4bfc4af430dc9e9aec33e87aacb10eb03825f8
MD5 4b155a216e1fdbd350ac84a2c801c114
BLAKE2b-256 99d69c14048fe216a9da8a2d367847a0f4fecd8d3df8a9c911c25606f60e97ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fc5772707bb7100ee17b086f1e855233ea28c564f31534aba4f6e470b0c9ba0
MD5 71226bb29b27a99a73cc5aeb018aac67
BLAKE2b-256 c270d376fb112f11c2e2c9d622040a284ce3e44859d3800cb88e92735dd9a8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83f15ae9a5eaa244e6afb94c7123c304d85bc221418b5950c89096d36a27b23a
MD5 0c9728bfd6857c0e323a787d4c05b9a4
BLAKE2b-256 0d7de81ebc2734e8342a401e45cb28488f3e5aa5fcf894d9a93238eacd801618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 27cec470afc1e5044a6dc4cf6f027db967ffc28a0d4210eced276a5c92502c6b
MD5 d9028649007480f171c7b37f675b8ef3
BLAKE2b-256 a1e9dc6b2878eded509f759aaa5d7a89081118c9460572bb88343918e098a5f6

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1816db2e5722b285601161fe2d36f4e629e7c087f1a36644cc5d5533a5337508
MD5 d08cff9ba714d3ce4f15eb3e77c5436d
BLAKE2b-256 48cb17170af9b19efc626d34569914bb0be6c03dfe249ce008cc4c0ead639dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 602b283ea82c38191f2fbbb30eda9d2d5086453de17efdbb70a6fb7b898042e5
MD5 00afbf9d4127b2006f42b092cc51d2c2
BLAKE2b-256 a4276345e41cce4305a048e28e1e59a8adac2cd85d8d7cdfd49ba61232a2a6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1054a629eb9d662cc0acccb6550aa3339b766707342d8e6ad236ebb68d1daff
MD5 29f6fb1aa73f4977857cadeacf3aa30c
BLAKE2b-256 3dcb6fbe13ced0ff5bd5de1a1a7dc8f0fcba5ed36f32573a8740aa398ca7775d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2788867a78a2183da47f0b52e1ccafabff5c606af8ed3c183ad54c4e335a045e
MD5 e2c6d2b87073982ba73867e3536a3a78
BLAKE2b-256 89f300eaf8b07dd9310e87db633a28c2e13a031f0e507e663e9cec28bd4705cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0073b6bea8cfdcacea1d7d4bf97a7c4db183bcd2056a09ef87fab86a29876c4
MD5 d6bf45e9e5ba630832ea82af81240f47
BLAKE2b-256 7bf6811289ee16e9d5fafebb4248a4da4c8de10d4d7b16742ee87b2a866f464f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 886adeeee3c3bc81c3c9bb47d56e426758216d8c63a3912f90ca04ce5708e93f
MD5 c0021b0717d5205786a79685fbe832dd
BLAKE2b-256 bd2b92acafc84121f9c60db8193ca14f3acc43da739a04ed29f5be89094c7265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e524f6c0df2c589bb96bd8b8c438db90cdad3d51cc2bc741acb0b4a655c8f1c
MD5 b882614461898d8432232de4dac467fa
BLAKE2b-256 0d757676ead3a009f5c456683fe1fbfd8f35c9b1b8061b15b5d19c8e70c9dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 151a6bc083aa72da8374626b136daf34c621212d7bf7d3c808a59471bd29bec8
MD5 1a61ab4e8eba8f3e25119863b02e03f7
BLAKE2b-256 907daef6e95ebef55fb29caa735eae0f7aaa2d2383511655f3b4d4ab743e53df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cd3f67056facc477a5cc7f0dccbe57a9de7ac9fe092a81bc57555170ca73920
MD5 00c6c31bc7553f31ea15dd36f9d95149
BLAKE2b-256 33bc642c7ff44a490eeef502a9151607829b36cb3f4935acff29dd2b2a8e9ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdf21191358402d4afb57f7c137c9b27f4788a154846a0c4944812c591e1d950
MD5 ca096c118ef60201fc993532ac807286
BLAKE2b-256 2fabf620da1c5623d9cbff6903b098082ad949f141decfe628014225041c09ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68935b35458613390eb4e2b591ccf2264f00dcd3aff337849aa5af21613c8e1b
MD5 669faa34c1871ea8f5f342681cac2f00
BLAKE2b-256 ea1530a9dabe65ecdde75efbbede0dc7f6e04c9ce31c46f3c758183f81d12e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af661abcd5bf2b45dd668f04120a34e7593d5f79df76390bd0568d32869f2dd7
MD5 62e2a05f20e477c90a60058b0a3985bd
BLAKE2b-256 737fca2fa3620938df1d6b33074f0fb59cabfd56535669fb1a34e08c49b2744f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29eb202a7a2d390fe0ed57c6b94d001948747dbc341ae8570de4eab8ca1d6d13
MD5 332b871af5f2a3e11747922e0686a5c1
BLAKE2b-256 1d69a9f2aa96d0b6d5b468e0cf57db2c366a8fd2272635ade7f084ba8520536b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b9b26ec59022ba7a7d717146b3a8e007e500223bcad6d963023f1e57f157c73
MD5 73213ef04d6fce0391758716d950e703
BLAKE2b-256 8bb1381cc9fbe6664a09cc2ee7bb398b75b4d601dbe8e7b74e4a3d1473c89335

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1cb1ec5fe436f6218130ef335f17f1b0cd454d20f9dad715739437695af93a8d
MD5 94dcfe9519dfc591235e6e2a3bc84870
BLAKE2b-256 7a678f57545dd0e2a56e3ce04c5f8daf581de9941e8e63292c3b8a6a687e9efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f79a835ff95cf6ee51e0ed328f151395852f094f0f16c50908b01c86c8ed2c1a
MD5 d790ec4a92cda9c86c44c6ff1c9669bb
BLAKE2b-256 32e0ec3dbb73b19e256d9dfad8e571b062f712aefbe8e49596fff3d6b9212edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 727619427f066090090635e589bd9aa2cd52020d50d2ea9210e77177a4137e1a
MD5 f8d38a789677680e9f18c438a92ee80d
BLAKE2b-256 18d1297f359a4c45a7ddd9a2d2c98ab7a1f4371b7db7363a79db834939e3ca47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9eef71fdf3ec15bf3ac6fba6612fb4e5bf47e231f68c65453e2210b85caa8294
MD5 82e85d0eacd998bcbd5041c8cb9ce9cc
BLAKE2b-256 f56a742468584b925c8efd7d35eba2dfd28e7df4881a5565c0ec20363930be92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 037b6250a0350305318a3ace2ea00deebcdcfce0444358a065544e040ea9002a
MD5 6dc7e159938977d6371ffd91a1ac1c10
BLAKE2b-256 e470665915ee41e95456dd359594774aaf7b760c5689609f48a7c2560bc543eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 242474f946314ef7ef182c0262d8eecff6cd4179d1b030d656f9ec3f9640b388
MD5 66b14da4d597945da90d1236c821a031
BLAKE2b-256 d8fc6cdb92e3093bf83bbb846be27408ee2bfb59a035bce3ba809a3adcebe3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6a99039bc401b75dd4a32c44ae39863da7bb14371791bd54e4855006c45ba64
MD5 ecdba41a2f4b8176e5ab8b079d51cfa8
BLAKE2b-256 e9f80ecf666107205facfd22247db32e69ad3b76ffcc52bce11bad3487802bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5afc30d83858540169805b652480842932db229a8c07b6af846af09822e6dd4
MD5 e03ab0a4121fba1f1fd1968772edcd83
BLAKE2b-256 1b4348c662d409f95ea0f2cd2ee0fbc2252d6e26382515a39c10a9540d011e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6814650b995b43e1cb430c04e812c54e2c07769bb8abdececf9a0aaec64b37f
MD5 dc7a690eb7cef378bc4ac01a76f6cbe0
BLAKE2b-256 061a6e4a3fb8cd0483c7a2b9ce45d971e392c3bf58aa1c4dd4807731fea9d043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 807d901da3a183a27beef142f194ac127d6c7c9e43b4e8f0ec5b68e69d7fb9eb
MD5 1ee419c5aa39b431da1358f7279d0c72
BLAKE2b-256 67b324309a841fbee7b91b4674269d371938bbf45110818a1aba683ddc213d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9faf777e591485ea3653500c786609cdd7eb824cfb0992e93ef92556ee180511
MD5 6c87caa0494e7cd6d216924f64581cd3
BLAKE2b-256 e63895c774f40ec79781bb4f6f5785834528b8f1ebc4cce7ee1f42b36fc26ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61d4f2f4b3e56dc7f7a56c060140109475e0ed2959fb7dec7673a1046a83b3e8
MD5 54a52219d7839556702a1e5993655c2a
BLAKE2b-256 2a869d2f1eeb467e291015bdffd55edc3b55cf8195a8d1c3bdd1ca0a4e794865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de158f2b81ed562bd9da3d552a4da86b7110823e6d4f6b79e70679b8666092e2
MD5 7ff41d86f8eb0f73c294e00e6abe3a78
BLAKE2b-256 fba955f649c6e1e4e67ba42a3cfd531f1b141d6b028c1e4a305be8f6dc2b7d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fa1633b62c209fdd7e53843b50881f3def64a7971f9953d824fed8977053351
MD5 198533d498f572cedafc631ffdc56731
BLAKE2b-256 875365dcc4394be3211426c2c5c4cd76af55779b9a2cc302b3cbe917b705cbdf

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f1262af220ec1c8b069ba194809022ea88a9f158dc3ad77ed8c479e259a8f276
MD5 17190f7b2dc947858721cfdc627ecde2
BLAKE2b-256 1db7663e91093531c2e60ed1ae64e74e69f887b06c33cdfe01a8c188e89e4049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63e0782ea677003fa72e9db210f50218c46f30e22b167712e49fa151747d6e2b
MD5 05f3f9f5f16cbce92bc0bd23fc0a2450
BLAKE2b-256 e1da95619da77016058305969196c65e5f927713c45ea442e41583afc8a7a37c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06dcc2d2e452dc723a12a600f85b22666b8cc5d247c8f1f4e1ec55d4bd8d34c4
MD5 ab8669677b679b101c825b348399bb3a
BLAKE2b-256 3371d1c4162b89ac4ee06a7dfe1e8ecd8eb0c852e42b905680d1356bd8c0059c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6875e23d5997365a59c50f99fdbdb63dc3ea25cdd639424c5e5a400b1710781b
MD5 6566161b45ea6c86cf0a41e37615913c
BLAKE2b-256 11b594cff64ffc952b7cb31791563be7a7088ee879859613abe878216cb3de79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22de7e107064b40c257cc51963f77894b75ae6027d93ccc7aec7ebe626b01dd6
MD5 727714b80db48677e22cd75da0920701
BLAKE2b-256 0cb8486fc749e845ac9cee63a71c17020f0c7f6bd9b93d64bd7b2128145b1a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b891bfac6f4d447b7df6bf8ebdbcb168338a98b62e8684fc5e19c1b557f22c1
MD5 e3141630c8b029564c80152b0dbedda3
BLAKE2b-256 9c72dc2e84fc14bb37bbd3267699d7c6029dd3ffce3a89f00998c409386d3d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cabe9050684a3ea65634b13e17f7b4a58988f1081c21cf4f93207dcd49bfe20
MD5 7851fda465611b5621e189472d3ca656
BLAKE2b-256 56a5d36c046b3d08cd5c1059b42d7328d7bdb89795569323910a4e308d0dec85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52b2eda16b6967ed3e4fb9e8cddea2cf5a8fd895d242bf158897ee86d7b91696
MD5 fad528dfb7bbe6234c4bc994c9e65021
BLAKE2b-256 abea860dcbca5c9175f6f8ae23bcb9f5763be5b93b179953933292ba9894cd78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5da4adf85e86fd950c84b93575805f76c7ee6096c61fb560bd1e00c578bd7076
MD5 81faaba4ebd5532552c04c851c049fd5
BLAKE2b-256 018136c75502193d86afdcb93a8d72ff20aa48f80a109466a22ffa58719d3390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bf4f0a8323c6708282847982cf6ec9b4516daa08e06f8aa38d3149eeb56dc41
MD5 9d4b667beced0c4e5eb21dfa63199839
BLAKE2b-256 e3120c9fda99c553eca6e4ab862cfb744bc2082c2d8bc2fd0a1d959a81bc8c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c428b6ab4370208f6c9d57e405de2c72d7e3c72835d00cc0092c6c067905cc51
MD5 414f35345b17d6e513a13ba85245f16a
BLAKE2b-256 c7210403875c027d7d5de6c2a096baf54c7c6b35bbfb9a1774fc1dee83d25ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ace64bcc6cf728e03c48054b4458a9b7f034da021c2daf4e736d2d654cc396c1
MD5 001054fea8e0317f8c9ff967fb7a4f63
BLAKE2b-256 783677ceb04e20994439471c449f092c741ecda1196a428186d82e1099d30417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66f5134e0c803ab448380d8e27d79cea351a429587e247c5ab42ef2a38c1fe9f
MD5 c64902b8258c376a2d4fdf1d25e26e02
BLAKE2b-256 48bec6f5ede6740a6d924497acb92ecb1465d0e03d94fed3ccc39810614c109e

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fdd1781702faf989e0a27df970211db0f10a9247c2a7ba01e0a682dc071f5dae
MD5 20d68683703500db12923d06f6c5ef54
BLAKE2b-256 f6130c62951c933abb5bb532e28f9ef67602fc4cb2f8a538f8c7dee5f3c9d5f6

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6616e8a608793d0d20cb72bc0c0b411c4dd1a6014219ee6acdb12f32a1b38308
MD5 2e148756b8832805c119bbc446e9dcce
BLAKE2b-256 a568d12932f887f038b4e260596083ef3b78b7f44be27acc90a6492f5acae408

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14390f01c866a881372dd2f4466c300c3c37abffa22c3c22db8305ddc6da4126
MD5 c5f597d2807c39e375ee961407a9600a
BLAKE2b-256 811a23b11870b8f35fc4bde5f888b4aabd2b26fb7d5cc4f55900e532fe2d2650

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb15e2f44761f94f69937e207967d62f73eeecf5a9a97ad0ee465a6aed486ff8
MD5 b0ebba1ed8422a43bba6c5b374c9ceab
BLAKE2b-256 356786ea75f20f6ece88b1797dc628579c54ccfcfbcbb219ab4e899c4db4258b

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d6fc078bb9412733642a9f285d3bac26e40becc07207d8c001a3892f7d1e513
MD5 22d57d402a7df331bf0649ef9ecd7099
BLAKE2b-256 740650127d623769ed491173906387f1f9353349237ab6afc884ce8bde12875f

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 641a4e9f65c8696190d564064c8e4fdc0ca5fd52c1d353f9de32ddc085a714c6
MD5 c253831e002cc1682581e035d9ae8e59
BLAKE2b-256 00f1e6120ed0db6eb1309c6b2f4e95dd5cedf80193e8f2831fd3af0f3afc20ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f65427264035713e9c2065a69fbf35376b4c3b2fbc1d57dcc6454ed43d00cbc
MD5 bd4e0be3e450bceb08ffd00cc6e7a371
BLAKE2b-256 034e440f87993ccadff36d3084e780d8806d251b5225079a9a45ef3b58069151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8384f020ecfc3a863c4655385ff2e1af7ae6d6ef07f699ef2293e20bbcec1f7
MD5 bd402ab39c27601a6bb19dd139581300
BLAKE2b-256 f088e8b832c8e5590b39f15bebc38933df82abda31b2ee4b7f76065c00c86ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c563ad2a38f2b5a781332db4750c8ee15876b9d8802219433b0e083196326d8
MD5 039db8d51216d200be21b57e20bdc44b
BLAKE2b-256 3c26f819b64f4d0b8f77b5a34f7606f0128af737df1f24c177457f488f40917e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99df7a803449512366af23e3d62fd57c30befc6f69e787a5da0271937675455c
MD5 86e496c4f00843ca9c1ccc3ca0f569bf
BLAKE2b-256 b36ec34e9e56f1920a865ef1947f48f438a6a801e1c2842c3bb3355a1b5d0286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0daf5606bfc251d169a9643e4a6c44829a311add821fa69560f8a5f104480ded
MD5 a0c764ef1133b5c13ed945a121d591df
BLAKE2b-256 d7be77b6828eaa81b2fb3436d848d5d30a4be75589e59cae4fccb7968e1d0fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0c7010138bb508fa66921125fe3a671249a76d4a53f21d168c668754c9b8836
MD5 f6be3fcc7483a88aea48668e40788e2c
BLAKE2b-256 c9173e26f8596f21e250543ea6205cebb20b8737b3808686319351c7a9be818a

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46cacbce53eee0f27c89bbc5b486a59b5af35995bd28175b54cedb9960406854
MD5 f1170aaab2526452ef667f462b6d95c6
BLAKE2b-256 d8f7f712d3ab9146c7367b608af8c34d4259b481468d304af0c83ade2ef6ddf7

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1f39a972cf22929e2ccca69cbb02ef66cadab29f9b5cd7e084c3c4fcbc5df2d6
MD5 6e7137c17d3f681d42f242f51a262b9e
BLAKE2b-256 bf873cdb888cd97130331e719588948ea1dcab776e2a727a98ee53a4d4dcb41f

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b397b01105cbbd745af20fbd45831e2a84e15f16be8760ba82bf8f841dfc333
MD5 943457289764f99e70b69c6c26904fa8
BLAKE2b-256 e776abff2a7c2340fa4855a586e11e19f27d9d4cd8fd1f3b3f22f4cdfef8bbbc

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 718e3c69143b4948b789919919a881b9b4dcab6ba462b8fe33f633ab5b25c6c2
MD5 69ce65a646eeb5f2b5d877d12ae3f08b
BLAKE2b-256 b7fe0427163032a98c672ab1becbc4efd54feed4399b35275c6d3eefc0d3b24a

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e93430f56b78c0002209a183318f5cadcb4c792b9f90e0073d03cee731864a7
MD5 7018ab4d0b956a83a5614a157a709504
BLAKE2b-256 fc03237b855015b1ed702c61d1eb156e0a668d21c357fffc4475e8db8fb84b10

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0bfc6a843287a9b349934abcbeea18516c589afa29d63a94422268826cd5fbc
MD5 787ff7ba4204f8eff8caaba42217d442
BLAKE2b-256 b0deb9a0209822dca2e367660133ae6c8024f7417fec514d1ea267abf78fc483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a8a5fe2d90c948cea8a509651a276ac2d14107135cd6c69f3d7e6ad442e5bc7
MD5 3c803b61504f87e64274b3a66798c650
BLAKE2b-256 a90754b0ff01db7eda3eb76c89e2d51c7dda629c5602dda625c019e51450cf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67a92f52d8762b73bfdc3f57e8c0f0da1f49a8639510a900e94947f581dac38b
MD5 88a112bc52a0d4dcd645d6585170af40
BLAKE2b-256 8fcaed0c955c75e2662efa37d93b30365664e24675f95c31ed328d7c965b3cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 937008c4f074b8d25d2ddc1bc83f30be71fe1e90a0a370ebe2fd0fec8a9d6fb1
MD5 a64cd18338eefc8ad368848b6b93b1c8
BLAKE2b-256 715149565a8be1b47bddc5ffea5f302234fb8923021ab35cf80e779024d4fe4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 169b5fcc9b88f1042d83544dc54d1fdf46771e448a6e07093d66a7a58ad8b41b
MD5 78a2c9846a046cdc761e98c77ed0b9ca
BLAKE2b-256 a188a65c9c5790d29a97da7217587ba619b4dd2e3fa8f42a350d63f9377db8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1c74b129efb07a19de7b91d0565d873b1168d1d6b10f7e6499cbd0e11b1e5b5
MD5 ea8c884d18ccdcbbc5422afa58681cde
BLAKE2b-256 5ad0a3b8ad25794d44f18b776005a0983e796d8898543325a8cba7dd826545f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a10258f341d1e2ff9c451ffedf50ea9ea1ec0a0eb2cb9ddbe6358d0a3350d5b
MD5 1aa5472bdce497554466e319b932e5a1
BLAKE2b-256 a154baeb3e97e964178cb33de63a875978c9622aa22d25412bfd205b1f4b7da1

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 08f19fa15e5b08422c556e675f6237dd71737a8e8b6c8eecd3d23bc33c83ca53
MD5 b7c19be2351b862b6eb47cf793e0c089
BLAKE2b-256 e206fac82a43f926d63a9c021a827262c39d50cc9288210d8648e894b94576a0

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2792535532809851bd3b360bf477d8c95408258b0a520738f4aaa30a198225fe
MD5 99c76024c052c5278241048f52b5915e
BLAKE2b-256 c0465a49a62c778d3e92716277c8ba19c093a374082edfd20829cb5186bfc97d

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50bb674b781ed59e292566953d43fa34faf6f7aa582ec8dae88039d45066cda0
MD5 c886d7eddcdb5c220afdf5404cacd075
BLAKE2b-256 e43d1ed8da1d345a44d662c565935eb442392b0c5b644d6ad78e9d2762a85aae

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95c24bc72573bb93ac97560beca8340bd3d04e3283d14b818df7c8c952122ec5
MD5 0baeb67acadc0a1d375fb39029658331
BLAKE2b-256 f64fdf4864087528bf06caec8af7744dda92c965471d34885a4ffbdfc1c3f31d

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 164c10763232b8e6a51d80c458b427bce2585fae7b99526b24eeb8d2d127d0ec
MD5 ddbdc108b1e47eb4163cfd360448c90d
BLAKE2b-256 b96823815a2de8bf7278d149b5073dd67d0e6a151ee3bdeee0b7bd1ef8133b97

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e896c9e4f5c627c67838976551e68f0c2c2c86a821c352f9e5b0e961aff0a30c
MD5 74b501a12caef1224d5035f5a24d9f0b
BLAKE2b-256 3cbd6a4566dd3d164fdee3aa8317620103640a0a81ab353da06ca136b5542bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f87f73a206159cdd93094f80d76ee99e959396f439a12d9936f6450fe5f9a243
MD5 e30cec1e928a310ffd94accb1d1bb2bc
BLAKE2b-256 a7c629eedad3342d1304ea45b58c92c3d957559e7e430edf59df662142da9093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3238b7dd12d8fc8507918c959e77229f2834d7ea1ee773710af66edb56859cb
MD5 442faa9393b761167517b1f2ee91e0f4
BLAKE2b-256 287067cc3b16cba5badf53a58dddb34b95b5acba599029db27c27884e7451a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e52bfd904fec1ed8319b592fca7b2745a1343e1b2ade2e6d29f810e42ccc7a54
MD5 3a74bafde6db3806f4c1db15cac9c4c0
BLAKE2b-256 73962f48e326030bd31c7861d2cccb484a65d71788228dfd3efa648ea4ac31e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 858b62578502c3980e2981ce1b1dfc3f951a4dc3331d60aaa63ee50ed3ef9524
MD5 58d3c190b787508f14d800c780118374
BLAKE2b-256 008582634d7cf6e567e116129c31dbc0d09dba79a9c7d1924f3acd214ed33945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01ee6bc00c4108c1183c8917a18d692a8278aada746714bb0e1cba5c835b4ff2
MD5 e569f6c289dc6dd9fd40da1500bce6b9
BLAKE2b-256 c2bc052b314c9ad3bd664b8afd8be61f77835817557e41077cef4284c513e16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05aa27bbdcd6b6a843506eb9d32a0426893aa1b5a45f8c2e9388be21870a7bf8
MD5 0d4883407ff29d8c7ebe3d55b7c73aba
BLAKE2b-256 2bffde2cf80f19d7e55059259cff4abe7cb8e93ccaa50727f40a983eb6cb9f72

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a13840ca96eb2505400cf54daafd10e74d8271f4930f3d264f9da654a43bc5d1
MD5 36c51122b5fa077e5c43b2cf61e03aee
BLAKE2b-256 34d1ede9c4c22b1e86937f5c61bd3586a3fb43bfa0d4afb2461a42116a154edc

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c37de16b4ad57f8e4c6c0c8f8e3b27d4a6e386bc11aa067a0282fc578b27a31
MD5 c7f492ce616d74864b3e461c0cdc8e3b
BLAKE2b-256 1f273e48cfe3428122e0c47bee5654af7b4cee378f7e1ea83074a3f128202e39

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d51d4a34389347417fd71131ff41551fe7329b236d21ad1e9a7e582ea48336f9
MD5 c6e60bb0e18343a2051276e507c74a3f
BLAKE2b-256 74231a4f69e48d76cc911b6297a3cb01acdf19a2ce476bdac28f9070caf5d8de

See more details on using hashes here.

File details

Details for the file autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf07b970768c9b488c3824bae9b72f7ac4449d84794fae2a283ffaec469bdd75
MD5 9ce37b1b6996d364039c02bc180757ab
BLAKE2b-256 e065f5caa21a32c6c88da6a8252bf9b966b3177852236f93b7fd8c80bbbd9777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5dd339ee6577eacada873fab889dae4103daa117105017a7bfc426ae4d6f861
MD5 7f84f718a8316d15bd4a05a537fe9b96
BLAKE2b-256 a9807114dca90c41b01d46e43a1c9d2850ef975eabb92094b7ac150f9147b24c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 867019559e9d95de2f2310ed464af1a45f57ca814331a29ea6aabe94c6a86686
MD5 12f8cc3d9fb3a70938cb5eb1102b1d83
BLAKE2b-256 960ce0e2bf27ff9380962af36b6dc591fd91dd982cfe33d0c0587ae2aa0069c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecbd99c39028ea6a1307019807ae645b015a5a205829423a60f57a20f2fe7de8
MD5 feba4e899ff34e306919cfc97929d8d7
BLAKE2b-256 3eb039251bad94365d432b294881dd7323ce84d8ef13b1558d13d1d2bedbfbe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f097fea1873c87c8b629e484d943e32c1c56b2c30f8658df2f0483f50c04921
MD5 3108007f8dc7d4d1e8d64b4474ea3e90
BLAKE2b-256 d1f8300d739db81b2c837436bac4d694a6e4aaf3c32d95b16bf958a6dae8bbe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd6a484f68c431b47d50b0fffd716c9db56b1fc36b04cde09dee2cfb4694c6ee
MD5 5095ebf1c2c1786f4ffca9cbb700d357
BLAKE2b-256 aa8e47c428728d049768ef415634914c489395ca9c29c97210ef0af3dc7ab5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.11.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd32f7929336adef237034a74d9145d85ad67b17206251a5d3e623d92b7bf433
MD5 aba72fc86365d8d13950dc908543741d
BLAKE2b-256 4fa750129fd484a262469d33c1d234f904a000ceadb7d26e646fdda4dcfb9def

See more details on using hashes here.

Supported by

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