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

Uploaded Source

Built Distributions

autosar_data-0.9.0-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.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.0-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.0-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.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (885.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.9.0-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.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

autosar_data-0.9.0-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.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (860.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-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.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (885.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

autosar_data-0.9.0-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.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.0-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.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-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.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

autosar_data-0.9.0-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.0-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.0-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.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (902.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-cp312-none-win_amd64.whl (683.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

autosar_data-0.9.0-cp312-none-win32.whl (642.5 kB view details)

Uploaded CPython 3.12 Windows x86

autosar_data-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

autosar_data-0.9.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (885.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.0-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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-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.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (886.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

autosar_data-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (781.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

autosar_data-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl (788.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

autosar_data-0.9.0-cp311-none-win_amd64.whl (683.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

autosar_data-0.9.0-cp311-none-win32.whl (643.9 kB view details)

Uploaded CPython 3.11 Windows x86

autosar_data-0.9.0-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.0-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.0-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.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (860.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (884.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

autosar_data-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (780.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

autosar_data-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl (787.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

autosar_data-0.9.0-cp310-none-win_amd64.whl (683.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

autosar_data-0.9.0-cp310-none-win32.whl (643.8 kB view details)

Uploaded CPython 3.10 Windows x86

autosar_data-0.9.0-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.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.0-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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (860.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (884.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

autosar_data-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (780.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

autosar_data-0.9.0-cp39-none-win_amd64.whl (684.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

autosar_data-0.9.0-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.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.0-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.0-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.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (885.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

autosar_data-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (781.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

autosar_data-0.9.0-cp38-none-win_amd64.whl (684.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

autosar_data-0.9.0-cp38-none-win32.whl (644.1 kB view details)

Uploaded CPython 3.8 Windows x86

autosar_data-0.9.0-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.0-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.0-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.0-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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (883.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

autosar_data-0.9.0-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.0-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.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-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.0-cp37-none-win_amd64.whl (684.2 kB view details)

Uploaded CPython 3.7 Windows x86-64

autosar_data-0.9.0-cp37-none-win32.whl (644.2 kB view details)

Uploaded CPython 3.7 Windows x86

autosar_data-0.9.0-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.0-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.0-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.0-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.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (884.0 kB view details)

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

autosar_data-0.9.0-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.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (950.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (861.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

autosar_data-0.9.0-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.0.tar.gz.

File metadata

  • Download URL: autosar_data-0.9.0.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.0.tar.gz
Algorithm Hash digest
SHA256 49943b33c180fe8fa38efd25cdaa29457d8f418abe068c4fb95074e347351402
MD5 1714d125ead33d419ccc5c2d93e2bf7d
BLAKE2b-256 6844315001a3ffeef2fb10d678e10979278069e15c2d2f6ef74576cc108b5a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e7073759768509134569edddeed6d57f2f812d994fbe13a370c26a9c98eb5a3
MD5 9f4640b710c1194b8babe794dd6ac5d9
BLAKE2b-256 777eeae4583e7c74e200e1064358480362649c4baac6ca99930b9faa16a8a808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7e556544c47eb96fb237f7a30f61643dc62d880608addfbe5ddd744ca266a61
MD5 4b16f40e317aae013de3bcf20522ed77
BLAKE2b-256 46ab39e640b9d05754d7e903c645299b720bead6a7fd637b4c3b4e1f3ae45ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b923f1c641adc0013b812a3445ae89bea6c094a62d051989392b133cc890ab83
MD5 e80916af4a017f7ad1409995b984ca96
BLAKE2b-256 3fc5dcdab28b20c8f61b59439be516f31088464dac6db48fe23b2db6d9d5cd81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e776c6cf9c61f9b8c0a7ab344b23b2ff9b9ae5e723446016abb55e06609cdaba
MD5 2e671a82a9c4d881b83802155dcea9a4
BLAKE2b-256 4b645e7be1c239c99dae68e3422666d692badd26620fe70ce9dd80e2c35ca31a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77ffb00d6b39d11abd22be7c85d2f7fa4fc982e67a9fe5993a356c7462989303
MD5 570d4419e6255c3e1d14d4dd52edd1c1
BLAKE2b-256 f5524d68678e752ebb2e82d035abccce01fbbd48577a9d82f28f504a44dcf525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 689fbeb613803bd31748f1db61be4c7af4b1d814921ddda1811d56047d15ec71
MD5 ab61ccc97a6b0cc47c11f193b226db9b
BLAKE2b-256 ead40bcc3eb79c8af39c96e2453afe905f6bf17df45f4d143f64a9710a9020dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48969637ebb29ab459aa45988345e9c9caf6faa5aa733c460d2a56906f27a309
MD5 6aae281ecbccbd9c5b8bdeda844a42b7
BLAKE2b-256 ae0f34bea8e778ca5c60176fc9ded746c2905a2e4fda52060fd55c7149ac7abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 438eee6555e4dd2e0de226923eb4c8868a7f06236c9eb31047475ea7ad80937e
MD5 88c574fdb702583fa38c9abf2bba4c48
BLAKE2b-256 2833123c3c08cc6dcd5f39df47af840bec106d6e8c64cb4611308cb81e55c0cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb238bb641e4d8bf9f262eb5d853de9041cb7d074af1e911bd695aa107d15eda
MD5 5176a6d7c151fc13cbd60c99ab8a48a0
BLAKE2b-256 6a19448d55e9f1b7fd53e5c3cc61c5aa176510eec07857131706b642e1ba48ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4698cdf5a7b38ea4d80cb2eaec3580717140a339073a5e6834980079ee1147d2
MD5 6ce47e72a519f657870c43de09ce6783
BLAKE2b-256 f97d35a72cd5df21a3f31872161468ada0987781aafa06883525b6a94dfdf2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70ab3fc83363ccac1888f745a46fbc73a37041f4bfa3ae08b472ce0c5ba2004c
MD5 553256d131427b7a18255a27201beaf4
BLAKE2b-256 857bb66c18f99c49c31d164f18be7901f728d241b39c36c3171cd74156849e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f033246a147147617612ae7f7ffd804513576c86e22c7c1ecc1f4c66fc2e09fa
MD5 70d7c9219bda7c29691c05cefc1a5a3e
BLAKE2b-256 9915d3d5c642f1f87a5917ea4044b1e1ae0adca3d64beb082cb2c03c0aacd160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 690857884eea663b41b59cf7dc298dc56fd32da332837989b4dcf820c45154a5
MD5 5c9dfe8b0dc615274b7c536f38e4c232
BLAKE2b-256 7b2ff9442c8980966b34c6427538e0527b6713fd44140a1e548673a6d92c2972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 347141896ef083dd58aa032ca718f876f9686a9364edb6b7cf5a23320e189bf0
MD5 d9a6bf7da334e4f9d0bf8ee1b851a7f0
BLAKE2b-256 1a4c2017e3e054d09680e49e51d281b0e4f1a88e730476375024751fa67611cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99e3a6de1210e91b5d3b09739051fcb3287929b5e68ed3db17386d67b9af8949
MD5 8b84c483ea0db0993520c8865d04ac86
BLAKE2b-256 6aa2cab8d2492afae4be802ff8253422df771ce910b2bd26bb2f043d677229f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc368af126c30dabff90bcd26fa11d6d12c6123e377bd7b49af25724f367c716
MD5 62072e751d3eecee3b4c39a95074a755
BLAKE2b-256 3842868f569ff62cc0d3d0f62890f0ec14add6624d6c8eb804e5feaa6b085b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f645fbd60325a9cc19bf9aabe6bce04c5c34be9d49da808317a24056c62fd2f1
MD5 929c21bafdb89c5323246ec03e275af2
BLAKE2b-256 31a6e9ad49a316bb5eef83390ea6d63770c73d80b2c8b7c2f68caaed5721ffdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 008748cf5a6d46eea3eb18c34d10250437a48ed5e142e14e63e58fce67d97922
MD5 bfadc4d8a649009053a1653ad7cc0ca0
BLAKE2b-256 4ada83b1d815b77949f868542aa7d8e9018ed12b5af5a405155c1c46838036a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4845d9aa0a46f98540433230fc95ada57228db89aa4c4c9a431bf3a87bfb65fa
MD5 290fc6abfc787c92db278182bd689249
BLAKE2b-256 9cc5860b83cc2df8ac1cbdb32c5c94c07ab1424a9319c5c8561465f9d7f18e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 212180e68e4c6b5bf58cd4e55295b02d6be38f13ccabc7b219f26f415876711f
MD5 0edd25657ad738458ffc7f188c22abec
BLAKE2b-256 01d8e95b0e4c81e3b66ef4fb637a1ded0975084834ea90eafde261912b57b585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97d75a8af2d78411156023834df9732ee63b2c377a77c57447e3878fb3b6e1f4
MD5 1a02dffe97ce2a510a17833e5a0f167a
BLAKE2b-256 14c1fc1d0068cb021c6e113151a536acceeba02ca638e0f7bc16f435b8e52f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d298ae32a8a91c7d656b7ea7b2a12cfea238995e373942eb9489e3777ee1309
MD5 4c439e634e9b4a34b5d432553a4f4646
BLAKE2b-256 beaf756944c4ad634fa8c6506ee2275dbfd81474849eedb9a6285cd4642ed516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2667ba67956b2c4d95866ab48d6544aafc8257e34e6054b7e46c95437fa6d203
MD5 ff0af6e38b48ba0d6a6bd49a39a36dd2
BLAKE2b-256 cd444b3e17c5612007cd92db0ca9fd24c8cfd31b7cbd401dddda03e96198137a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c25266102882f196ae669238ef2e7dc96660429892b6af4089ad3e1ce0bbbe54
MD5 b062abc8b039ea4bb0af73966740c746
BLAKE2b-256 c75b3d77305e756a46c7a075143f63eb7a61625d51dbd9b6221a4485159280c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68524d1ca7bc8e608493487a20665fd16477cc2ef804797dd7f50252523e87bb
MD5 40fb8c073b64a140cca732d38fc09edf
BLAKE2b-256 21f6f5b93c8a7f4a41c79f57867c7843ec333df88b08c563619af8792749eec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66e1cee96ef2b52cf37172560db6574b0cc92efc9e27f657bb6c698bbe35f947
MD5 6dcfc55b7d5c87bda23420929e494c77
BLAKE2b-256 eed346df3f95fe6b1723de72961d029d27c148ace145ee1e97c2b0fadf328d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aef7a48a64dbec9fa362505d66d896006bb03a0d3fbc1050a79663c3714faf47
MD5 f431b3bc49d174f6cb7413ad25ead816
BLAKE2b-256 c00048089371d85cb308916ec17253e17425afcb801329de0bf1ac33e7f1c66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f3020cda4317aaaba8eeaf7b81fd3dc57a95e04640a1bd163c3003d31766728
MD5 10cdc259a79df1dd36f422127cbda1c5
BLAKE2b-256 4eee321994d7e7d0b455db821acb033511b2f5ca519e10810dc54114b2a8159d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57013267725c0a3a30a92d09d987347f1ecb131dc9df86d6b72412783e853803
MD5 7efc47b65a0a82ec5dda2ee017c54af3
BLAKE2b-256 ce49a8d9eb24ea0f516a6313d9f294d95eec7ad93380708b8f74aa875da59d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74ac75b680ccd600f0315f78eaf5354f2dcfc356e7f2b15ee2a44d25c3087be8
MD5 458824ec283bc1d10a876eaced02196f
BLAKE2b-256 24e42b95b3583ac1bce0c41d2e2dc919a5e90dfc79fbaaebfa39c35f1b2f27e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d7ae56bdff3a4879ea02bdbe66ad63f2064a4b2d11c9ba7b48f105eca0bf175
MD5 f17b3b3c7c353905da223a3d0b91dbcb
BLAKE2b-256 f2686cae9f7bdcc4c9013c7835bbf86885e87f6d3016a9ea3cac6320cb602bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bff2f549becb5e4fd4ee134612e373bdf03d27478cec8f6042b892a0a004d0e4
MD5 1469fbc16ee1218faf4edd1a9fdccd1e
BLAKE2b-256 77c00b0523dc6ee61b4dbf376db69ba484ad3396d04cfeedb1f628bd0d368a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c92957781005a2e8e897377aafbd0314e291342d7d19c6ae183309eba36fadf7
MD5 8cd990eeccc1bc7ebc3dbb07cff911a4
BLAKE2b-256 4ca703aa0d1cdc732477005ea6d873e74c70c778a25f1d71ce524ca68ee9bdd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f3ec504ded49d7c0f733713efd68f3f119074d4f084712b1b2cd086d65a657e
MD5 0c734be8e2f5d7f2a6abf372277721c0
BLAKE2b-256 6ea1270c83874e803bc19cf748220bdbb9abb74a27fcabd32ec565c92fb10c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 382878440abbbb616c8e99528ec1c3dee203c9bb88e18a0f544ecadf850b999f
MD5 7f9179301aee91219e81a9bcef1203f7
BLAKE2b-256 4a8a85f1280b7d654e5922e98b8853e7d32937a3781be03ce0ef8c693b71ef8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1be9620256e9e6ab4c57d5f3f9d3b442567ce58be0ad771d2e7ab3083482e6d9
MD5 6111a954fa95443e62849c24a77dd31c
BLAKE2b-256 5e8a5ec5d36b6c7a57b57173f68ebab74143136ac1ecaae8842fe1ddcd91d131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 12c12ff70645c72f780192eca26689421bf8446e80dbb9b7ef3a483648a26976
MD5 d507ed33088ab57142bdd40c213481ab
BLAKE2b-256 ed35d4aeca05152fac6a532aec8c6966a27dbd60ac501ed0afd8c94f61e58ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8a2c342407deb3c78e295f745cf84f4b7411a357df4186697554fdaed46c5a39
MD5 8f26ca1d7fa26438371db79991ea5d5c
BLAKE2b-256 74806551c37e6bb60028511738b77f9150ed0c239974201bf32f37edf584e784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 687a6c83863963e0a0bc86bf5e37bc2fe63dccd90648f44353183c459b704ee9
MD5 eb039642f7e7926d5236587f993ebd43
BLAKE2b-256 8da437436317204dc1116613d63ae2bec5fe25b1e193d29ee59ce73669a3f444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75d858bce85d282f03bd01a2b0f428d23ad9e9f433c02de1992e3242b69e1d59
MD5 100592e9f5e7478c45a84ba0f208a671
BLAKE2b-256 98e0d73a1f5801ad4df559fb3965e008a569c1c583045870f62707fac89fad4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf7a89240f35b417b7aa06d428ac26480f7da770fe3aecd72e357d97c0996bc5
MD5 38b9a48ca729b11f1e683f0d4a4f8822
BLAKE2b-256 7f821ddcb5efa8d0302e0e041bc5e31aab1750fe4b02f54c0c9d36c5604e971f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a656bbf3255894754732d71cba7a6b11347bc348cd73f205c30caf762595b7c
MD5 11adbf8de94fe1eb2cbd05f1e6610870
BLAKE2b-256 ea2517d19cc379f6905dcca2946a1593acd71f1d65306a5c6ee0e8c1a7e8a62d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d485a804adfcf371e5cf209d359dbbee742cfd90d873425cba657100cc29357
MD5 07f2716724d6682fb21c93cb642c56ca
BLAKE2b-256 9b2a6a381ec0e52082b6dd161f54cfbb544ff77e6fb6feb20807b1144193948f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1048900739b28099dc11e5e80f16ab763501985e72b4188d69e375353544644
MD5 d9bfea00e5e581a3e5df58fe8733f697
BLAKE2b-256 251f5c0d4a07bf0f2f4e6fedbfeef21a718a0ab990d9f13d1470f75673546d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca8bb20734b2bc98ea7737ada624f0c1db83e9c27e83d3bc703df8af0ce50f5d
MD5 c5ee47874a6478bc2cbc9de9ad4c3287
BLAKE2b-256 c7650b1cea5131f6281485fec02350706ffe151e30d8142d6ce42274b8450531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 166075f1fa9b6ca29a1d4e2a1de9cd4129ad58592185af8c83a940af7fe1b6c3
MD5 87060c6724eadf6409139a54fa225b00
BLAKE2b-256 ce1876974f4479809699ebb06d177ed0f3e0040eecd9540ded627c74939c664a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c3971ad71fa1a087627a5e9cc9992dd94e1e548ceb09543f44d67b9be3c4940
MD5 a7b7d07c4634e21585e61082cba9f2d7
BLAKE2b-256 f912d51c355f007d3f20c1b095b897d0009e39590270dffb308465bc9a62397b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 894c0ca69ed1c4c9069275db86496793469520b4b341f03d93528c20c6a2518f
MD5 197a349a2965b0e045594d458b9504e0
BLAKE2b-256 afb6872c97e53d791a5b829523fc5ae5a6a6262e94f9af965de6afcce264c872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b67032d59697f49b3aecd6ed8334e174752b143837ccbca4595c92cdf5e66f67
MD5 0044ce0798f15d110168c20f9c75e9fe
BLAKE2b-256 f2be609325b4b07f10a61d6d5c93ed8ec80686f5bf6dbc75842390a0f013e155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dd9b018d38bd291666f57c0b4ce440a2cb04d373564f9c11e73a60582d1c5a6
MD5 8177005c065e37e70a1470304a1dde11
BLAKE2b-256 b2e4fd8f5bda2a4ade3db7cd9b48c2204a2ad1e1037047e204502f49d9b78f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8d1cc79e32581dea2c8512c633d2d93ed900fcfa351141554a7625bedeecbd53
MD5 ca29efa4652cca1b5cefcfdec482d1d6
BLAKE2b-256 67ec20f312d64848467beeac1fb1e4ee7534ac348b37e5613405da5b2e36e354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 34766e3d781d97edecb2feccbed0fb93940baeb48420e8d27e74099967807676
MD5 b322673d100778f1b73821e88c85f891
BLAKE2b-256 b760562a16fd71d609f996313f1c76acae92f57c07f8fda6dcff43a7f9b1126a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51103e3feed8b107fd379eba7a04d2e9e3e5ba9fb6b141fdd73772ff64a44463
MD5 5eee6bc18caec0e6a81c54a31940f41f
BLAKE2b-256 b9a291c44994876169beb1cf1c2d6594c2131ac027deb0f41fc696eafc1458a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 463a5c7e1e20748cd9b1bcbfc627a489ff4ef1ed901fca6d71d1c7837e3016d7
MD5 52822fde2653528556d5819293dee231
BLAKE2b-256 be194d9b99e3228c0209762b3e1cb782eed6825cfd15ed48548bc5e7e5a29187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee495be8920e07b802ac0b798e3e969e868140d349c226e285e334ddf9cfed34
MD5 1028ded7195b7edb258f9a39ec1a826b
BLAKE2b-256 64d94b9f9ab18d2d72fa69e04aec5df842761bea3a7baad8094fdc8379e06ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6758f0635d89219d95d48917cbf6e0c88f3d6970cc13975101dc65fd547dd22b
MD5 ce7605bec67c92119238b108cbdb2acc
BLAKE2b-256 1d778eee73a59b8c1d625ef31f322d161df5275a61a368415363fdd51eb4063a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77bda242f7d282fdae1268aac3aeb4087b30e8a5753e179d53cb605b6a1101b7
MD5 4f63b94dfbef00f62b0a4920061dec2f
BLAKE2b-256 2d630ac17aacb65f58bcddb0a969b876ceb77bdcd4dd06e7c5733c51bcad9d36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0c9bd7ee36b73152cd157d0df6a821483e84af431c6905f6a68e376c5576ff3
MD5 ae1a5e37e83624c5ea8da61bf43c90f0
BLAKE2b-256 14222353fe283eadad12c9e1edf2cb72f165fb619356845e99c1a0b0b71bb7e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 278dcff45962bda9e0d9b8a5fbe0751cc4d24634fe9c253a1dbda086a5880d0b
MD5 b95b62b872f73e3b0de38b955b5a95f3
BLAKE2b-256 9f93bb690f4276e07c42ce3c59bda89384435b45766bac4aa3a8fdb4c6980e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24096b34aace7890c4b459bc4baed57c8be987a9eb9fb8bfd50c2080ff5ad8d4
MD5 875e16c8d12ea6018de9c7417884f4cd
BLAKE2b-256 a56d1668d574ba1cac2126ac18a62212aaa9ead3dae40e45acf8e19e66d0dc90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fc9419c870334be8d68ac005db0659aa7c1b386d47671b4dee1d9158f1343cc
MD5 c2eec240cade13250938b1696e36cf21
BLAKE2b-256 3078efd1a02dbea88015dc87a70c218007968e8a9d92173172d712883062b901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3643d2c776d4b558a3f641aeb556347ece1085517f3e7408646aba91bc95cdf
MD5 7879d3f88dd0831758c6710be504caaa
BLAKE2b-256 0b002c9639adff5f81b34f07c86f6c7ac56c84ae8e361d3b669024748ab8ff11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf5dce8ecb8a88d70ebe6e8ed77add8bb5c9c2b79a698be3e5449f557cd617b2
MD5 daf2acd26fdb90336b70bfb06c16f0d5
BLAKE2b-256 60af13eaf7675b9306f03a6661485a425ad6b055520e5d89f713a11c443b6ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e68afa71b6d13110d7084df0399ba7859ebf4c805a5ff4f05f176a6dd311a507
MD5 d864e6af79e3ca30d8ab5a91cbc26dc2
BLAKE2b-256 f769d02695b6143055e3566de245718fc4cd446df9bfccd7489762baec96150a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 df917da8d370899fdc060eb4ab3c9a6f55c2ff01f60cc30ed148f9fce8bb2562
MD5 0dc0e92cc87516a0b459d2d137281693
BLAKE2b-256 122149edae6166d6e56d606cb0c842de43f34169cf7d1e64cd58ebc3a5bdbb0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ae2f51848129ee092be3b6a6c8f2ff34cd817239f1a3f9f9cc005f3e7617e9d9
MD5 625945a61748727b2b53161f01915520
BLAKE2b-256 4367ead7624961a88f545d55287396e1021aff6a4ecc9b55311923aff0bfdab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3132e9c9df3c709a768c1b8431fbbe0d7e87e38302fa91e2fa613d8a4f9d7986
MD5 023538c9eafbfa423bd92f2a7be419a1
BLAKE2b-256 ff88dfc8571a5cd0294fe3645c6a7aeee09c1ea5388d664e6f5b3225073b158f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 636787ef1468c5219c9ccf5583a70172c37042f893070cb852b4e786beba8f14
MD5 f9437f002151b32da0b9fb3a980ece94
BLAKE2b-256 56c8e9b35762b771a772b29b7e0eaea724c880011078a3997122456934f7ae2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 363777296fe6848cb1f7b1ddfcd7a87a9e527b5bd8a13ecdd2cc918fcab3a31e
MD5 fe3dff00cc06de3cf78a519ead37ae7b
BLAKE2b-256 877dc22560c8670cc195ecc68dd9bd4b2b918fd98f3b716b9435cd53bbf18646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 596a00219041f747b59951460d75025f5771dcc977f7c9e2c1377cb4d1130265
MD5 4b552488fa811c32fcc77d84d280cd2a
BLAKE2b-256 ab046045102ccc2d10ee1585ba36b148f150ea2bb804a56c36d459375fcaea15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eccf30ddfe237a1423b452d46dc8aaff7cb876347d4d696f9981e37129cfd3d
MD5 7fb78fe2dcb6bd6ec67a59b8498b991e
BLAKE2b-256 f18c800ae0b11df1a4fc086d2a08d1fc278c314c159e8e55212ac1363f1b8ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0f3b6d054a5289df3640993ecc0a9556eefeeea65b40c7948d95824e4581098
MD5 9314ac986ee5b71736352ff1e4b86f28
BLAKE2b-256 0190caed4de18f46fd3e3a5f615e8f29095b4a325e36b0c9f07de75eb266a98c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5694bef9ade9531014af640e2e697ce2e5f32306136c33e88fdeedaa11c3ce58
MD5 1b89cab2db30b14c4b7ff4b710554794
BLAKE2b-256 c2a637da76efb85b4da7cf644a902895fce42aa8a49a958d9f15e85641678701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a63c711214245a87a8ce60ccad811e36db43023152e3fe9cc9079cc9ac9bc5ba
MD5 092ac056d664ffd14352b82522325f0b
BLAKE2b-256 503eacf32180f67306376c5107827f9eee54e448f1fb7f963e6c449885e8f1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bb24cb82996a11ee157278fde8070bfcb5195068156d2c4867b4d87d4a2345c
MD5 568638405b2557a061ddb8fb2e66beb0
BLAKE2b-256 0605c717f70edb4dd1e37096ebe3b095d6a40372bc118e2d9bea1a171fa968f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8d6d24545f18105c84011ae52381915fce2b4b301560ca02d91d1a484595ad4
MD5 79487b7e9ea4a27cfdea6e4a9dd26133
BLAKE2b-256 3ce8f737b4c877682b7601fe5bd7269fe9e25b701158d99a025c7d9a21ae939c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b9cc2343c14c81cd8a16d83049aa47a43669fd1128c45e44810d8751dc5ae62
MD5 6cbc4b4df211ee100b8578b7861822d7
BLAKE2b-256 4a7b191be6af35e9592e91f0e6579b907e9f94a6bf3a3d59c494f41dadc0fc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 071d801cb76746ae91e97d2cca8bd61d826abd75605cd2409b81158613e1633d
MD5 69ae6c560432e5625a39c498d5c2a330
BLAKE2b-256 df601fe007383584ae5e09f5ed408b117ec629a8e631125275819ad5921d9c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ec76a47c8156a81370b7920c11065a35b0ef314d14b2e320d83d320e1f480e73
MD5 c6e265463f396a31a6ca1aa9353498eb
BLAKE2b-256 6b2806688de3fad9f155da2d3b2b443ef01538ca8080c71914ba2812b421cf49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a480905151232b33018e1ea3a4ad01225505574a965c9bf6ad94bcecc4a82b65
MD5 b485da18fcd6e81b4104a16ecdc3273a
BLAKE2b-256 4da218588964bb3d7cfe237aa3be06248aef9299dd8dc022156989e093d83546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 977bd7fea6f55fd21f27e1024fada65644f3e6ce1f439e19319a977655450d64
MD5 2bb832cc377c288ac6261fb39264f16d
BLAKE2b-256 64acc6bcd55d084a81d1329fa229d398a489393374d25c4f33a97df6e2a6c23c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17c43a3579ea15eaecc80caac82331bee3a894a907ae700559e2acd45b2dfa43
MD5 6e795fdeade62d63e20bef22510fd202
BLAKE2b-256 711042fa753c214082e3ba3c71cf24572d2f8153109c2a1e70efa1c17b3fbb32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22d99c1b4c10262e36ec75eee20e1e09789350899ed92592461195c3f56d1649
MD5 10b77c42dccb1fed0c982ce3cb1d329f
BLAKE2b-256 8cfd1621c07affef2a29f06d5e1a17d99393eb98982fb17179b105d7a6490cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c3bcf1f4544da62c9161bcf826c33d792910a9cd5d24608c6e8825ce476d1d9
MD5 efb32f3ebe24060bf7d4abd279d3698b
BLAKE2b-256 d4930038bb68fdbd2e83c3bc94d593f2a85e61592881dcb363678ce875b5b948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ed68a9d44331181d886d7399eb3fc53da65e0eb99d29998955f3af468dacefd
MD5 fe6d5a64d81ede4c4bb6fefa6ada4127
BLAKE2b-256 b0a25a8d7e4bf0c4d6158c3e9774e0b92c764169039691e79571cb98c6ac4049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a22898f389b18dac366f2eea7d6f0841176a89be19a2d744750abf4ec6f410ae
MD5 cd35869970a97eef48fff477a2864e23
BLAKE2b-256 7a09a88805c152d5992b039971476ea16b397933d7e685f4d523e96db0d7a62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d978287da6359bd2f8723a2ef28a3ec398af9a42112e7aaa799b5f6c84b4601
MD5 414f10d559b1db739fc67710194b17f2
BLAKE2b-256 15d71ae65221333bcc4f33f0daed2d064628535a5372356c2d3f451dc12e23e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a754eaff277548534d3184126f9464677c6e719260128960d84b390e14687ab
MD5 a9c21a807693d0eb80d214488bbf2247
BLAKE2b-256 176507a70a2791fe9ceed2a1e97182e679e6a2110a3470a9eae7e473f6ca2a65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77f8025e6fdec3cb1192e21432cc442f11c60b7b396bfaba3af2efbcce692d02
MD5 7e79299dae34857cfa4e4b4fa4b5bcd0
BLAKE2b-256 00e4e6ae83c39cca1e2eb46c5844fad62d2b4db2bb6d091afedb0ba9a04e5fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93933865c72b3fd97c0dc4d43338833febf6b5673925e8916ee10d757f8f2726
MD5 11035f7cadc79b9908970d184aea6edd
BLAKE2b-256 ffb91591792122a5342d194fd6b0ed6b112eb690d19665a92fa0aca56812842d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc47fd10a074801c1a7bae9611b0b2da25f9ec915a1753966f835092e9e497c2
MD5 78fb79f74ff78a442bf4c20e5f4fe33e
BLAKE2b-256 3fab7ee104459c806bf1212f427a690f7b9073e8a4b2f1ea7af1d5b16981299d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 251a6cd384a1c46739300274d077395abe41b6abf24e8b655a2b4e85480a50a9
MD5 c1af5d520ba9979c178d3140982c7562
BLAKE2b-256 a0626d8752fe52d019fc812fbe2f44bae9f4d8d8238296cdbed392fc08a383b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0feccd0f65774480cd11daa15c1afc452305f52dedf1834e9799b120b3f6351
MD5 2cf8b7f11c7406388a2af631e3a75287
BLAKE2b-256 6168850e874cd5a5dac855dcbaa55aa79a776f846fccd8f7d8d308229304f213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8670849ed791c56f23bf87396373ddc6cd95b0b338918164fea376f6994a506
MD5 f1f8e52bf25eba17a307547a9d60f39a
BLAKE2b-256 93a673bf76474e0bacd9456f4179f4432df5306025c482c54b99ad62de179548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 720f8fe938b230f78fa350cbb7f53dba07d9df4c70d0a214990a54cb7a6edd7d
MD5 b6885c9c3ba8f120532b6423cc79675c
BLAKE2b-256 1e9c9509e7d923e7453533704f319eaf296bb32cbc972fba8bec273b43f82f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d9580a811febfc3c1edbcee79fa420966c4947ff70bd779055400d6ae090bec
MD5 972d82ab1635aa42bd16ab05de02c43f
BLAKE2b-256 fc3e4ef1468fb6ccb7084cb8835e6c5e2d27dcc7cc31450106550701ad08a0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54eddd1974d25914289e615a595299e42e4605b1ffbce769811d01e0a785e1ff
MD5 e2392c991c822d7421fa12d157a71153
BLAKE2b-256 f672ebc5e4510ebd483f04bcb238267057b5bd0fb839d6f04c64e03d6d69ad07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a05a6457181f3c4b74ba4779078517a9567058bbc19a34177001511eddaf2ec
MD5 94f2e641baa92fd996124f81d6b5996d
BLAKE2b-256 71e64edd4b957ef10103beb3642902a99d1ce58a9f5cf87aea0cd62f0fe20cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e314df53561c7bdea1f0baae37570a7ac0b2e4800ab9304446b864d82733e5d
MD5 2ffcdec3d32739560ed1d77910635bd2
BLAKE2b-256 13649ce9dd681f0632730fae02cc0719f0b0ce5bfc320b9145700ed856cd2a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac18300388f184f0295ec831f8fa964caebda156d1ea3f198e60136e243c32f1
MD5 86e3c07fd53e8a1cb9f19f2b238b4c97
BLAKE2b-256 1bc4e9f3dae53f89685d93fbf310c07ee836b6f433dce719d3b83a5e552e35ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1793eb45cb494e2cd017df4cff2407969c06ecef371ca748f4854cff7ec3688
MD5 a2ffc84eb7aa70dd16df97f165e85d8a
BLAKE2b-256 4d25b7b43ffa7e39c36227bb8ae1b99cfaa16ffa34fdeb5114a68b5a519df07a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 675b49c8e4af44fc304a80eb14121231a05c2e09fb48719c1739c4d419fa7af9
MD5 e80bf9d50d9636efe71f8eff5dab3c11
BLAKE2b-256 5768eabed8f6d833c34c2dab0b0f269f4d58ccf88654ca73d8d765136f799623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 5b28e12d10e2d99eee1d2954d652476398fd03e1a0988090353252c1209cf417
MD5 87bec904a01a76ff51f4d73fd3aa2178
BLAKE2b-256 26ae308dd7904d35edda65127a721c905acb1f950b61252f26af85c2c5299832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 3621a4b4af50479ffc8b49cc8abaa176c693fa8ed91db9e3bd6f84c87e80d23e
MD5 05832ddccf9620932c49f0457807c8fd
BLAKE2b-256 eb4d2ccf044035c2dd8ae5905076beff8d085bddbde4d69ea083615dc472bc97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bde7a228c4d8b5dbe003c15dac40a41957259fac4f9f700e3cb7eff61c7fd21b
MD5 ccab7d913d688c03b48f761cddee33b3
BLAKE2b-256 5eb761affa262eebd431bc5cfb80a5bf131130e30123a60dbfea3f655e7533b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ea700f9460b87a4bd7e8b226939d1150a4e37d2ecedd3d343d1f219aea1218b
MD5 780bd3aab80272b2964c48001b1a1cb6
BLAKE2b-256 1efb551919c3d216d6b95fb8914c78e6b55693b4402e33964f313dc664c1f741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4466bd0e6fa4532e98f96ffa90c4efb60323d90355a729c2d2bfb4e854570428
MD5 66737d6a4671b7c46c545a15165b1992
BLAKE2b-256 55a030948c3b6a08f23c044b879de449d1aefb9aa258db13781866a3784949bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6abe9844f6a180d5f518776886e5a0e011c232d36b31075c8bf5e9bba9a86ee4
MD5 f531551b6215ee3bc5d82afe7a13ac2c
BLAKE2b-256 e52714bf05e832203bdbc00e752d95fd6e0984b219fcb7cf4b1259259d3c17d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b52393b1fc35c9686caf635ef392e5bb1d4135c48fdd9a4084e8eba3a7951f81
MD5 79bb7e26f040e9452977fc667e8725eb
BLAKE2b-256 8d6ec4582c385aeb20b5306c4f5aabd778f93b0307aeb95541ddf8dccf9e2633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43fd91358d1bc44d5f0626f62fd6a6a3f22c47e212ad7b4d00eb87c7076a67be
MD5 78cafd5c42dbc6453e337e3e557046a9
BLAKE2b-256 ef7eb1133c24888e7de5b1f33bf45e1dba88a97fcc0ebc302298ba0f2adf2c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef512fa950538e13608965a2ac803cd2eb6839b6ed3e7c38f17f97f22e7d6975
MD5 70f42be93d068536eca8212503eb5e0c
BLAKE2b-256 0197c3376699c636063c4712833c2d9db3fff32028f10fa177388903de4a53af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 367a40cc2a7b288c8c03881f285636386e8055870e75255ae84e42f8a284c9a2
MD5 6ce54a10b8a3ea16bb0cb6e6e570e0af
BLAKE2b-256 c79d8a7f573922b149c4c10b0c84bda33b25a14fed5022f24f02ff59ae030a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcfd0de480dbb1a869747cdac931150b1d678c7850abbb927f15160963565f08
MD5 e7974ef8b3e5f36589a0f77df8665210
BLAKE2b-256 3663e32d20797b2cc15648cbbd41353eb17a90cad94071bebd926c32bed0a6a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.9.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60d6362adadb425fef0b7eae98dfca1bf1fa817de7e77a69159aec63bb2de1f1
MD5 6529fd267ad5cf7d1d2c0d033e424dbc
BLAKE2b-256 4df0f89eb2e433b7407eb2c61320e26b9fa710eb2540c30088e18f1b5dea8b45

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