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.12.0.tar.gz (258.8 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.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

autosar_data-0.12.0-cp313-cp313-win32.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86

autosar_data-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

autosar_data-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

autosar_data-0.12.0-cp312-cp312-win32.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86

autosar_data-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

autosar_data-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

autosar_data-0.12.0-cp311-cp311-win32.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86

autosar_data-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp311-cp311-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

autosar_data-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

autosar_data-0.12.0-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

autosar_data-0.12.0-cp310-cp310-win32.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86

autosar_data-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp310-cp310-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

autosar_data-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

autosar_data-0.12.0-cp39-cp39-win32.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86

autosar_data-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp39-cp39-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

autosar_data-0.12.0-cp39-cp39-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp38-cp38-win32.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86

autosar_data-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp38-cp38-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

autosar_data-0.12.0-cp38-cp38-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

autosar_data-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

autosar_data-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.12.0.tar.gz
Algorithm Hash digest
SHA256 4260942b3cff09c2f409b869b0ae08a53dde33e9e0f95d1f5080ad9dabf41edb
MD5 7f66b3d2171a07462660a3aab27e276a
BLAKE2b-256 83c310501d72df01c03790637c43996d05060270ba1edef53785e9ff261db6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2bb4b18985f423aa5f60f6f84370379393d8fb6cba879a1f26ac382c6d2620a
MD5 cb45a4c2089491acf49c86b8c7dec1b2
BLAKE2b-256 7b79ef00cb3bed5bf2fa6fd740263415afacf3d4e5ceb93907a41660cdef3d2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 490ee5fcd5f2c038ee7e26f6cfcf2150bf6715e780833065f4e233d3391aaf72
MD5 e71605ec043e3e49f461fc284e39134f
BLAKE2b-256 acdf275cc9af924171189501ae817605716d1f3a8e73e3534767466dad5295bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8305cbf625e776310515f79136989ed06e80748932b3b6aa5771defee2c5f3cb
MD5 1164bd45a7deec1d67164797a4a2bd68
BLAKE2b-256 509c71a793f73e152d292c9d757a83adbf609795fc52f006b7dbabb693802926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52432bf8055897e944ef330c5b4eb988afb9cbafc2a08039148fc6081f66d9a0
MD5 3c43bf24ab8290df2cd616d7d98eb204
BLAKE2b-256 58f497aac6eb846307ca49a59e86f62a0690dd38cf7ef2a21c42d469739b9bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3728cb17013a8051be9791d3d17328b6801b9fbe7b3d534ee323842c4f844a16
MD5 662c8f53172b1449463ad69983b3530d
BLAKE2b-256 f021a1d199031b91a814d89adb9861fb1bd68b57faacb771d95c9160ad2d3f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 183132b81a3c71a692eaa7e956277bcdf082f2675208aa264199f323ca806e0d
MD5 a35439c1fcd8cb47b5b73e14cd7f0e40
BLAKE2b-256 2315a860a0a283d6c614e51f2c68d8e5118056a1b36fec283dc59023bc74da07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b5176d4d3a903c732e32f1f76e6e8e0b9ddc2b171b7207959cdd886d31d432f
MD5 40d717b7d5430c55667594c93f42192c
BLAKE2b-256 7d658d0490b5675c660b25f9db74feb1d2267e76c8daf86fb8bfa1bfac9c3cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cf3e3f9277cd7b1cfc2cdbacc0b4b214c2eb6335e4542f84e3bc0081cd5a774
MD5 e66d58f1e30e6bef2de066403907abf3
BLAKE2b-256 ab29fd1b992bea7b75fea96f08c303eca949fa62c5f886dc8b77d1cf93d51f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da476dc73ab442d00bc32daa9d5f83e1d6cce653100c592150e3082f5dbbcd0e
MD5 73709249aab8d85e8b6e20d7224db808
BLAKE2b-256 a74b1249c43709204e59bd1ca44b8384e0612a7832bac857f0766639dcbe915b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9bf44b0e4bd1f9fcfdd1a525005234294e47fd39aae1add8419ada9fd2f01edb
MD5 b1d3877e43a73204828c827201baba7d
BLAKE2b-256 3cf7e87067c24d249422ca8a9c0880a46ef82fea544c035117b7a2085d358d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15683abf805dc8eae3ec8068ed8bcea4bdbf646d5fc1201f4dbaf5d1d0787aeb
MD5 c1ceab6753e7ac27a2f2a6132aced279
BLAKE2b-256 b45cd70856dff79731cf3089dca939e7acc6e4d7f6d46b4c2acab0b1de32587d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b79481e1d291df670c3c93bca4efb6d49cf3b8db47931f290f8e1c5133167a9
MD5 92dcc4c6c446a2fe29785a942fce2ff8
BLAKE2b-256 d1d38b594add58dbd65d505b3227a4db08c62b4ccc0fe667716743681d383a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6591d3435e5e9e31a45a2b8bca8f76ed0c8ad5173eb13eefcd32753a2c14613f
MD5 cbd1ebb14aed86ed69b20066b7fd3fe2
BLAKE2b-256 74f57646702fe9cffa5c4c41441174e0db673894fd13a65651aa6d24417b57a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6021853c22304acd94947d4086241a4a4ec45db96f56fa0a9145f0ff0be2ea2
MD5 e07efb98dcd589503ad3fc3e278f1122
BLAKE2b-256 13ab48bc3ef6c6b8661865571a753753d0ca4fea056434cbc42bec961d41b1cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6593fb4355249d61552218c4ac3d13361a6687418f370a37e0c577a161aa47e0
MD5 46eb178aab784504bb8bc73c268b6234
BLAKE2b-256 57e7491a807980738b6f0f95017e3d3437c68c056847ab81f6d81ba2b5a254a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9562182ba8ba7fa992652610630b39ef6d49e28333a303373ffeb963c064c114
MD5 bd45ee7118031448fc103b113359bda8
BLAKE2b-256 eb0988c62ca8ae054292a5759dfcddd60987585705857ba1b40bb7dd14d0294a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75031f9960aa36531e5c21fc679593ee19a66a65b8bf803259a30de1699a000c
MD5 015133aa36fd85597fcc5ae6c53e6116
BLAKE2b-256 da8e9c17332090b70cc005449cc268a10e967723213e9bb83b038335e8a6a1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 960d92fbbf0e7a532c0340ffad13e1e7c5f552c067c9f01faa7040af8b6ee20e
MD5 07ca39e2af7ad9ca73ba38825d5ddbc5
BLAKE2b-256 459a5fb0d838739082d0508aca4a6b158c287e35335352c70aa837daa348e536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30062b9f8abf7bc39f1d21f3e9abee13a6a99309d8544211c155d75b582649fc
MD5 7c978c9fdc276a16b83d1bc8dbc07662
BLAKE2b-256 86347c863b67378f9d2614f888931dee6c54d2df8f6563c93cb37a33f3202b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3cf46a1b048e22549ab9c0803b76f0c4a20db1eaa5b71b6bd0490f418c42e56a
MD5 3ad79610e2aee4ba272552d48d81ac6d
BLAKE2b-256 99b0c966886789f918b6dfa3e40a1b741ce9212037bc1bc19ba1c7dfa5029fe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de961400acf41d20f87aa6e47e9c401993c3ee8301e33153ab6467b69b95a840
MD5 8ef40786e457eabb33b2e7c84b413e9d
BLAKE2b-256 76f2b561cfbed7f778da203820ea520f3d0e7a2f7be08758ef4ddcb00dd3b85a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f930008d3a212e948115c6a77bac8b7cd22f42215bc999b23268b946189b4815
MD5 4875ed5aa5c13c99c943384e9b41b4f9
BLAKE2b-256 948868163f350e328f884bf1057a9a0b0356f0627a92fa9780723550c7e61938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f52d632b98fb7acbb251f12d6979534021236167b044f75bee7274e7142a558
MD5 5eba4fc1f9cfa6f91d287e37375be6ce
BLAKE2b-256 31c89f9dc390d22f7fca184ef03846e631e9bc69e1869aab7b401606c21eea0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d116decdd2a0a3ac360dd874c07347c5a9a72daddde93d291e8d1d7162bef89f
MD5 588332c24bc4ad842266f227996176cf
BLAKE2b-256 b8b5a7343dd16da5937eca2aaeeac79615d28955816a067a63c5ce4638004c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a5afb9670c494926e6d27191b4a1101d5af8d044cd324022fd08e93a31c101f
MD5 2d82db39768537f14e088f05220bcc48
BLAKE2b-256 ea70ec17e3f401ba99196f214b4eb2097ed3fbb4aa744e8979fccc931b7adb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baa0cbafede8a52b79082eb13f532093374208842fd6ddee0b16157e8f26bd7f
MD5 f5ce81512f1fc4d587c4eaba2baae0df
BLAKE2b-256 6b1dab07b31677497b9bf20d3b3c242c9bea327ef1e412d1d89eaff093dd2753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18a2cb2953051be45b168d7ed20a1bdbba6515883d619891344bb911ec0d2232
MD5 629ccb32fe4ac2cc2a10d054e024ddf0
BLAKE2b-256 21fa96d09eec158c3b78ace59e9c2193bae64ac001525db20ba523f304c65a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 197f57d739ab651b116f307d7be5f4d7d68d6d170bfabff55861998a8da3f62b
MD5 f9249a39643f558a920aa4bfab90a013
BLAKE2b-256 5b778ab33dcaed4eadf91ae58cb74ebc6e2234238b4948b582bd27861e9f8655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fd343aaff5c2de39d05ac03eefc18e8ca0a8a5d9db733a03604cf2bd9721780
MD5 558a58f0b78ecdbbd45b16d9ddbed129
BLAKE2b-256 b90546fa1c2203046037bceb462d881aad8f1576b508ca4d88105ed5c406a797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26e02df38646e78db1864e92b95fcf82b2097688fe36839543cd769b0cb82a5e
MD5 c504aca60a84b16a03bbf4f768673122
BLAKE2b-256 3efa5c70316c9a42e79c9f7edf30fcb1fa211efbe8c0efdd095a2704b3155abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dcc5e69bc2fe8903ba27649d6d48725c58eb50917153bc2d745310c592c430c
MD5 453a1495b5733a63dc4689bc206b393f
BLAKE2b-256 b9f924cc91b021ccd7b53f795105744f840969f33b314f0117f64330cc481d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9152d472765f43e972620a97196ed9d680f1e7d139c43181ae9931fbf02ac596
MD5 bb0eb5de44ecc4da4fed0aa3f25b5fa4
BLAKE2b-256 2abdcb0f5e86c080d79daef3ed2537337f2b9ec3b22fb9c53d8332d016b47e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b266d5654040dca1666bdb56bcd9e4214e6e47757b5f707d4025594fd97c9da
MD5 2d5c9db5af584f39701f3ae3ff801c75
BLAKE2b-256 69c4382be70d83c80e1481e06de0faad6ea89103e58f36451636ffdbf590d0e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8662466a965456065fc61704a221943da0cf37fc3665be80387b69506f1b9060
MD5 cda7c86189cbff29c9e6abbcacffa959
BLAKE2b-256 bfa8c79091ad0228e88a2f9a72d542a1b7307327c22bbe6cfd6d59e49569a9c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6309109e352c02db674d0bfcb235ed1d4d7bfc9b7fb7a2bb3ace2d43f57d16bc
MD5 6bdd4c74c9d1830423203139e3fde29e
BLAKE2b-256 22236766fb30ee19c8c9932bd80c0644a3623c555aff1e8075b68b8f4106a1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 397b1d4f1e762ae975a9fb3bacba3a93bc8f6ce4d6a58f636fb70f3ada57b5e7
MD5 54b776172b1c1336beeffa7606c5e73d
BLAKE2b-256 7b957e3f670715f6270859946613fdbde5ed88c4fce9707b8e31839b94707be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82d49097450e8dc312b77ddc66ea9ef183bc84341a7cf0c37781e3893c776d7b
MD5 9cf1409f0bd538d9848a8d6964c16e45
BLAKE2b-256 dd8e9fd67decfcf947e21d2ee8a638dadf2960a93a0fc1671fd77e2cb3710c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2906beb9f2f9fdee475a156e6710c9aa7ac6b300c9a387aaa388e0401bc57432
MD5 d89a97fbf3258516062d09f1d8b40617
BLAKE2b-256 fac62e6b09fe7e269074a4e67022cdc22388dd883415f1478435296daa60af06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c667a900cf11cb28b35e2cc64f6fc81c67ca4bcadd8748a70fc0ef6871c08488
MD5 03b6493436e4487e6d9f13259f7bc3a8
BLAKE2b-256 b22ec1fd7282e7e54490b7f18499ad56e987f5c2983c35d9e38f051f940f2480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8a07aed652f26f0fd04aced117a360a9cdf171a18ef4800b7d13039b7012ef00
MD5 4501ecb4d54ad16434f9bbe7303fc551
BLAKE2b-256 2a462688ae24f4cce1bcdcd0aece8949a9a29ff309709e741259a886fa0ff477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51a6904194ce2bd4d20a7f33c6df2f7d03e40ee703fd1489b71657fc4439db0e
MD5 ce7d238aa4fed06208e6e1af4acfc837
BLAKE2b-256 2fa0765280d9e490a3dfd1d881d789053ec3252b80402dfc80d21257d788f21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74b1a7b3cfe87e8ebea84a979004e9e4c2a91e78a2f78ef6b86ce500f06d8526
MD5 e088aabd2977bbc3dae363d5aec1100d
BLAKE2b-256 48f8f253cfd4b8127e3c60ec88960cf0889077c656ce3df31b428b57052d1339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 203d22d1e0232499ac34f73a2409486d918e6a30334721cd2f635836f2da153f
MD5 5719a4fda0a44d462443fff1d70a3f24
BLAKE2b-256 b89f0079bcb8dec91b30d81bd44d5a6ffcdce0474b97dafcf59c74f2b1921120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40b3c4dd01b9ecf945c06c42e1584338518098e0760e06de5c8e94544d95ae92
MD5 69cd1b4cadd4825d1bb49b7426e584c9
BLAKE2b-256 4a3d20ca715f1408a418bcd2ba794a198ec0978c589b58559ad83afbe176edc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8af501e79779d1da279395944a2d137be93213774d81e60b3775c745b6cb29f4
MD5 2219c026010d658eef1023141ac2adfe
BLAKE2b-256 1a6eca178e65cbfeee4c1529e36fdb2c9941d36e9b28790589668300cf257c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1a743aa112f8c1e079ba1f408d59bf59c44fe820d3b91b59a01eb69b090e797
MD5 4d6d4aa916f1a5ce3305f46ddfc8dada
BLAKE2b-256 45eeff3b4f7e40b71d537ada38ebdb02f43cbf92abcdd67b1500ebae2f5cf205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b64ce4841b25c5c481f141da01122a0f9bb1e72cae2eae9d39ee48d0ecc2322
MD5 3430e7640c3a35e2736895aecad86de7
BLAKE2b-256 260ab9f20734f1a605c19ad10a409b4c3a4df04f7f36559e3469d9b009ce8c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e88b60aa5929c2a9b856ea8aca64e865ede577e2e810218656fc19c1b79c3d63
MD5 9628a24756e149cfeda4aa66df849674
BLAKE2b-256 3fc7e59eb37205356e347aef8d45014131eaa8d698d738705cb7d02235fec1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bc0d657e841b3ee553995b84396146fd971bf88ca404b36cf30fc3e6a7d48e1
MD5 09a9fae2aec39d369f3cc700188572e5
BLAKE2b-256 16ce719f2940f8e91421ab9ce17eea401a5b74c93421b1c887a54422eaddd75e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e44c98c93fe9b150f70d553d3a24921c3cfca113051d7563a21f648b97813b3
MD5 5ddb53178b2b3fd36577a987111e3394
BLAKE2b-256 f25cb4c44e2883a651e7afc1ee38328ac93b8b4cb3d949d68795badea969a293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e184a131bf4b8a89ba12ce8f23d92d758976cb3b6f10a0b78c5df6044a141e0
MD5 680944c7a7a4af5734c21e059ec9ac42
BLAKE2b-256 15b5fa89874b6f9eb23b70a342df6c7e1f5c9c209890d21818fce5eb065f6b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a418ecb9a5dcf9539794e1b27daaf9db8c2625cc3188343cb5dbe12d9246592
MD5 1d59dced6acee71af2c3c6d935d2caea
BLAKE2b-256 bd52e66cf5e2d66254300a17861fd202ec5145b1347cd95fec604bd829202024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 777fec7c45f58ff70e3fa77d457e7ad401faca925060958182c9c387f7222abb
MD5 d4f223d04f2999358d966178f25096ad
BLAKE2b-256 ad866c2ad75c9717d03c50c115242518cad67acc0113419c2458937bd2b640aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d525d79a1d7e187ee68fe71fa69a11f63f7930cd340655bef5b3cd77982b12f
MD5 ccca7476ccc67e7303ad6a2baa672372
BLAKE2b-256 57fcf07e66785ef6d395a07f2437d0577816e8ca7e0ee4bc6d052dcf3d3f766f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7ea0cc8507601f424ed9b4b2f4de0b380fb57573e0cf9da42950cc003ff656b
MD5 800f8674a0637e7a4a17dbd8aa716c5f
BLAKE2b-256 63e0bd5ab7252601b1f248e9df7f26bfd8261f7aef4bf5b771885af16e3858f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 440e37c3a414fc3d9476819cb5f1f747699df07e88325404029ade84fce0c405
MD5 b57235fe904a994529bff1ae96ced84e
BLAKE2b-256 40e7794ba007fb2223606f1ee603d873c5379ae33b05a0185af93b3bb5089a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25d50545618eb9c0d01819b7dfdcbbe796dc100dc9ff3fa6f5aa06ce63decd2a
MD5 c24050f6bd90d3fccc202bc14bff7f81
BLAKE2b-256 b2f04f5e64a98bc2ee30fe9a3ca13d1c0a5559d688246919be2b09af6792faae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92ae70292ee071d6f3cd3a04661e8cd1e4dd86cccb6c351fff1924317f40c929
MD5 9d7ae7c5501d896344ad2c919cf78f1b
BLAKE2b-256 4f47f735ecadbf43a9cfce798a3a3945637770e5b7cabc129b88c414db7ca806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b5a298a2938635561394afb89d90b34db1d0e999202e6ff62154f3108949cb9
MD5 489ba0a78997d68603bc0c8e33c46cfd
BLAKE2b-256 5a13a010bb39f385d215b3af669492900f2b9ff875f09974e415a85ced9a17a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05362db8315b825b3c4274fc83d5e8ad6e220b911c5177deae792df8e8e5b910
MD5 824bf928c1c1cecf590de98b7c5a3f06
BLAKE2b-256 354c8aa30064b62ac7f439bf71d15bf60e76fb51e8fd70eeb71fe87615adc21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b8fa903b7c917d38be5daa6c83fee1a4e69109dc82ee89f60f295e0548d094d
MD5 747bf7bc00faf42a9e3ebe430d4845ef
BLAKE2b-256 be8223bdb945d6e496b685e48f8618ee824feae408b0180ec51f0e08e4ea3e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f074465410ef58cda5e00cc55f7fbb59b191216aa601a0fb7dca6df050bc2b7a
MD5 94d3e70f69dab7fe99ed5dfb804cd20f
BLAKE2b-256 6b45d5f6739248528fec62108c7a3b0d68038304ecf9d37da33cbc9cfa1414ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf177fa32aa8571fd0d5c6cb2834923eba598bc981070f568a2eea9228fb359
MD5 b5e6aca2a83b40ef2569fda6ec6b9566
BLAKE2b-256 e29aaf9c5d17c339471f5fcebac7bf2b735f79f3b32e2f2f5ab29b7aa3ae5b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81cc60df6c6039ef456dcf2ea8d75eeab385523ff5004d80b035897a4befa5c3
MD5 84e255af1240540ffa547e04caaca9b2
BLAKE2b-256 7b92ddb7d88abe8d0c710694ed2506c4e8dc214e9d24f55d0e281de5ca056672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2397de85cdd6543fc4c3667d7bbc473fdbec729f3b692a87704742a91f48a562
MD5 6a372e9b18cb180584884541109808a2
BLAKE2b-256 bb44f7836a8ccc47c5faa6d6c414d3d2f5afef0a94e87960d0afae1c83e6b55e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4316e945625d45e5010148659438f36e0ee02cab7fec766801a3347706d7d84
MD5 811ed7bc171998dcdd50bffbdafc8aff
BLAKE2b-256 64b5277065fecac93e38b9466899528eaf088f9a160d5bb7306b3c494a0ee3e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 28e1ef9fd4b4dfc396af591ee6e03db6751c74e3f5aab776ede7b79d15c3d64b
MD5 d8351abff4f28e9cfe6a9573f97fc50f
BLAKE2b-256 778e3b5c0fd6d245afa229e25001d9ea4be25d2614d62f80da10af4a3103a889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fc1e64ff0ad455752d980326b810ae50411b121312842c70105b125c84587273
MD5 13eccee8dac472e47c83e983f55fea49
BLAKE2b-256 93b6bf2e75d0634c78d3cbaffe66ba9cb9583a80d42883037aca81a934cf225e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5b9ccccb29a12592b3d2cd72d5ccc2abaadc29284ef7a9c8d9950d64ec2f955
MD5 65263c121e1f453b0cb531d1abc54740
BLAKE2b-256 6e1e96f5c0397f33fff9e61adb735134e7154d33d5e2e8e866593cd5b0d1f63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a3a9a33fca71e3c118efa11908219030de15a7508289f1ca99965920b295594
MD5 af42a34ec94b18c29b06091eb18e96d2
BLAKE2b-256 f319cbe8cdaa9819c8e43ad90e4ffe675730d3a00c0e965f17eed60502f2d785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19d0bf2bc7c0b431019cbc67bafa02c1f94b33a00037ae9729d3d88b0b2df357
MD5 5ae7d43b9f4af17d7c87e8dbbb47d6c7
BLAKE2b-256 beeb7841324a637a37a5727ed9c06d67bff613b22b5be5716d5582815c6834aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5976b4136b8012ead842dce87888784f6a0bdeb758f3474a33efdc518b58469a
MD5 b9ab8497ab4dea8a8dcee6104ff51aeb
BLAKE2b-256 3a0abbae13a7dcf76180412f381d9c66143c0ed3c251fe8051c7dd204c8d4b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5ac877d9b5bc19ae35059a248730506156b693a79dbe87d5b92bf8f58873984
MD5 b3318f9e2ab28058f2c3762ccb17fe04
BLAKE2b-256 278536cafb81f8f2cbcb15a4d9d0601ff1f1f7ff2ac958df77b2b2c0279dd5a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e28d642ad453c601e7f2bdfd38e69cb77f9b0f6f3c2fee06be064df45272a1f
MD5 567ed2857d1b2cf791ec3cf5170c376a
BLAKE2b-256 647acd65536ba810735533fc33bb2d4e3c9226f2e682fc48feb50569f3d3efbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80997c46b84fb4c2a85a73ed67b92ad700db06164ae83bfda127167848c959b1
MD5 34c88523bc8579c52bb3af7f87fbb282
BLAKE2b-256 e09781a4a6344e2c7eb68a199aca6096dbd739285bad8067da54bf6132268871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34c11d3b458b9ae9e2a3422a46a01ebc442d34eba8d67336911b6592eb2ac1a4
MD5 10080f4bf76f55f611c9aaaa89445ddd
BLAKE2b-256 2a6360c14f031b9e5eeb7aa75f3254df79cf79ae9e4596b354589c00c33ff821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 064a5d6e910face348d8f7a8c0c5aa10e7b35798a10dcec3b5f232a2d0443185
MD5 bc8ec8a4d3fcfc9dfd92494ab593fd00
BLAKE2b-256 3692088f64ca48d50419d7a90c063e3070db9ef0b36729fc00e83d58286546e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd0aa6a30e476d447c7f877ca5b27993506ee6a58fdeb991a330c4af7a000c73
MD5 7f10e99f2c909edbb2e7775e595df337
BLAKE2b-256 c7edc6c737f7c2f1e889377e95c24ef2e76101312df82a3c6eab6add5ba920dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77882d149e7003cef0c7ef2bce462604105c3b8cdc14f4b61deb274dfcd58ccc
MD5 34e01d0e545376974768f136a4ba4b08
BLAKE2b-256 1f698ac5065cf5b4c0dbaa41f21c81d06bc59f57a3b0fc3b985f00877d23c006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdb5956650b51fdbe5930d4884897512126ceb3c2f33b24d6182e83032e62dc9
MD5 1b65a5061db2227a0376d4b6bc80b53a
BLAKE2b-256 f39feff45a54b54deac86da8a87902fe7d29d9353c88771ae218bb90da329339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4c582e6d2f647583eb480c64f05b73ae271f1d4fefef452a9d68c0a5cea9d4f
MD5 26cf2713a2dddd486529aec619ded166
BLAKE2b-256 11151c972fcc08e8b5aef4a31270c49f8394595cc82766a58792cc5d8140010f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4ac80e060a2f99a6ac62f90793dd032bfa0fa29119893cc9f185cb2702b903b9
MD5 0bceb0997c3bb2cc9d17559c679f5117
BLAKE2b-256 26c10814a56c9da7e76452adee284b45a9e1037e31a34b5ecdf69e8f8d099d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e806dceeddc8f9850f95dcf633ea6c0861450fd2216fd169d269f411ff89e7b
MD5 6370c321ad01b76fa73215667d42f21a
BLAKE2b-256 bbb8e5b89189b4835b57e12d619e6395b5eae78ec0bb7688ef75be5ab8eaee32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 822c0e7b40ddc1417eee18182fedfc64caae5b3812ce5e2bdcdd4e71cbb29d7d
MD5 98284caf6c0187ee8b7fb0906ffab20a
BLAKE2b-256 a9527991be8d82c7cc31c3c3238dde7af656810b80da1e557d1dfb754c25de5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee2c13700cb6fa56d055faeb9034519b62413ef98ace9678de99bc56dd3c38c6
MD5 3d81459a2bef6c70d32625e65ebbf194
BLAKE2b-256 e952414e20ca0d278c76f5d0f63d1290211fcd019c138895da1073b623a3c3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 214e73335483bdf7afee02fa9548f2b64ecbf7450c787a0372abe19a1d1c587b
MD5 8c599cb40599c110557faa84c2c29761
BLAKE2b-256 f6c1261aa39b8944ef373279b7f882b0fb157eb509de5782f9c746e0f000a980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b750f78583a5bdc4507c82aba6e59d377340472db1f47655188e3f77d24ca898
MD5 64e6e26fef04f744146e66329115180c
BLAKE2b-256 80ee192f82cdb70d02cdd99d6f6ce212f06b8ac25c6f7f15fe0126b861a5b6e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de71c4883ebbc9a8bcc1e1399b21d34937a4fa30cd66773366971415cad61e07
MD5 af6501dda281272dd724ff4ade0919ad
BLAKE2b-256 5a454233de3ae1f2ebe100393ab0aca7d816d127725b48f86d953fec304ea626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cef2d8dd80bc080fd016ab706ca04adcddbcb7a3c47759a0efa83169fd14e1a4
MD5 060d42cd565411558d76adf9db67c09f
BLAKE2b-256 f5395168b630818561fe8c16ab79d0aae9cde2ac23443672c07af194b26128a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1dfe9f56c352373518985754753c60153a72680e91ef03a862a9434a47bc619
MD5 3cee34c619da4788c7cb5d244c72a141
BLAKE2b-256 c22d58b5cdbd7da898850289f8cfc88a714aaf56b1ce06bd8e2cf7f23bd8954c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9f3d6e9346716f10c027ef7ed355859aac9485b7487cf760b4f11d4bc30177b
MD5 7624d5f99848c47227a2716c14fddef6
BLAKE2b-256 6dfd59a33f3b90007c9bc355ab7f8184394d31b69d38433abb5828555fea8d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0fd137c8d41f66953adadd5c487208a3374bb13ad788cfbb41ffefe582c99bb
MD5 23196ccd87094150347298c2b4999ebf
BLAKE2b-256 49f8121611cc94c0da5784b0d566c5b2561d0d2213ffb538fd60385846ca9c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fcdb0e8a4147f90ce3707cf140eb2f14c0e928c4f3b55adad59bb901e1fbd0ab
MD5 680c0c4ed0183605067d113e14fcae37
BLAKE2b-256 781f0205a87ea9a982b161becf2d73646a997fc6eaa2f0139824e900db0d7673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f8c53b72f6a41abad9f40750e5eb57ec7c01994e4f9da0060ebc8b0af92839cc
MD5 e31353b4fbc305bb76059102472e3001
BLAKE2b-256 f88a6be188c30a6a27036e9c98ecd6b0a641b0f2a9f70106799983db2afe7b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a6a63e6ddba043f08c7a931901a2f1c86a1f6b62c8ad6beac89373f9a91b65c
MD5 0fe3afa1a62617fa35e2b47ef99c350a
BLAKE2b-256 396d356d3fa705566f7b068e84085c273c3d4b1c9c348faa2bbcddeafd5aee49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd0a11b3f2e90a303409ac2be9da587e43ef1d7c0c3e96d05586d1a146fb1b08
MD5 cd90445d1ff735e9b7bbf758f10c96d4
BLAKE2b-256 e2de7bdecfe7e5bcd3b2e5b13c37dbf7465f4757ad895ae7152bebbf468f49f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63d7eafa5c073f81497e7ad95dde7545cbf95b3ad3c34a8bc37a97cf7bee386d
MD5 489d2e225f60923c8c061eddc7c1a3bf
BLAKE2b-256 c5fd49f50fc8adedfba97925c137a5cdf02263c5b7a4b636a7a1d32b318cf451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae8b07bee773ffee8cb46e07ca793c6363498a470d1f5fa1fad801597118ca29
MD5 2903112664346222ad93963afa5382a7
BLAKE2b-256 e5a278f2f2f4809673fe6cd70df212f8d0b7b7b009c2b120d417e6859ace92df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9bd12535ddff8d29d1f9e0093fbfdb605eb73e374b3ae9a7e620448d187ad86
MD5 5d6bbc2ad3d8f8547cdc5e77de08ded7
BLAKE2b-256 b2abe2523e67ea09bd1ab0f5e1a0a1c50a34560f1dd7e95d5258c805f738e8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 019fc4cb7d567709da5677bbbefcb506160b98c66f7c0ec64bb6417056ec3975
MD5 e128b4f4b211c36c5f30ad95b93a72ed
BLAKE2b-256 1a14723116334963572c487611beb2ec558599c16d788fc62fbcec5508c32715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e146862abc6152a36af5a0f89329d6b4a449b1fcead6403c59c3a70a881607ab
MD5 d8bc636704f3ee12dcad9316a624e769
BLAKE2b-256 e4f4e10e977a98d4ecb806fb741515cee569e6c9d1f25b5d1ec6c41749281480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 656f58eebbbcd8b8c6f90e5a261fe28b75ac5d15609d00d7f9569e461ccca6ef
MD5 fbd64b4a919bd9b17b128a497b1e2ac8
BLAKE2b-256 b2a95d5eef1ead2f5214df848574365ec80058ff225e3706530638b6ddf7d11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f647f43c1a2b58f9f55d2c1a9e3bcd850c42a342972ca62b872bd37467301c1f
MD5 fd36c4f5bbc32c34489ea5ac116931e8
BLAKE2b-256 6a6d5ce94ec95e55c9159512f310552a72338f2c60e7a0152b8b88f966bede04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 565d87dce26b2652fbed166fe78b56a8e6dc5b1cafd700cdc300608e2f07dcdc
MD5 1152606cbbc16d82e5be80294fe915bd
BLAKE2b-256 3875e2df49ef05af188f1ef071262c5196d870db7a80837253ec8f713be66a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 795c76374888664fa3246551e23d7cc71176ddd24e00f09e6b91290da5f36496
MD5 3da5650288cc595d3da9d394a8396b78
BLAKE2b-256 be514431994789aa16a82ffeba83e3805241f26624b69e48a6d165dd40c312f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 182d305f55590cb2a14ad8b060ad2cc47fef2e6678623c8667b0fee60679448d
MD5 fa0554877ac070307efba2d68472a341
BLAKE2b-256 448bfad0558963ec4516819f3719bc718e7dee5c091d4876c9b28556bf0f81f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 550322fb04ba0cc8ba37474faf54006cf8b1ea50e3b9ff895716e6f6e146fc15
MD5 b8ad6b50ccab7776a54e21a967361383
BLAKE2b-256 d487e32912f4325296e2bf35cb426221a94feb66ec9d0ebfc00eeecbc6787017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f017a4e70c9577d15eb3363664828cee9fadee29ed493338b8103363d632083
MD5 325c5159c273aaf90fe09146f4ab71d4
BLAKE2b-256 03f6da0d1a1de3ef9967d1878e74a6ffb279fb400ad16b695a907d0d13508c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f02fd1737218770a4954de9f7da9f80ecd0d0887b0bdde1c5e9bb82a5f4a237
MD5 c5d184501df59eb4a4a5dee515d655e0
BLAKE2b-256 8e4ac58e35ead680defd2323e1bb05008af1db3391dc01392e1b444af2304730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3222efa3a2072a2f902482b56cabf553e0d0c51b331f8acb63baae1d8e8369c2
MD5 6815927f15396272db335a38cd00ec00
BLAKE2b-256 a1665ce19c67a4eda34389f026637eecc85756fbbe3575a202154c9d1a812189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a3849156429ec23339f31c4588856a437d2c5c86abfd5d25219d2b92d5e9ecc
MD5 4e35f664aea0cf1ef235f754c55eeb24
BLAKE2b-256 8cf4568e41a40ae94795734eee1b42f7f344e0ee619b05828b1eb4476ee36c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91dbd51f6012f0de84aa2e4dd8233db71a3ea0664dedd378595d0dcf663378f8
MD5 7dbd2c905f3e1b3d1245d2ed700bc233
BLAKE2b-256 2b6db44043dc621b9e3e4bfb9ab68806cf8fb56461cbf3297de76ed89de4a20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c2654db26e7cffc03c747485d70c8421bf1b2927644d862eb091aad65c51d5c
MD5 a02d22cac64cce124a8cdccc1890c41e
BLAKE2b-256 bfad1ef346106ba52d8ac6df7df7c947e6451b8c401943f7d28cd76b957742fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f5bc02e52fbf28215d1619913d613939edfe1ecbbb85317c835ab28f1f80e69
MD5 79fc58c8c695d138f40d4fefa65baee5
BLAKE2b-256 b9c9acc499db759c783f35b2b63a52f9f7d89b33d0b27adaa26e181e5035120a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bab7f8b5c28e7f158915ae32f9bc7c194d1ae73d98b4d40633804b270c9c926a
MD5 292c277b9d7215bbff4cfa3c109eeebe
BLAKE2b-256 6eda712f759b6ffb4f5838ab6f903d8ec975485b4644929e42f8294b5923178f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e393b8aa59da2d82390392811e9f13e1466485acd964bbeb69fc5552ea007cc
MD5 91b63af20b301189932a856233984db1
BLAKE2b-256 04bae9e838bfa99f3d3abddd58663bb21c7423ef649003f1afdd0e86e2cc8870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f129b8e60dc38e79b6147029fe3c832f74ddddd2c417ec023853400849ab3dcc
MD5 aab563421912b144ed6f1cab7543a20f
BLAKE2b-256 75931cb42386d66f1ffc0daf6e232897e0fd32601d790397a1783affd8fa2bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 afa9ec68df72a6e823d895e6d44bb5a21aeb3e1cf598d6539370a3fa8962c12b
MD5 3d26e421dc6a882ac3f8ec8363e95943
BLAKE2b-256 533475adc77f1683f58a3dc8bb0b9ab4db100fde8d5af8e30042180cd7900184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8d762f26a7012ee09ebc2038cdf9f1acf5a8c71dbf62a40d9e68153ceddfdc9
MD5 8fbcffcf1e1874fd596978ee45dc520d
BLAKE2b-256 441e7f6c76f3b17d2cddc6bc14bb46a10fccc6463244b02506e75ed7d0f4308d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 084ffbe13a69b6bd7ca18ab7e766c04acc0eeeec38b1dadece63cc7a0182896d
MD5 b48c0da6ae7d9aab18c1fc0a5e67054f
BLAKE2b-256 588b945720770de7b80852a011fb4f72e144aecd202474784cee16fdcdd53b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 178b9a76c22137a1f05da491465ef0aa3e0d6b275ffc9db07fb99b9d6ea94030
MD5 a9392361e69747bba7341a754ff567d8
BLAKE2b-256 07e5894b745b447b0f020fca95a523111f1143c32f8c9d0338057fb0f9459c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7230429387486a9509d0bf5d627436ff3ba0e11dcb7d9b21b2fe7049479467b2
MD5 78fe5a82a97e5440d050d36de67bdadd
BLAKE2b-256 58a26d92642de580d5742c2761384ee7160e5b51401483060b65f8b7daf8d499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adeb601c7dea04752fcf3ecfcf45c2e48f52db88e89b642ab664b4ddadb9f47d
MD5 094b4f983ef6a75f9657a5f89b27c46b
BLAKE2b-256 4136778f13a235a4952a404d0c53e801aa6e8a9e4681bdc40175279af1a1cf93

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