Skip to main content

read, write and modify Autosar arxml data using Python

Reason this release was yanked:

Highly unstable due to a bug in pyO3 0.23.0

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

Uploaded Source

Built Distributions

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

autosar_data-0.10.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.10.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (905.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.10.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.10.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

autosar_data-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

autosar_data-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (902.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

autosar_data-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (904.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.10.0-cp313-cp313-macosx_11_0_arm64.whl (796.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl (810.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

autosar_data-0.10.0-cp312-cp312-win_amd64.whl (699.8 kB view details)

Uploaded CPython 3.12Windows x86-64

autosar_data-0.10.0-cp312-cp312-win32.whl (666.8 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (902.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (904.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (798.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl (810.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

autosar_data-0.10.0-cp311-cp311-win_amd64.whl (698.5 kB view details)

Uploaded CPython 3.11Windows x86-64

autosar_data-0.10.0-cp311-cp311-win32.whl (667.0 kB view details)

Uploaded CPython 3.11Windows x86

autosar_data-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (902.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (905.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

autosar_data-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (804.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autosar_data-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl (816.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

autosar_data-0.10.0-cp310-cp310-win_amd64.whl (698.4 kB view details)

Uploaded CPython 3.10Windows x86-64

autosar_data-0.10.0-cp310-cp310-win32.whl (666.8 kB view details)

Uploaded CPython 3.10Windows x86

autosar_data-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (902.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (904.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

autosar_data-0.10.0-cp39-cp39-win_amd64.whl (698.7 kB view details)

Uploaded CPython 3.9Windows x86-64

autosar_data-0.10.0-cp39-cp39-win32.whl (666.7 kB view details)

Uploaded CPython 3.9Windows x86

autosar_data-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (906.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

autosar_data-0.10.0-cp38-cp38-win_amd64.whl (698.8 kB view details)

Uploaded CPython 3.8Windows x86-64

autosar_data-0.10.0-cp38-cp38-win32.whl (666.9 kB view details)

Uploaded CPython 3.8Windows x86

autosar_data-0.10.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (905.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

autosar_data-0.10.0-cp37-cp37m-win_amd64.whl (698.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

autosar_data-0.10.0-cp37-cp37m-win32.whl (666.8 kB view details)

Uploaded CPython 3.7mWindows x86

autosar_data-0.10.0-cp37-cp37m-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

autosar_data-0.10.0-cp37-cp37m-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (969.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

autosar_data-0.10.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (905.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.10.0.tar.gz
Algorithm Hash digest
SHA256 a1a2e81c6c6d247f6c5b1b1eeac6d9ef78480991b091b2100e1f72db46932f99
MD5 976d35de4649313e8394b64bb4234add
BLAKE2b-256 faaa431e0e62598994a3e7a33e2e66701ca270138fc8f62f404ef59f91ccb62b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75f659e70bb4203efdb68cdff1fe4227a1e26d4f327db11611cee9d05d62cf88
MD5 2e91d5f643d586885f249872ef8554fd
BLAKE2b-256 a80518bb0908f5b5742514b86be68bf1734eaaf2e5ae887965db8606f1862455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7660f3c0a2fe375854345eecaf8984fd20e3a02f310deb88c3c960bb2ba88490
MD5 40f50d49239fea8e24478a3275fd3619
BLAKE2b-256 01015cd67096e636db5792fbc41165f51f3cfff055e46a8c59e806421df0aaac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da4fa380d35c9322c1b036f165a4eecd66ff6e46ace82cfb2b6b2ad15d3a3f7e
MD5 5abe0b83f8d14101f9c67f55fd0797a0
BLAKE2b-256 653ac8b45be8969e11eae9af037d8ea0799e7322556341d4974bc04827964b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39c6c220af3f127af88e06744edee45efe8ee29824e0893fa301dabd33632f9a
MD5 ec9ccddf049800efe060dc3deaf15220
BLAKE2b-256 51dfb97d30c62b4be4611ee44e93c31087c988af84678617ba736d082c63cdea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c23afdd2856413d849cc1983b39a6b84501d86ee92d406d34d41514cadc9cc1
MD5 707cd2f372e8d73e469046664f99737f
BLAKE2b-256 736e098c8ee9c279e0410506a719c69aa3701c25cd710068aeec595f02b91daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 998ea717bbd058d409d1f0ef784a3b5248dfdefb7397baa1846cb4d1bcad6038
MD5 532877a7f024313a1d570066935be20f
BLAKE2b-256 52c0220ebb72ab199594d46cd26ecc5e5175fbad884e5813743f17e576fa2c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fb3db97ae63e304640da2f5124841ef70753e3da9c20a6d2c5088b851e8fd55
MD5 4fb0f8b462137229d69d24a8f3dfb765
BLAKE2b-256 6c695cce16bafb0c86d8671317cc9352b426793be935f393c33470c84b35c02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93ad922082b89a9fb1f3c756f22a159ce476bbeea2e8c78b7477b187a2e3aa1a
MD5 ac249e6f0d1295ad38421c32ad703106
BLAKE2b-256 4f004f0b5366b9dacfd987d9f63230c4c29e9608b27f4aed984548272edd86f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb50f7cd8dd7cb7ea8c11ce3ccfce1cb4a411c3ee953f7bb2b958a7d5024b44d
MD5 d30930ae384de8da95d4ed1f33bbdeb7
BLAKE2b-256 4be370257caad846c6b7176acadeb69e9a60cdcec0f50ec32eaf3812a3e3152b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1503e942c51b540968f0076327b6b8301a11b65e4fa1d016f6516e091aa3d92
MD5 45b25f5e37d812a851410c6c068c4a2a
BLAKE2b-256 dcdf19286875018d6227f2744cb0325abbafb9f8226b528d3a1f07da337aba02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dba3904ed11cc96eaf9b646e53d3590217745a7fe3c900154d37c11ef3c893b2
MD5 97d68fcfdbcd819795e7390d8ac9b707
BLAKE2b-256 ca833988efa240319992e9a9d11e5296bddbef54ed324a8e6301cf1221958928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f8b99ba99db433ce5aea78948f8b1f7ff7b13cee88c864edcfc9d9f10b6d1d4
MD5 6d8824b45fbb44d5f28cb3934bf9158b
BLAKE2b-256 75d6ef3de43d6f91226bdee0dc61783892425beea5e264b172920af1fc1c7350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85836381b36bb5794292eed1e3afacabab8765bd2ea4792e7eb02d2c079466b2
MD5 99221212397695881ba3d6bc1eda585a
BLAKE2b-256 61d9e7357fd9e1919d47756e912af0713cecb7c5d35cab213f389c5998d0c52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b434aa006266d3d610efcbce668c4dae17d0a73a367a7218df325493fdfc7dd5
MD5 ebe1e8fa9544a2874d563c6676d3ec27
BLAKE2b-256 553256dfc06c94d6330dddea6cd0ef4e25307dc1266ae264e58e575812fed20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40e9b041e3aae11b3969f738be91151ba3f67c905dd51074ccf19e19fd209f50
MD5 f5c7932d65ab5d95bdba68870debab48
BLAKE2b-256 bfddad26fad3f34117e4816140f400d619419244db4818346827b06c6564f0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c61f6be1f98cabd5a32abe629eb39e0701d896ad583b6b48d8cd58f0fbefb38
MD5 ed65346bcbd62aec32cd3be60f058e84
BLAKE2b-256 0d130dd81a4bdc40f860340bd194c6d8d25d3d6050257796022af7f6a95a75aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f12bdc7157563a011668a8a2ebaf58b51f43de8673c873caffbc0c749a4799c
MD5 34edbf26e790eff7faef05f2d6ea6f46
BLAKE2b-256 e133ab83593040c1e330a5f8a48844ee2ceb2b4c3ed995bd0eae9620fdfe535d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c254edd513006ddfcee310fda82ca6a9ff46507c7d8e62ef1d5cd607180b67d
MD5 94ef1fe443abed59e78457e73dedd15b
BLAKE2b-256 3d666bb1395161de4cc241980a6b6fa9677be69272d36a84167c8f9282912a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 305741d14cecb2bf5c07e933ffacc24302b4dd01b30c0fdc399dbb0d2ca8245e
MD5 1ff8befd7ed6562817ef6ba8c1ed9e2c
BLAKE2b-256 97c689f3add2679eaeda534c8c5780d2952579ce3182ebc108c0ca6fea23cd11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36c66863722f0b960da05f344905863152226ede2dfcccb18be89bb0afa3e64f
MD5 b6396d756627bbbf176506594a3b302c
BLAKE2b-256 b2f24928f06b07480bd7c2e2ec5600bff3601d3aba3d81c1ec302636608844e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eab4f0efcf5c52b386fb0f143c10fc56571734ec8037b59517f9b7e71c11ec31
MD5 a2bf30e85c95bb6d956f4bb5f65e742d
BLAKE2b-256 df32473ee7e99b11a2f6ad72be95b97dfe5078e32ddb0f3783d3d90ff8999041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc9da917e2d4bf483281c59e911ef3c57f76995767819df708125e668c8aa979
MD5 e3605b858e382c35000a9b55f202a443
BLAKE2b-256 56b11da742ed05061f653d52f3b3e2c9ac9a1d9084a50b7dc1992efbaabc0c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d26a9ce3630d14ddf49e23f954bae08c24f208a7f53acc7b8f7a9b7ef4c290b
MD5 f9963123f35b4e4d6615cf715db1971a
BLAKE2b-256 8d57b876d21ddddf338f2f8d63fd71d65f898c6353efff8b90f725c20fb50df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbccb6e3d28869468a8a1ab570d36f2da8cdcfe6d56fb335adf47fbe2e42053a
MD5 7dab07ff36aaa5c6ce022819c1744b2d
BLAKE2b-256 4f2e93e0292f90261f18c6b9ddf94482fec7cf9cdf5fdfbb3d0f5d73664c4642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fa155ae8055a48cb97684853842788d6c68d7793837398c3d0eca872bbaf94e
MD5 8767b5ac0dbbd3313392b3074ff70754
BLAKE2b-256 b0046ee59cf5f206c856b030c83375951d7c0ea11a086481954b1dcffbdca51e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4048c2c6c94552a88fa157df7b9acb5ffade6048a096fa2c4e51744fc8cb8542
MD5 1868e6333537b21bfef5e9fd8ec37514
BLAKE2b-256 cee23093daa7962759c155b869b7b4d36b25dfdb45a8cd9b98b66b59db1dcd84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fadb9219cc4169777e208c116166d220bc6d121a7d7a796b711effb29ba8563f
MD5 7391a1920f3366f84bfa0fa7b3a79f45
BLAKE2b-256 2e1603c372bff683e70adbf32427604c51e5c3676cfedb9c305ad0874d96873f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fdfaf1bd768d1f0cad6b1ae87d44640eb79133d3f4b577382dd01e18717dee0
MD5 f111e9476f24700688d23e0f6fa4d60f
BLAKE2b-256 d597b7f3cf5ff2ac1aadec2b767852f34d4144332c453777886d5e96a6547dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75b48aaa6d2e88b4917db8edba4f13cabf794f09bba32e264dbe4d29b94a5891
MD5 301eee2ba6716c1d54e3f9a8f8cbfede
BLAKE2b-256 9afa8054ea2f99a26c3f755517686da068a74ffd81343c6dc04a5cfd4c3eebd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fbf67ead5d323965470dbf1ea2a27fd554ad3bc8abb9215db7c3b7853d4fcc5
MD5 d0f0f4c4b1960898f311dc444ec7e732
BLAKE2b-256 48b1bab0062d41f4f68980d527a107360f271ee30cf918bd3c191df2a4a56663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1c2d328ae767d1dfd08549ed4608563b4dc87724b35143321d0bc49ba9f6e83
MD5 01c4db471929e340757d4d4d29ea0abd
BLAKE2b-256 6a44a380d2161ef9a75e06addb43d9b34690fb4864f4d2d3d98c0dd641fb91d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 706cb3603b1e05e61ff9c2c7a9d59361a127305b0ee70b0020a44b1dae9bc70b
MD5 d399f73a1c35e5f5c3c36f6da09f7f4d
BLAKE2b-256 e08d450fce18a735153060279556ffc40dcc1940acd7614617066d744d720d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9dc07bf0be376ac98f8d533418320d7002bf0c90674e24eca296e9a2a1bb5e64
MD5 19f5eceda87074a52975b4352e09ecbc
BLAKE2b-256 6c1ea8b0f2969d614cd72dd8bd11ae5a955939ea5c674a30ecc7d975b6452478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 993a6e7c9cb5c536c7028fa415ae50ea3804b9f80e278a6f05f84b7201a1a654
MD5 30994c67312d39e61ef98d766f774127
BLAKE2b-256 a2bcc630c57ae6ea6e8457e1cef50311c37d1dec5922bbb3d8e8207521d6a0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99fd9475bbcbfea302b7f73abd61a0c7217b4de8c18e575bea6276fda86f95df
MD5 55e2e75fc67bba22982b70c2e28c66c8
BLAKE2b-256 f82ec34d1da1f7073c220033099605cf13e4abf2b24e86d068217f8000c06cfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dc3ae966b6e0b1142b508b8b67267fafb66bb1010e8205e8510303f1b0b385a
MD5 9cb8a7ea3f1a6d233b314e01a10e2999
BLAKE2b-256 144b7f2399d8fa3b7d1f4f7fc9818e6e042013fded1cf70022742dc2f4aa42cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03169ab0ee581befb65d5934c2c2f5fd03457128ee1b41bbdf789cdf2f047d92
MD5 f7a13b1ed0a161849c27af97a4057efb
BLAKE2b-256 1930cdf2806473c6dd40b429987aac30f99fdc401aefc46c7d9cebde2adce794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ceacd3439abaef59639aa1395149e9763deb268da891271bdd26c76a305c3b1
MD5 ae48aee046b79d88e8ded96dc0f07ac9
BLAKE2b-256 87a9e5829176b7d939634ba5d51a5f906c1e77ef3f45671f08c077fb570564b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 da2649c54b9a959ea3bed72789571e9791ba8901c07b4c3145889903bae4e89f
MD5 d44939fe220c245d781b242675f32f99
BLAKE2b-256 cc67791a4179343e8e3ad54a0b467a9bb8315c17c43167248517ad2db70f024d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 05d65c606c35fd4429816bbefe5a41c5ff3948b46c44776379374d6f4702a099
MD5 c852c76e5ceed37fb36b809e5f42e551
BLAKE2b-256 3fcf2c6aa9f0a771b1c0de1125ea1d6c67ca9d77ac04ac15fe9b6ae1689c77b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02e58519cd910b0bb6be80367f7e39ef8a840851d57e152f6c5c9c54ca37b4ea
MD5 8a42b788f19be87b8afa390e700f9c93
BLAKE2b-256 ff0f8f99aba3b6de7c544954688ac5465a439ed3628eb654d457516bfee9aa5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1ba4e92165047f0f8a028d96a56d4b9bf194e2dc6ada2456a035f1ddc962613
MD5 caea40f5f78e4dd1c4db6d9cf3564979
BLAKE2b-256 a4271c750e7789ac533aeb7b1acdab5fdeb3dc2bfaa1c9c9dedaa911be5ecf1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2df77cd90733c8b1d422a457e7d8840f611f7aa04fe56cda8f1d06ba796aea6f
MD5 5d3fc96d638f59e6432c9ce5f39e7760
BLAKE2b-256 98586dcca94a0c05e727d2e31c6a968a0d5fe777cbf6850471f693c25f43970c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1d12c9bc208c8b905e62820704c77c6dee46bb60ea8c4f8ad67d4f399c9ae97
MD5 da7482c2bda5dd42f8f1af447b65ef32
BLAKE2b-256 3cb03cb53d4eb9669fd9d823d100d0a9520d3ead7b243c2344b6fd8825c994b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11e1b0dd55acc42f2383c24d0b0c94e74fdb46f2ef2c709bd1867eefac33c1bd
MD5 a96afe92b4262b8ab404625b55866a59
BLAKE2b-256 cffc53637aeda8f045b8addf160958dbdb143cd467685f7a4c93316b5c985709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6da0809e8e3044cd6504a3d66c324083a473e752b226f704a4ed1a8a1cb8a93a
MD5 0cfefcf770699b0f28ca191a28c25241
BLAKE2b-256 c82f9edf8df100a658dae7b67ccdf5e4693bc9979b11367a3b54bc13ddf1e9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90e2ca25d2b2056e056c247eea17fc5cee00bcde2620e76f0a25a015413973a3
MD5 72495d044bda7e712d1fcd1d718db277
BLAKE2b-256 569066f77c5ff1e276d895b94357df1d469ed90bd3c726085afe9eab0a60273b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ffff5f8b5417f66350ec902c2501fdb76d7c0916702eefa80d207044076555d
MD5 6b28fd82800fec7184c4de4911e8b2f3
BLAKE2b-256 f665f89fd3109e138d47d8db273d872858a9e853dc183cd6b7a81447dca55843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b27b06be7375692f8f58c4dde253b0a80a623c3bd06cdf7d53ca7e21c663ccd6
MD5 30bb8cbcbb85feadbbd3b7eddca2af23
BLAKE2b-256 7febb6467dbbcf8c2650cdd6131cdd15b82a5fda73227fb7442edfa888d7ecb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cc79b13ff485fc7578b3a96db5dff9d5544bb48b1b82d6038eccb33e083b38a
MD5 59c7094f9221d548911bd63fe62e1fd4
BLAKE2b-256 ad5af9f7aab885d9a85e40e3a700418d198f1040cad8f5e2b1cb0604d9941be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abe99c564a3a3c12eebd057f8e3c6c348bace5ae5fdb879ff290a1e1535bc90f
MD5 45c04f729441c21d1b9458c0e806cb7b
BLAKE2b-256 b49b45d921af6954226a292a695016bda265877e16c7b4facc6425c66f285e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79b8f648cd63f32db9696c24dbdb295a97d5e33f5d735a2eaceb5d2bf298dcb1
MD5 5091aef887dbb41a21cecbae0adc41f6
BLAKE2b-256 ece3f83d98021975f9017d5b3e3121e76e02f6d664bd9b4b651e3eef03e50aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8103b364dc829862b0531ed77e4018ead5193f442fc68c2b3f80ca285eae2b72
MD5 8916881763c62bb2e18eb74e37ad8c9f
BLAKE2b-256 0b1575cd99b3dbee149102b368e3298b9c8d91b4c732e653477b3474786eb5a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8e8b7637caf761854b13ab3ae4c68a168df58ec9ae11f13ea947642b554724c2
MD5 9ed61360e44e108d1c4f9b72c7b36141
BLAKE2b-256 0bb7837b3781c82ab0121123dd7f05722e64a8459d5f435bc805a0f851ee5909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5303fd43ea9a0ae93e62e9659eccd388f41d923b248bede51e328c2b63af91ad
MD5 9ba043cf3322ee0132701683bd507449
BLAKE2b-256 8272454f8d3bb8052a2fcec918072472f037327739e4d0bf08d11ac365850927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fd8d7f5b12997e0c4ae5a60976980f619e15baf4f60c596674f9d4897509814
MD5 b270198731f7102168c6768f00476d1a
BLAKE2b-256 46dc01a870c5bf58b0d34a596dae1f7cc3e5e60c6fb3a319048abaccccd879f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e68d98579e93c33b8399bf5875d218426554120069ff745185d038889e3eb17
MD5 b2a0032318b39674fea9dbe743e15026
BLAKE2b-256 b84ef0f9d676c8b41cd867efe9bfa8ec2c0b8b2a95305d968e9a6d2c9d220181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 550fe73d4435952dd58bb1111ffebb360cc650020104116ed5689f4572856122
MD5 b016e19423694485ffa2a2aca500dad9
BLAKE2b-256 a4bd98c0b614e0f90d8dc691b7ac9fedd7fe9a702286f6b9d7851b2bd6e23152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 260f4345991ed52dd4a10bc70cfbee387d5f87f206c7d5d5347f05d9d116aec0
MD5 962c425cc047b9c495f8b436056c3f76
BLAKE2b-256 a3d07238b7c0b0c2be860636fc99b4807e1bc407c8d21a68cfdeb2060339502d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9215c98c03ec3cde99f48bdddcc747e80591c1557c37a4334d563687baffed24
MD5 57ae9591a61aed4eafc3b5d2a1f01393
BLAKE2b-256 503ba798c191358d5cc7628232becd5594e0eea066482febc4d9df73e065b725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 813819492c0b70a43e42cf8ebdc0ee3c2179a8148ec5c0ece395e47059a71574
MD5 b5bf29768b7ac1ae9764d5e49365580b
BLAKE2b-256 4f7067b64e6de346720e1725b2ac86c152cf89b6b25d589f4d19afe8ad524532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bcfe72cfc104a83d1248b2956aaf350e6c95224c698c977fc690c8f3fec06b2
MD5 5f1d7182b338f4468d025a038dd017bb
BLAKE2b-256 22c65732082be6cb759d11cf6b4e0901f1f5b5161b3a4c4428a60e8d64bfa3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e9b94d428c17d3e89088e69ee995c0564eca41c5135e386ea927af56b98313b
MD5 abec89510f3361b4bfd44ec0c05186f2
BLAKE2b-256 ef734cfd727234170e1a8bab507e18c491c7493972d82f6b32dd63dbd5352603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d29c30ffa2e3f85d218afb4866a3b13df11c089d5abf6e28e1a64cb16e86ad8
MD5 48e24b1dc36fcd18123202edc3a8e85e
BLAKE2b-256 83ad7ff408b62fc9125c9d6bd49ba43fef7da6650881f86fb570f7dce53fa2de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 762ae16cae48e33830539c15cd1b5585db7f7d86f59ebf0f438573c2b00cb3d2
MD5 50be2d5930fd1e4eb410f93f7ae20936
BLAKE2b-256 7849a7bd994de576f67583d93f727acb0ef8f6e2facd4103d94ebd370b459a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b47947daa6147edd440f372c3d1a9e35184f276a02e7dd76ec6796f1ca49b2af
MD5 7fc33e888536f5f357bf7e75419106d3
BLAKE2b-256 5d23d863adf185afb5f2eb90a42e57268ea61db8c0c8695124843ce57db0cc58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 974a885f266cb6d231fd220964e1a835f0bc9afa24c8250922035c829221441e
MD5 bf14a70e2a5a407fad68d08d1e01917f
BLAKE2b-256 428a05b4935a35de56ea866df234d1c4aea9a005223fa23c6009b5a0ff712800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0f9b3e80bcbebbccd73d4f32f0ece336cd87a2811e2a8447743b51b65235a81d
MD5 c260ebb0e7ec8bfb3b3e914518ac66cf
BLAKE2b-256 afdb293391b5f0b2d4159d48934863ba92daf605353830488b0d7baa149710bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f03cb6e1b351f08295bda6095e817d7e24d68ea8caac65511ee758db18ec3b3
MD5 ff6101476dac41b90536ba0593545cb6
BLAKE2b-256 883a95f486d449e45347d3e06425c05fbb45def0547b5594814420300c832164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 674f614c593c1b18639be5cad11257cfe311da33682846adb2739f33a55b614b
MD5 e6c2ca94ef24c86bd1e119fb08251d7a
BLAKE2b-256 613a2f5c82ed6c43b0f4421090075942e1f188e840ca4b054469cd8dd3bff2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 821728fd770cf48079e1549a400a5b0a26cc3c1a9fcdaba063e311122614ddb3
MD5 33e718745e8a2d44eb99e7417049ff7d
BLAKE2b-256 ace56d670aed445782264339e766567c4f013ffc8eac71a3e4c7e409826c9082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 763df6c39acbb893fb7b55577daeade54d248541a2419776c00d065f2de51c7d
MD5 eb04f0a71658ea08de478b30227c8380
BLAKE2b-256 dfe13ba0b039d8ded248dc2a141d78c4b3e850826efb22e6ab644c72b75ff7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65e80d3adfe8d86cefa5cd3b6d5b7d5359900f87d49f95370e2b6fdbf3941fe8
MD5 c35c00f91fecaa2467b36667d2be80c3
BLAKE2b-256 45874d655f353107aa4067c4c385b9672313dcd0004a5b4e6ffe468a38aa5ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 181d77c927d24e807294ce58b9e8db1576ad02ca4eee7462fbb3398fc5a77ab3
MD5 e8837ebdd50dfef0fef51313c782565f
BLAKE2b-256 4aab7f0a986d09940b6cb9d10f8762a3d69cefeffd8d39cc3134c33c188b69cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 966d017b562ac44c8059000322e075fc13029c6d366fef61ffa3b852d5654527
MD5 eb8ebff5cbb0b8094516a2f566825e92
BLAKE2b-256 360d976a65e6d9a891371a4e5cb1f295493d4fb48bcf18dd0d706877ecf3ac83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dff790ee2fb41df668ba1b9c19fd99d41eddce0411e29e62340c836efa88c7c3
MD5 334e3fe2a3302073a30fbde56c27f36f
BLAKE2b-256 8f1d8b338969461e8cbdf29c83cd95ab4db3170ab25ad86da142da027206db7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 865e47975cbd63c6240e55f6aba242fa5b4d91a0a00788997b1aa1c9b665512f
MD5 d5dfba92813d215bdfca2735de389f96
BLAKE2b-256 61f4c105fb6319ba5bc80daea589c9f7a6a7bb017da4f3ff78a1c07a69d2c732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 615be477a8623cfa571d9066b959f8ae5aaf508fcc4b9a6046515eea543bd50c
MD5 8e28cd688483a47573148d97cda17a61
BLAKE2b-256 7007a653cc81d8400ccb08448b4dca4c748ddbeeff0d1713db79a5b1312e5846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 edccba334620d7f2a9dad51ccbe4f02e5d3df8e1879981dba7031900cb17466a
MD5 1c46c20b999ca2685261dfb3528efcc1
BLAKE2b-256 bff3e36085e8f9d6f288ea97dc35e9e6b4c8cf53f56fede03c264f17e6bc251e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6060fdf9c623ffa55731d5cf8830b6f297aac20fd479c35d0030a576d8590d94
MD5 0b114504f784cb187b6b11ee9b464047
BLAKE2b-256 040db61dc936afda81f2ca7cbd46972ad8037727cc7d431bf73cd9f2acf3586e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31d645edf636805bc52c9582aab9dd1e6efa59eee98338f893dc2fcc819b4ee2
MD5 f747dc87e37c15619adeead6d35a2e99
BLAKE2b-256 e5fb368f3a00ce67d28cbc27df1348b9f41e57dfd1f9edd17ce7979e2779fc4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88cb4886db817bd2f9c76b76b32f08dfc25d9c6a1bb2fe73ae421882fc3dcb5c
MD5 be7dda1dc14459dee098502c4bcd83df
BLAKE2b-256 1735162abbfb210147e36e84cf4d01ed3ab0d44066fb6c4bd738093cd2030bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b1f77b6ca6526804a272a4891bcd35fae1b07354a406e3e7afb4213ed8e0757
MD5 2a6c5ad4ed0bfe20f37c221682127b19
BLAKE2b-256 963539de569a0a30dd5653b4f68f493a6312df768c0af52b49091d73fbcace9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 779cd84ff1bc48198fd2adec8d62fdf42431cf269c95f0837bdcfaf0dc0a3ab4
MD5 e0fd8f11a9263611fdc84c42643e8e6d
BLAKE2b-256 6588bb89e09ba776be473fac764ff391f7fc9f965fd49539d8c7d37cb0eb4989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2319b9af8d86b6d6528300c982345239367720300d898e97003fa398b24b3ba
MD5 1a74348f9dae8fc8faa479a2c1d6d461
BLAKE2b-256 01b4021b199cc83404c864993033a53f748bd8448d3a766697089c10bf19656e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c0c6d61230a881164643f038cb86e5b8f5b7d785c02340db93bf753f87a7fc2
MD5 63ac0b294898bcf515b6e31f07811e68
BLAKE2b-256 37966b24029623b445553eea4e607ac6dc61b5c626fc0a0679b31ef22d8ca86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c75e3e3542d07d1751efed933be913207b8e59423078ca95e3c0b83d4af1f8d7
MD5 0176da530d06eeb27383766ec9000938
BLAKE2b-256 2711f04205f2671cbb25b62295ae9af9e998001ab86e5e7d64f397e63126fcf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 322731be8b8a82d4ec237f96cf81ca487d3c68061cbe308212c056c2f31439fe
MD5 b3529dafe13e79ccb83d0dfe2b85e7d1
BLAKE2b-256 921d08543765cb2968212d6836739c06cd4a656ca73e4445cdd7edb33556e397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 decae9220456dd95fbfb266b005b3b33c38a0ac6b84a827fa958ee1eab919b30
MD5 e53483b215940baf3155c04a3d647525
BLAKE2b-256 92262315e74fa3fa7b73e155d26b76d44717c81b8cea4f061d67349d340b76fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 979b572e1160cc34e245f17af2073e33ef7eb71c708877fe3e202605ab7e2002
MD5 044906b92a39b9297447d163b5b1694b
BLAKE2b-256 c55fb60fbbd8db6823ec9e8ab533a8533ed54fed8edd8713a1f94910940429cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 55d09b0e828941feaf5ea6166aad6059bd93cc7b6e029255223c25036e5f691e
MD5 9822e0abab1684fd2642ec45fe4ae0c2
BLAKE2b-256 9ec16519a254f54a5af9b4d7a806c273bd76acd36d1bb071ee2141e51af4ca1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 968ded67b68cfda6c62acf95459609541a0697c5d2895cdc58c54429044383f4
MD5 07e54fc0af7cc643f28730351378c2b9
BLAKE2b-256 c68691591c3088bd3fbc3cfdd8e3c5e7646f5e28b7deccbc880b7521f0ddd089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed08cb0ce78f6bb7b83702acd8579a967a98c8bada83efc2c870c343d6545552
MD5 5a827253159ce55d4d82fe8b78ac2529
BLAKE2b-256 f5ba231bd892035969d530c5778c94fdcdafa9b6988654b2f881edb761f63f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f453d8240e9f182855b16a30bb08fcc460bdca0add38cca2c1e6c49d51dec8c2
MD5 75e5fdeb52ab966701bf186613117dfa
BLAKE2b-256 00593b50dd3bf93210371ed87b07f9d28f2506374ca75dd33efc97a813d55f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3eb43a7e9dc9675d3d79ffc05451eb8b05f589ba962fe51f02c213edd82b426c
MD5 b343936595678d7cf69889e59fcc0b44
BLAKE2b-256 0bee38880be177497e33aac60f2cda1189f9107025319145d1b8ac58f464146d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69bd41e6638485861292c8da32b803c6b64435141c02c641c438e960e1b36074
MD5 6908ee96d82d23451d33a71203c9f69f
BLAKE2b-256 c83cff78973bc79e0ee7e8d17dcdc3cc67d46e15b3744bbd07f1fd20f9beac6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d88ba9cfdeb1dac3a2493875dac761e887fa026ced75c44cd672e3a4a3050d0e
MD5 75c95c92a1621277433cab39717eabb1
BLAKE2b-256 d37f8bf75b6332613a0205f7a311740f9fdc4efc799e23014e6f4be25c3446aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d77f3dc456acd1f050b06fcbfbbb63a6e6b0e55c7b761278f7df6500e6024bd7
MD5 e9d190e2281feac0d2694e1094072022
BLAKE2b-256 bf5312e6d580cb7e15af08fdd013e3b90b77e17c4e54468246467871d57fb2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea6d4e207f1d1e8dcd227887f6d2839a168eb15dc83e11e21a96b643950637db
MD5 2013c51abbfd65d28fec6a221ac9d34e
BLAKE2b-256 6c2ff81176a315fc8365e26cd756ab2269ae35a36865867b91e03df86f6eb1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 798d85f023256966d9eb9a63f38d29e1172a4610d3e92e25df0286119146779b
MD5 fd18d1d469455bfcff54dc3ce9b1568a
BLAKE2b-256 625938e9172afd3fb750235693f764419fb10de985bac108fa5d0aad02e3ff7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29ddeb82fc784f6e440e210a42deb6f2e3b45461caf0a908ae58f24e0e42f212
MD5 c35c8dad8457466aa07ec96993b94b9b
BLAKE2b-256 e6fd54b28a4f29183bc9027add594463e91e83f711c9b58f5cb77f5a43bb0c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e4e737a3be1b326db6de167d27ffc709127ad2063e933e133747fecfb7708d5
MD5 2f01d0150a42beb94a3b957bde6ea164
BLAKE2b-256 b0675dd74815e5cd7cc9c34d23f25665ae72bdab9142a3a2d793f287cb160693

See more details on using hashes here.

File details

Details for the file autosar_data-0.10.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f19e5446183b4ec1335ab6f650b6ebd1a2cecdaedf48ae1e95e6ab3c4463a43f
MD5 691f4b6e19a75197dba1f9c4a260db4d
BLAKE2b-256 c877e3a7d08a513980c79f40a1e2718a100fd4355c772eb14b8c853440dd9485

See more details on using hashes here.

File details

Details for the file autosar_data-0.10.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fcb2b3027143bdfad17092214461e4f2cc662aa77e6b961b2345ba21482b2f75
MD5 e07816a89170eb76bcc4b3f1afd92b3b
BLAKE2b-256 bf19cb1db9e2f90b0c5eef456321ce843cf8921975c8b2c9d446d7560e34d49c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c53ca77313a73a277f6de6814b708258f520f00b0b8d27addf6c924b730b131
MD5 7be2e20f5384fe8bea792d385bec2edd
BLAKE2b-256 18a04db057081f49d9fd924888235c43308ab281314698adacda0e219b59c37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f49eb7ba1120ecadfc1b7ca5e74889cc4d32ddbc6e33f9f8efe9f8f07bbac6a
MD5 953ae298cd57f60f5656a7e044b54b72
BLAKE2b-256 3dc73728a34f7e4af3baf15feac5f50fb61f98d1311b8145476cc1d338641115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 642c469131835cfd972b4870e263b76d48aa990e31a6082ea99136e8a8c4d507
MD5 7c449ffae751959f53dd91c427aeadae
BLAKE2b-256 f8678376a1cf6fed484e1b5aaf0ca4c716a180331c2b66696c3699a41a1a6a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6d37c65f680e3c0226de63ad52cf9ad6cf32ff2dbf25f205fe8f6c5d1c3dce8
MD5 74843d6d9ac9d1ad412dbb4def7969ad
BLAKE2b-256 bd82fa7fc49ce6e57f07729515a1246072033d79356f6cd6490c8841ddec369c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 493acd86556bbccf10a315e9b0d222162d9d918681e7bcf8a4fcec141044cc2b
MD5 277d49bd1bc860db263ffa9db174e80e
BLAKE2b-256 bf4bf9ea782aa3b97818c07a26556347e01c794929b8870121daa17b4b104e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48a24dde4c4ad5fc24cb39350388fcd2a8bfd06a4cc8251cca7d1463e579165c
MD5 86057dea68749e97ec2a64e4d11e325d
BLAKE2b-256 0a1fa9f7ab8e81dad7ec276fb3c8ae5b041d722bba3bcf90a5260ca178af5512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27c94e68eb2c5c2b5a49b2c00c681f605cfed92092d807ca02e3aedfee111775
MD5 1565e827df39bc1055220b26c0dbf1e9
BLAKE2b-256 f05f2f7b4f60291dd8830cebecd6b735f1bd7c56f8106670499b204d95cde886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65d01156f0d28bf7e40cbce604b745f355d8829ed384c416b594a8bb9c4a6691
MD5 fe90674a1b7bc4911e0ee777a502a269
BLAKE2b-256 603d950cce173139860a1e921669816a9f10e9d7f7e3dc7e6b05c246654921ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8156860ba13a4214b9d3033d92701fda0b258b83511570817f9655bb6567210f
MD5 cc94aafb6d938b6ec3ee4095977e3fc5
BLAKE2b-256 283ee71bec02a988f5980c637fe595a9805a4cf6680b45fb46f59e21b08b11c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.10.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f703397792c23d25fdbf56ae86add633ed082afeb669eff7d06ef8c119111408
MD5 31563381804e96e9e34910e792b504ad
BLAKE2b-256 93ecd29e23e945f91caa597ac2ab5321249b94fca2c89de8eca2815a7a8f1f5f

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