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

Uploaded Source

Built Distributions

autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (860.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (885.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (885.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (952.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (863.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (902.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp312-none-win_amd64.whl (685.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

autosar_data-0.9.1-cp312-none-win32.whl (645.8 kB view details)

Uploaded CPython 3.12 Windows x86

autosar_data-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-cp312-cp312-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

autosar_data-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (885.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (862.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (886.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

autosar_data-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (781.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

autosar_data-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl (788.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

autosar_data-0.9.1-cp311-none-win_amd64.whl (684.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

autosar_data-0.9.1-cp311-none-win32.whl (646.0 kB view details)

Uploaded CPython 3.11 Windows x86

autosar_data-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-cp311-cp311-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

autosar_data-0.9.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (884.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

autosar_data-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (781.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

autosar_data-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl (787.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

autosar_data-0.9.1-cp310-none-win_amd64.whl (684.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

autosar_data-0.9.1-cp310-none-win32.whl (646.0 kB view details)

Uploaded CPython 3.10 Windows x86

autosar_data-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-cp310-cp310-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

autosar_data-0.9.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (860.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (884.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

autosar_data-0.9.1-cp310-cp310-macosx_11_0_arm64.whl (781.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

autosar_data-0.9.1-cp39-none-win_amd64.whl (684.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

autosar_data-0.9.1-cp39-none-win32.whl (646.1 kB view details)

Uploaded CPython 3.9 Windows x86

autosar_data-0.9.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-cp39-cp39-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

autosar_data-0.9.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (885.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

autosar_data-0.9.1-cp39-cp39-macosx_11_0_arm64.whl (782.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

autosar_data-0.9.1-cp38-none-win_amd64.whl (684.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

autosar_data-0.9.1-cp38-none-win32.whl (645.9 kB view details)

Uploaded CPython 3.8 Windows x86

autosar_data-0.9.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-cp38-cp38-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

autosar_data-0.9.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (884.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

autosar_data-0.9.1-cp37-none-win_amd64.whl (684.4 kB view details)

Uploaded CPython 3.7 Windows x86-64

autosar_data-0.9.1-cp37-none-win32.whl (645.9 kB view details)

Uploaded CPython 3.7 Windows x86

autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.4 kB view details)

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

autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

autosar_data-0.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (885.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.9.1.tar.gz
Algorithm Hash digest
SHA256 a81651d5e7e55857fba413b77ec99d1e6d6ead87891238c1c5614fde45784323
MD5 cef475d73bdc2578cb1bf74c24713f56
BLAKE2b-256 1b54448470537066c829ea36f71900d3fe108f6a051fc9a15990c06db6f679db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f9fbd0ce6b8b701b7140289e8483de55aceea239a40f01a04d2670f4bd8132e
MD5 844bfc95e8523dfdb570c6e1d4f0f9b0
BLAKE2b-256 9c2f4a08bb41d0a5301f9730a8f08cb4f11932bcced2c38f279d961a1c7a7cfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a81c512e6bee5c5cc7b7e826a674186039d3d7bddcdffab44e69cba05661426f
MD5 37fa3683a76f1d2f0e7c3dea65cd2e8c
BLAKE2b-256 036a8ce8e2dee3eb557450cf74313706157c601735971e993d49505c6114fbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e71f8e6b703b48892c7c90d96e88ee24c95bcc712f78c2cc1038871b4e50c757
MD5 17ff7bd2ff9e23127fc98fa9e26ae749
BLAKE2b-256 a00c466aca59bce755dff80aadf3288ee13daabb5babbe347c0461502638c9af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bd746181fea22350d0513b5e43b8df124e1e22c152f8c69d9e7c9f90877ec53
MD5 e9d801f7102fd49158e86b87042b346b
BLAKE2b-256 9d9a2e5e0e7bb94d35aa978cc4f0676eb52ab4fcc63291e02af0e525dbe8bfb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af2c9ae2560874fe849c5dee395e699d7b8efec90fa375fcbfbf326cfbe99022
MD5 961a83d30da791ee80f4cff27bf6436d
BLAKE2b-256 595e4eb6bfde759f26d71d99096edfdf7d97ff1169d03b238a3ea85ca749df2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b422c69b2505b28f2e2b5cb7491de0f49e12e0508c0970a0cae6781186106f8
MD5 b4ce388aae968190679289ddc84cb4dc
BLAKE2b-256 c37eae7e640bd8cf1b4ac392698bc6e8345643c9308a014a99cbcedfc87bdd10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86564abd965dd5b2836161a652d5b3057b6f128b0c139e10b7e58264b6d65675
MD5 33fa7d7cce730883f2a1619be665ac49
BLAKE2b-256 6686bd3d908788b7f5e45642a8eed1607f78a5f340d939630683e6643f13a109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d041d8c21ee38e8eb55e71134bba88f46b2cb08c5144647455e2b0758c2c1203
MD5 bfa00669c95bc62b5633c123f66dbd0d
BLAKE2b-256 e4d33c87418b9f9c7f1b96864f8b6b1be4d218b18aba1a009174755056d67a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eae77361f5d7302966f6f9287c303259c2ec1423012d04cc267565e1751b585c
MD5 903babb8f28dab20485c6705fc2045f7
BLAKE2b-256 3ac3229e5ae81c983cb8bceea5b310c690419f8e585a3d0b829042620c83a861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8b2abaa178cca08299a9fa0217d65223cbedb3f8c2ff44006e9572992811b21
MD5 42bd28f6fd0be42d674e67b5014bd852
BLAKE2b-256 d6acfc541ce673c0b2e76393e3b3998784ea1f74be113def55c37ada2434754c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9afef5b88ad5dd89b063e63123dcc28eb9c42137da9e443c7638dfc3273d9b35
MD5 ba1b0de6a1a6744e82a1fd64ca3d5835
BLAKE2b-256 83bba96f87954a70f9df59b4220789649469d6a74389da9101456a9e2822b885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b03e2215793eaf718f582f3ccca04ffb32c04298131759bf6a9c8205522dabf
MD5 83f9bb5314ff704b2826dc8edf00cbc9
BLAKE2b-256 22511c99308e27dde7b35ffe64d04c00f01617f61baf6026cb79afa8a051f89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b794c04a9a98396630773a64c14ca2b3c1c9bc30efae5ed2d8ebf1e12c943bc
MD5 36d555f96caa7807a81d3f984a494874
BLAKE2b-256 4b8ca2459cee6f55b03bf51e36800e86c5e55c1574473c197bfdf294b1a3d92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddc761db6e4d8f3c83039d028727a06b59d5a7c08786fea24e101211c6f40aa8
MD5 4cf05a51a018a1eb220afceea97d45aa
BLAKE2b-256 9d99688c59a104b43b84417069fdd8cf37ab8d49cc207fb526ef0f68905e859c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49fdaab203310f0e003d10f8f2e7c785a96cac74cda07fe463158194d0a5d1f4
MD5 f6f59bbb7901393efe6ea36bcb82f926
BLAKE2b-256 82b9525514d252f52f8a4c7bd0717a0896896ad0c095da1f2fe7c04ca0f6a8a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba06f33b114b0d6fcff999faabc9f3395346ff71ff48bc00ad1a1896f3e4b980
MD5 d02d222d1d100cf68cef071710309200
BLAKE2b-256 ae43580baa37d0655e97ba0b86e75d61283910926e2da06221e14b07e37554ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 605765e529be0a24ef1c43e3e1b212ea6ac77b8c4d73cac8d416fec305b00e36
MD5 6d6d4d6bef75a44c5daa76cd927c0db2
BLAKE2b-256 62449209b79df21ec158a6af94f535458a2c949b11a7c0e468e8a607637b275c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfab16a0522563ecf51d1519c3a2b9018f60dbb7c4a5474c40c2d9c611bda0bc
MD5 032965bf1f3896c45cae67b53fa23be8
BLAKE2b-256 510113d28189a6fec6448faeaa9690d97f24aa9ea630f7ecdc15e8603cb57283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeec05225c9df1fffadf6831eaf33db3234efbd0b4f585c36af88ac0a55358ad
MD5 4a1c8023e88dc56d76901bfc7b606b14
BLAKE2b-256 cb371e9dfc99166a35ee05de38e67069c3da2b22fdb436790aec45af5d9ffacf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84d3f6501b5f9508cda57faa7605cc4c6b64cc237efb1388e9a1365864dde9bf
MD5 048ce9f3d822eca0748a9bb188d2b03d
BLAKE2b-256 c04cba839a9b1f0f88f09e19aff07797d79d34561666b20e1917c8249e04ce52

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95daae151f4be2298f9c84ac1803a76a4eb9ea138ba29b10c9cb4442bca9504d
MD5 52dda4d05ab3fb49cbe865244877af14
BLAKE2b-256 506ddcae08f2f7063a537929ecfd346500534e3d10085cfb26e244dba7730e9b

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dbb595926489ba9bb385c839e715b90ff1626a0433e789a8ac4011781c02fb95
MD5 3c937735d6d56010dcc72daf8e3fb8eb
BLAKE2b-256 2b5715ba9382a4595ff1bfef58d45da32cd76bfc666cac1b0849f0d04ff54ca1

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79bae4882d5d58e16642292bb096777c2d72edbdfdc902d9e4257c16b91793e0
MD5 8df7f7451489003a7d8398d6dda435f1
BLAKE2b-256 49225b5186fb09091ad93e7470923666f7e9eac336671b362ef4341931bc3188

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67eb89ba860c6c2c777ebe0aa2dfaa08038a44ab871cfec0a8083c75226788d2
MD5 afd0e62b6bd613530932067239a04562
BLAKE2b-256 4e64f9bb2e8cc408f3cc4c7ded78e8244ae56073ed6f988ee7254272cfd05a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f6757c8992993edef8d6e2fe3c39db0e996b4a0d8795d708c2f6fc7e866747a
MD5 7323dfdd8e9ef4f74bd3bf22992a8c70
BLAKE2b-256 ab7a316bc6c8778850072ea420c55fbfb4ff3e8a2ceb0ebf7d244a137a1feee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1b9b9250c69ccd97fd8dafd0986b5c6603bb0a53c24d75455fabd67fadbc4d5
MD5 ca7c72e0ba531d208285cae6229f7418
BLAKE2b-256 def6c5fa4f33d2218e3ca6c13f1cfd02fa1c8b3ba0a0b3439232860efbb42b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0bb1662c27e475d8bbf734919cd94145fe6b024e76bcd26c41778fd5121bd89f
MD5 91f06c4ef96fe90334f8775f68e1f750
BLAKE2b-256 e1a5d40ecfa7f9ecc6e75243232f07f4f7b19579076ab3145480a14b3c2a4f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e7b14e3b725e96f94b78fe0ccd2e7336570eb07e4b15b24adef4c7d79922c4f
MD5 37e9ce06e7c4743548e4bea6a4e36c2c
BLAKE2b-256 238344d739a866a9a32575d839a72fe1037d17f088312ecadff0557fc16274ae

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 276458890640dd34ceb0d106dd661fda2252be0010d62608c4fb43864baf84d6
MD5 1d340e6e4ca8df80e1592e6e1d7727f0
BLAKE2b-256 3e256b01df77992722da662972c6ff72c115713905fba8a6ded907eb5909b424

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ae2461e757740c9d2720e0da1052aa967740f45715d1a26096dcc181bea1dc0
MD5 b72cef3a5b576ad9cd100be4c8c45377
BLAKE2b-256 82c5778777a56adaf827e62ab0a5a006b020fbf5923a8bb548e1455e6a55bc6f

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db4d5406930ceae8bb7d15ee15085dfd50690124b7b40da65fb133a1de475cd0
MD5 af1239a70a284d50c31729bce63b81de
BLAKE2b-256 ef5d351029ea6c26bc2bb289b3b582b5225495d011a8888cbc64140a2768e64a

See more details on using hashes here.

File details

Details for the file autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 845e7d21e4ca1b94aae0b776b675a0aa35584bdcee41dd424b926a62def597aa
MD5 9f0b24445857c44167f14cc1c3659936
BLAKE2b-256 e1d870b1cc5eebaf6ed6bff0496d08431998a356b66256fc3e4752072f37897d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66c585c43e13a13fc235449b4b47f6b7f8300ccb38842cfaa87942402d50478b
MD5 21d1aabcc8caf0952b6a9d16b6f4b9c3
BLAKE2b-256 6bc4eda2c68409d82095ff3c3c35d1d927f0ec7612d10e503581720475bce97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0ca4fe975ba7ccbd30a8763167b16a6a365c6420c8a07c06dfad570b1fc7d5f
MD5 d98d88d52708776f587bc5e1c4c2f4a9
BLAKE2b-256 6a05edcd8b34afb7ab39d9732e8ab6a54d58b58938a766348b8c0ccc0b196503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c914698f85dfd7ebae99caf71b71a76527178bc329419185bdc4963b7348128
MD5 601ee35ef72986f8dcd7ba9aca7833a3
BLAKE2b-256 182485eaa117be43d08939a7a74b7e4340ab2dcacdc9d677fa07399e203e096f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a37b7b33eabdfcfe08b2404e5b9e1b8937f96ae1cb8beaeadd2a6ad513deef70
MD5 b59cd759a46a7abec3ec40901d2ea4d9
BLAKE2b-256 9cef071f6a0b6bfd725fe044efcb507a2b4d6cdab692406423ebe8e31feac5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c73e2aebbef0773bb56afee59e70a5c98e5f2e8d53b7457c52174e2f6d5c6096
MD5 04adb6edfa3c5ccbbeebaa4d0cd8add4
BLAKE2b-256 ffbaddb2316f8d940e34976e5bb10b5de9c21539c06b6689ca153cc9cecfd3f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 5643482a30c9845887232d2df895736b7c79d079444cf558105ae9a76a4e1207
MD5 402191113dee8f16b62787f824da6f38
BLAKE2b-256 688cd857174f99f7ebac9110c97a8b4786d14320e9e8199d37a0590a5ddbbad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7df091c7398a486c07b1dfbcfcc0c3e3908f9b3b84a165c5fdf6f101b6b66ba
MD5 b4d2e87883bd7d7d5056760fbfbf85a2
BLAKE2b-256 a994886db1aa22d8a594b888daa60df032c457dbc8e7b9c82937e4beb94172f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9ec6b2cea2e376da3e4a8da59b1fda2b5d856dc3b8ef071963e606bc519fb08
MD5 d11faf72fdfca37287fa7f1b2ddd2e88
BLAKE2b-256 9a39defa363f1954f0622f8e90380e3e4cc0ceeeb0f20140c47ebe4a50130746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0156e3ca71ba7f5a55ca23115c10d3b604bbd08d0da414c5bd86bbb6285eeb9b
MD5 a1766dc30f181bbc7cd6a3551822b288
BLAKE2b-256 d48b75e0bd352c916327aca314f897b4188d0435f593d7bcad54e05cd7cceea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9559d58186e993c5b1c7d33215fb29bd69da56bb63a3e7e7b457e49acb9fb313
MD5 a7a9667182bca370c5c5dd3e1a62751b
BLAKE2b-256 a9ba46a81a374b32e9e958445406c612f9d07cdf552f56489bdcf369b85dea28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b645cdaed78a9cfafb325c72114ebf943c6607458ec3438033e492d5b17883e
MD5 8b5cf2fda2b4d962705d982b903aff82
BLAKE2b-256 2870a33bbea0abc7909cb1b49a435911cdbcea291d30119017f1d66adcb263a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f90dc2e44245d7c6b5dc6e6d176765ce6c33ca2ad60b943a435ed36d8d04f952
MD5 cd62429c61c707e482f454f737583901
BLAKE2b-256 d4f091b92d6f7dd407dea3bc93f638312761851b1bdae6d3e2809235b5c6eca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 804092eeeb679082a9b101852a2da08f7c2f9bc4c61f2b2defdf6f216e7cb8dd
MD5 a193d70860beb0305ccc4b62d506bb45
BLAKE2b-256 88deba2d8aeba6526460405da1c8603f906ae7232921c544a52d328340b2cfbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4d2d42877f86703548def9d1630c9f12f5e8094340724f713b247e5a0509627
MD5 0815c56c3bd729aad424672c444d2873
BLAKE2b-256 16a0b2fe15e234a905972dc7a1fad92296aea21d8e3c4aadcbe098edf30072b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deba5c30997e1f206c0f7fc943c11159c7a97364ca078f5d945821acea99641c
MD5 e3d570d41df4afe9789f04d294d6c065
BLAKE2b-256 ab751559f5cdd4b508a4f80b560a217948176d32122e28c88c72631d06f46cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8767713b18d2d96df11c44167c3a36b9f2cbdf4a7b5a47d79cd66521f167419e
MD5 76be755cc8b358531239a779f97f673b
BLAKE2b-256 caf16cf8f6b901b623de7c4c8f95105f45cab6917465dc49d3a52ce19d80fbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 773a6c0df9e8817b4cfbad816a6b2396458e585458b2d59e09fc5912affcbd34
MD5 77ec322eae9f355f5c40ff3b1c6ae126
BLAKE2b-256 e5e17993a00aad943ede3e0c8fa8047697cd52afa94bf8a69ad371fe95786c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e752083705b602297db1686b161803c90b608f88d2844132d5b20831636f1026
MD5 11bfb5d791284b171bb60ed11202e0ae
BLAKE2b-256 c5d816aaa6bea481341116ff2f1a4e5468f59d33163d768926e7a9de4bcb0a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 871a44bcc59d75dee081547f73f2985e1b7585b9a8aa847147acd510e8111303
MD5 a426ecdd60641b4cc95718c5755eb2bd
BLAKE2b-256 53275b552cb7cd4461be49729ef53f8f6d0dbadbbab8b772db9638fb4293747d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f8fcd14ea70531df23543042ce00730a3747aa77d87e6eef02f494b10e4f014d
MD5 3072742e2633a36d66881857fdb993c5
BLAKE2b-256 eb408fce11066b9adf78b20680cae8ff950369b9616eb60f74d2407664f90526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bba307374dc65cf5e53424f12d05180e511097924b637a1c64e1dc8be037803
MD5 94d7b6c8722c4250cca53b542727569f
BLAKE2b-256 35f5fa00c88817fe018fff38a7bccb5ed84679035644f6103d83f0561a6db678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36765cacb5c9ed7ef135aeae6b3039a2e1324a6c4f9802eb1ff3342310dbd392
MD5 5e10de1379c321e53368c4654a780871
BLAKE2b-256 4e1537d19f58fe28b4e0c30f35a5c3d86f70a368c162c57582a86cbc4726f76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 665518fe9201c905def31db8d00c07857c03ceea11450b8d4ab330d9368b8f3d
MD5 1d855a3180844fbb323a0136780395a1
BLAKE2b-256 ae558f677f976a03d7f16583d3abdc9ddf7511f6790d696e4151f78cd21dca33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2da516f55bfd63dc96a40b8d1ed54a17a959ced367ebae6e0de8ec594b82d08
MD5 7494fd55ccc492566eebe26d3ad8a727
BLAKE2b-256 e33d28dcf9d3911c70e07b024df490f72f88dce9af949ff45bfbb87595033723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ed0b2f89f24ee4e7623c5ea2af35eca743fe16ed42a26604db28f91b4540117
MD5 bbb3c44a3e5b4497f7412fb848dcb200
BLAKE2b-256 a2fddefa62584c9222187009eb82bd9bd28ba8db4f1b30774d4c3de1f47e8100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 018e5ccc8b2a277ab6a18b535fca176642d2c82975146ea38358ba5674a15caa
MD5 c6e412e27ad33c0da19576d79237944d
BLAKE2b-256 210c0bec342bcd999c3f971b2dc87dd6a824160ade4b842ce9a44264fe7f9272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a82819e5cb793931df6d2540e7b8ea003eb77fa636889d1ed872ef3605151fe9
MD5 8c501eb136f582cf868bf518936c6c7a
BLAKE2b-256 02f2b7c66f34b96369447a18e446a0651441f68292097a7f0217f91e34c850a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b687651a4cc63448d1cf16a0525fab77e0ddfa1c46495a3798c312ebcc945e6
MD5 e7af197b9d9649ded91e881084de7419
BLAKE2b-256 0f4a2f7e3bb4a6add8ec097ecf0cfa599f554af128c45a6253a0b26340413c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13db9543c4267c3b6d3360be78bfd62938df5d8a34db16645a8f9eb7ca43768d
MD5 d6cd5f2fb82746dc4a1d0da635d81e08
BLAKE2b-256 7f8b4ab4480d1eb9f8a0941756500982e4bb369faf8993eaee30e6389c48563f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fcff6be107ebc431cc55837df8e69daffc4097bea68824ce48510364676c0cc
MD5 1a7eed3bf15d6516a7d5887526520b07
BLAKE2b-256 9f334cb48159029ba2ea4d082674c8efbaadc4bf872a870f5ad1b943c16cb5a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a030adc6ac5537a4b19028fb1e49e3eb4367a5cf56e2907118c5105243e1c7cf
MD5 6abcb2b2aa1cfff3b42a1b7d375d7eae
BLAKE2b-256 a81748cc956c097f22350ea0d8469bb058dd789bbbbfcd1eac221c7124a8c81d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8f321c088b5a1fc65adbaa7974cffb69527842f7950f3fb695f79fc67a0c1b4
MD5 83e5a24949bddab16e75ecd11f0a18c9
BLAKE2b-256 b11de0874e675f9286dc4bc40b72ea05b6af20ff1155419c2391328187b90d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4823f8adebb9ae1e87a94f714c493b883f964a11587658b862f9bfd694d6510d
MD5 e4738eb19d92ed0142a2e1fbf28b6966
BLAKE2b-256 d43a13e35de629a7735779899654f2bd7c35511f2e30b7c6c65cb37827da510e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 abf7a48c8d7fec2cca88aa611c4a318f073cbb3f5d16f9ecce5d80ac513cb99a
MD5 fb744151e9f1c58d41c5aaf9e5b7aa2d
BLAKE2b-256 adcdb38333d8e757f416feda0a5538822c57aa70b83449611fcc24751c9f9dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91823efaf46ec24eac19afc4a91a8f5dc67ae2d1af1593713afd287934e897fc
MD5 0bbfd0e0a48ac971be71457e61146843
BLAKE2b-256 049c5186e8dfc7ff6630d5ac83f172ba2b8ab10a7a5767bf9a3aaca065e0938d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f538d2229e1e9a00351e291700ee39542e221ef16c84cf8accfa031608d0ac0c
MD5 2c7e96fce5c147230baa2dd0dd4b3d60
BLAKE2b-256 06ba098188d927f0b3df0ac94bfceca13380d98bd48fc5519dc390f2b972a469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47aa5597e437a491ac71180c20484f5ff2429dd67d8948ad33aabcf7704da65b
MD5 6cb55890afa591c16546d6a742f0e765
BLAKE2b-256 0247b4bf6bafbe76dcacc1370f2585ac82516423949b3795a4bab45fee1d874b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f31ed6bdaeb4ea10a3fbff78bbdf8bae76d0b9b0284dfc2c1f470ef5856632e9
MD5 50dfee670890728ee94c09b8adec45ca
BLAKE2b-256 bc0b6c999e865cb0cc6d70bfc357cd74676f99ca170c415df3a5fd16d9b33270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 216f72321a62137696fc65b143373a83561ece521caf4eafa75a6cc4f4dfb32f
MD5 b52cbc9512ff077e34f335d9978eb52b
BLAKE2b-256 fc2e94600f275278dddd8d2d18a1b890d418193a3166cc0b4628f2edac007942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c7257aa6c8891d1371e44da48b7c32a138a8fca38d9553dcdb95b334cf4f389
MD5 a10069ac6c6019c1378e4fb5956c6a63
BLAKE2b-256 0aee66963ff18249a4b4ccb8480f6388bf37c1de027c5c5bb0abf2d8aa2a7e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 873b6b6b03d46445d48ae46f81243f4702e1e3719c5a4a374ccb6b8c2ecb7e33
MD5 bc9ee0ebe6f10d97bbbc60d3d18e5f0d
BLAKE2b-256 d6e9eb5b7275dfee0e15c0fffc3d20e0917147fe4306228a702178db56426d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b279788f723fe8e9fa939be5d281b8e8901bc388771d0c541a3ef439e2790765
MD5 f25d526e17c628a4afc916a486c4553e
BLAKE2b-256 51428da8ee1e7eeffe4346c81446f7ea18f6f8a300c8db5de451d8db8c8607b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edc9ab3f82be5912ff46a15c577fc619b5e036b13c4c1b8af447b67d5ef57a03
MD5 e158a365c4a233f27608f0b110908c4e
BLAKE2b-256 7b343863905a5ee8803f11d01237fa9c7b36e9937e0675df01ea19bcc6fef8f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83e4b9733a43451bc688b530ebaf3e21f83ea1e059c17cdac26906a16949a95a
MD5 0ad1c3b360dd4db37aaf9b867ccf7afe
BLAKE2b-256 b5ba426b0957da8a4cbc4ece63118771d21dfa731b9b588dfa670e56bc700080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3fb93bb674984f75f385d22cd37499fda940f0df05b4170e09d5d7256006c80
MD5 cfbbc630a3e3a03a009beeae1047f34c
BLAKE2b-256 c9353bed802409e1bdf117b7696fae5c22ef7a634d2a6b3faead03986b0c3346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3a33d66c43cf3730042ba75074724fdd5e415450414825412e8f60f984f2fe36
MD5 7ad04e3c31a54f7e28e7238878a45faa
BLAKE2b-256 f6a1f4362464d26831f5daa94330ddf3cb25421662830c2f6583ad9ee6f8b77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9147eda0fdaa886ba58d64c1b38e65912a7c69bbdf51633180a20946001d43f0
MD5 712224dcf7a69e981688fe5dc76655bd
BLAKE2b-256 fc380c43ebffd73adadc97c71998e08d6c1e05ca8fe07db2b2e3e4cfa56e20e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c0bb0afd694227a011ed153d4df386eb572113562e2729a6b536c9583e8f4e0
MD5 732029ddd97f7019ad4406cb6c5816c4
BLAKE2b-256 f94863e0a1871da0b819fd43f26aa8504eb3cf258765af853586463259dd08a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9f395497bb6c6e1f6cf00f0f85bcb2a2283ffd95153ca6160ae4b2e011ca631
MD5 b21930a5de7ab01e036153255cc0e233
BLAKE2b-256 d6ebaae1291bd59b107a841511b3cfadfa905eed56ada8dfacfefc9bf273e205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07897ac70e679522fb01d98484c2a2d26ab1dcce519a227b0f8f2ed16e905602
MD5 4c15aaf35d07fcec4a3ae3845bb9489e
BLAKE2b-256 89421aa830c362511fc06ed5105bbf270dc456424fc47f5ade09a10b56f6160e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e6126c76e02b662ce15b1f99a91e32e91ef02e06738579602833b7a3d0f7c70
MD5 613604d70b329d5be6d8533908014939
BLAKE2b-256 9e292930efcebaedfaf6b585d141f9774a7419b1228d43703c1251dd83397410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06ac0fc7c64a59bc09512dbcc2d4a00177a62ca18e13147dbd3df14aebf23501
MD5 c01b49f9937a15190d49578a624e9b47
BLAKE2b-256 4e4ce2ccf9593300aad7de864cfad301b392d05ff2805941f10c04e956b65dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41addaa551279baa728fec19fd5de7fbc7021e4fae6a0dae828232e87ecdd5db
MD5 4e28b036f6df3a8721a7551b5f2dbece
BLAKE2b-256 f6f6e7f76caf47d6f4ecd16d045a2e264e0acfd60d5554cb38dc89ae62aa5fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c382a6a99cce79dc7e55dfd6738d416d01ff8509e737b352a2e8b9627b01dc8
MD5 1fad97367995317bd6a6b9c16a18f3f3
BLAKE2b-256 7e5202e3d38bb7aa5c2c65fa229744e03ce777eb5882a8c1d97b51a898461429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ad3ea0f2581b08436ecce126bd8eb3797dfa1ae71ef0e3de266bc4e90310340
MD5 d736cb303145a65f26b98fb2ed0e9bad
BLAKE2b-256 41f65c22ab988fcc9e23450d9da545cc4c4ecece2da92208fdb6300dfc5c8802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2697d4da094a5889b45608daec17202dbbabda8c41f20ce71841b75584f522f5
MD5 04ce708448979057f6d312e3cad78c7a
BLAKE2b-256 507f9cbb1eeb276eee7d847f337eb4f4382ad56eb76b30f231c0a8716b56a86f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 911374e5742672464f685f16fce4f6843e3e4ec3c2322c8ad229fa7887afc0ad
MD5 c2ef28a1e6c1e6f7380c7f6526fb33fb
BLAKE2b-256 0c86ec562721b077f4509824b52a9aa2b226080f83ff4bc34c43a5385d6c6689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc1a634388428d20e37420f7be5e3b2e7a3064a2dd8c8901697d58a5883c0548
MD5 cd34818e095ab3e2002e5ef72bb75729
BLAKE2b-256 d024162e2a00e0b0ce2f1e7f67ce693d5a92641ca6c08a760304b9ab62699d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 14f4e6abc464e8591fb6c1fbdbad3ab1509a769fc4c4d9016ec77b6201f4c194
MD5 2a01b714aa7e012f067cfa7874dedadd
BLAKE2b-256 89a842dae314421339c8dc82a84b98f7c93a8c9322c9ddba684ce1b39c3cd28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 95cbdc3ff6797b5c1593015ac32fd9f305f25f70ca17816f065a6e3887bc020b
MD5 69a2a8898fa356a031cf8aa35e2121b9
BLAKE2b-256 00b58efd3e0810a5a9b12e1ca4a56f0ae94059f87d23e64e34bd0e9fa49c58d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 118a85330ea08534e47ecb2dc7876cff546b3310746420d828a781e8271794ff
MD5 f22191ee4f9489c347d69ffa850bb0e1
BLAKE2b-256 ce3c9e38fd1bea03a0fa6681d3efa36aaea54cfb3982ea685162208b08622d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 694683dc4cff17cc8063b89ac730822854480cef6c476b27d53caf56a7f8125c
MD5 b8d8497d1625c1758f91a83c4710fac1
BLAKE2b-256 62f87fdc759636bf66208b5c2def43d01f305e23d23e6162bec11fccb9475bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7904872483988f104ae64a3143d21c5bad58573bc6445eb4b1671d0d6b673653
MD5 94dcb019c303223fb44b6159062bafba
BLAKE2b-256 8c53ac78b6703566f642cd4109f40dad0334a89f6d456964f5b83c02255ba1a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e25f127ce7a5a488ed74216e7de3a6f3aa47c783be10b6c0186beaf586eff266
MD5 7a6c2688d56ce40829200e140b65dbf6
BLAKE2b-256 37ee6cc2569c66a6a1bfa7b332a78a8ddf2ed13cc5ac2110bde05ac813eab1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 394e6041e24663f77672e01b13b70887c6bcd79346153b61cfba9abf44b15c14
MD5 3b943a316a145b98464490d0c15f3484
BLAKE2b-256 c2d2fa8e8fe85dea59dc254ee09eed5b70c7c8407d1775c1f7f7bc86329c7c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a13c9beb040bdce81a182eb51f3efa598777f87336d35b14e81100aa4aceffc0
MD5 fe426feedfde6f6636dba80f98758844
BLAKE2b-256 5e114073877476d1df13e82b8bfbe336a0ad074e832ace50252e6d008cac9614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18b7406d0f306a34d693afdb56fb6bc9d6b5c67077e26d86cff69f87285b45ef
MD5 0f65938ba1e183638aa495deb4fb41a7
BLAKE2b-256 5697e5a9d4540a4079473ff83fad961cf43af480b409d7a26f91cd9cc4651a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2aea1eb8c6468a3758f9dd215e097db4d54e041e68d5091df4e1a30d3ff392b
MD5 17452f27ceab80643b5d9d58bfcf2d88
BLAKE2b-256 fbcda9355c5a32689d9d0cbd917f9a62b2ef8183766efe0fef7febcd0ee779b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0d61afedf6710afe133d62f28dc1aae7415f2e49a3c4c30d2d0bec85865d04c
MD5 24ec2c893f7f1351b7e96b8b9382f0bc
BLAKE2b-256 b3617ba70fb0e12d548a41aafc7baf187465e57ba4746462feabed76ee17a458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6fe2d2b75654fc45c6b581a2af497da885d64ac88e638736fe567d6ab4ece043
MD5 8bcba10f1f337f5a8afb2ec7c5f37840
BLAKE2b-256 8b5e5c6505fd30e4e2c0b701b944cf54b824509c35e595207e07b93ef74d7fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 2671d66538a2f52822f559f6795a1187fb1d11207247fe09e895701143accbce
MD5 ff97864ab25dd9ab48bb46473e9b5b14
BLAKE2b-256 e0db4cb8d399672599855717c694b89c47959e439d1e7642f1be1dda07f4757e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 e74982401d4a841098fd780f8e938faedd7faa3804ddd008763ff9913ba52b99
MD5 fdc2e78672d6f4264082103ba2861355
BLAKE2b-256 f7fca135bc8c75dd53c81791380a0cf9c3f5d83ddc7dbf239ab60799196039c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ac766d7eb2438b0990b09479b75507f98f4882cd1ec5f8caf1cc925d1810497
MD5 cdb638f93bd6d471dcbce320ad070033
BLAKE2b-256 b6e809bb61328e81478075a2dc93949131f17d02669737dd48e58650a7d28338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00d46fa3d7555f7ec16f9866f2c758cb539d53e173536c3d2d8ce1ae390044f7
MD5 62a271b8618d9313e1f1697a4b900692
BLAKE2b-256 8ff251be8298e45920cb97118513481e89107e025d7af0cd84803a85fb8ed19b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba853734524abd7ca5a764640645176645e54989eb21d0d8f58c7ceabca3b364
MD5 1c0e4d842e2ab93af5ff785f540b0a64
BLAKE2b-256 9c2a59269a78c121a35125cdb3f90c8fb80dc12b77568e55e2919444b703083d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89a88db0a4b362f79f654c4f83bc4d5488c9b7e5b5092ce96d1dd20a32e5c2fc
MD5 7dc88ee1ee3a26d860e9cdfc61a00af7
BLAKE2b-256 e4992f57ad501816216ff9d3d52ac85f41c557106763cf8ae6d13569f3670030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d384592d8b71b07ba504bbbaa40d254d3ca4a8b8f80a3e275dedce2ec0da341a
MD5 997f95ae902b0c069ed4cbdd9f2ccf32
BLAKE2b-256 c7790dba85ccc0a949549c6866020372bf847835964b8c0e45396d469e821a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0dac0f546d5eb42a2c89da3d0ebbe3e139cfe0720d5dbeaafb2806986af3b64
MD5 8894f1b1bcb23845d96ddde76b799694
BLAKE2b-256 fc8334ed7fb5b734c8881673cebe6773f5e1eb945faf71dd7a2b551aa1642a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 838eec32933b49135eb56f567fdd7e34f297c8a85c5e5418fbcfcbaf1f163604
MD5 1ead83d0a49d24dd54ebf782518df60a
BLAKE2b-256 3edc2a461af4f7170d6f51fbfc43bea95c71ebd132c82a2582b646e6d546e435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5030ce3630e5fd0e7f11fea3ee8b728d8556b94b9fe959190fb6bd8aa4d0d239
MD5 2d9092b75ad4fdf6c33c0b393114f30d
BLAKE2b-256 fa0571a27808211cf29cf76d186a69818d755d057732b3a2fd3b01dfc3b32c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3db41627c14336fef9143973092d87b44b363d72747f81db9225623f54df01c3
MD5 82720f423fc66c845098d3fef6c96721
BLAKE2b-256 5f59bfadb3ce80d4aee8bc56d7e3d8b1711a4070ece275ec304e84bb1eb6477b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e4bd05e649bf7b27f77f2c85708dcce558fce676854a1e09b7f8e1ea74339b5
MD5 c7e5af2ad7a397b364eedae419418718
BLAKE2b-256 c1ce54b085b81972497b143ad3107efd276eab860ad18a9bd9b2aa19571aabfe

See more details on using hashes here.

Supported by

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