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.13.0.tar.gz (261.6 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.13.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

autosar_data-0.13.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

autosar_data-0.13.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

autosar_data-0.13.0-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

autosar_data-0.13.0-cp314-cp314-win32.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86

autosar_data-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

autosar_data-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

autosar_data-0.13.0-cp314-cp314-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

autosar_data-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

autosar_data-0.13.0-cp313-cp313t-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

autosar_data-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

autosar_data-0.13.0-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

autosar_data-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

autosar_data-0.13.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autosar_data-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

autosar_data-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

autosar_data-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

autosar_data-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autosar_data-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

autosar_data-0.13.0-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

autosar_data-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

autosar_data-0.13.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autosar_data-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

autosar_data-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

autosar_data-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

autosar_data-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autosar_data-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

autosar_data-0.13.0-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

autosar_data-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

autosar_data-0.13.0-cp311-cp311-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

autosar_data-0.13.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autosar_data-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

autosar_data-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

autosar_data-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

autosar_data-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

autosar_data-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

autosar_data-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for autosar_data-0.13.0.tar.gz
Algorithm Hash digest
SHA256 d9a0a57bfddd197664dac82000298cfc6f1791f50dbe428beec2d19b6ef749aa
MD5 036f527c1907c5ae034817a5ded1d304
BLAKE2b-256 57bd0ede0cf2544ac17f2740979c47f4d26b0d99967cd547c5949ee9d060ed54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3d92f30d96c6b84ea4c67b346fc9a28b793afba859a9c56d3991333e0ba2ba3
MD5 84be45f4df9a87e8c0ec6e7dd4380877
BLAKE2b-256 e3eec536d9165de9f61881ded0443cd0e8d332e5518db38609efc968e34b399f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f025766fe9cedc3c4871a6c6794cbd9ca0b4cadc01a929c8552b78c1c1efaa01
MD5 9b2bd42270597410abc9f7d294ba548c
BLAKE2b-256 afc9b3e24544e7ffff5c807e3992f38a122fcb5f1d68dc5d48830973e88da0ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a32116a2e17dd84ab10fbf9c72ac977d9da7144fd9802d20d1b635dc1fe208b9
MD5 8d7935a506a724a2a8a9515d41c0fbe2
BLAKE2b-256 0585c8a44a1c08dde57164ad3bd3eb1bab8f2a37117125974d6b00dcc40f0a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a9daa44bdea064d3e9ceeca9d2d538bbdbb64b6ba4c4b9db6405adda3409579
MD5 01a1fc5383966e6b2c3b24c741f59fe5
BLAKE2b-256 4495e01d7318d8415d484410e23615d8d0e21e48a0647a8d9ea4ee6b4eda3d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cd8394a9124d012e085f0b9da921b5732927ee35eee2d63d031d701c7f6ffc1
MD5 96fd2cf78144cb885f1743eedae548b1
BLAKE2b-256 818a876db16458d8bdb69ff1c8eff5207c40dc1438d864dd313deec2fcdc1b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59d9aa4196f6831e7e3a5af82c1931b31ecb3c0eb5420be6b74e18607c53e600
MD5 ba39be639f71c3a36547c2ebe8914b33
BLAKE2b-256 08cd405bd0ebc11392c988c3428b99ff09163e9c540cc09efedd9c248733e168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5175faa7b73831858dfe04a772ac56757d27f108d0ad35b78432e5a6d1ab185e
MD5 5d8227a3ffe338aa9d1bb09cbf47bcff
BLAKE2b-256 cad10bccfe66d236001d6e3a62e036efa6418b34651496fac26aa4f050dc5e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8875e86ba01500dca689aa8771cc757e8211204ed910002f4dd11be8252e02dd
MD5 981d4563fb978db75b7506ea14ee9e6a
BLAKE2b-256 9edc028fa6e5cabee74de2dc55c70f3aefe052b69134c7cf4fc35eaa6023c225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0427f04c1e42aafb9c37ad0f8da3a7e8b7e7e0afd76f1d347137a274b82a86cc
MD5 60d0f982b409c847e38defc83b07fe74
BLAKE2b-256 0d5ed319d2cc797d115790efbaa670d230e952c091599284d8c7f5bef0a4fedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08ffb567be8a78c165118d092057939208623adf3a8d78613df6da4c05edf64e
MD5 1268ef3d90e5f1c683c0c295c1b33ded
BLAKE2b-256 818979d2346c06d870e0ad93b819f7409539fa4fa93ed6abc9afcb89a0b44787

See more details on using hashes here.

File details

Details for the file autosar_data-0.13.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e2ce2751844d5f0ba33e153e7d0dd1bcda8c06a87f589ddb5dbdb80cfe33a2ef
MD5 f221e34d4a81197e21e3fc1d94c20e0f
BLAKE2b-256 5b575cbbc4f5cfd023286b42e212ef3fde171447d083e3973abc79d52a52f9ce

See more details on using hashes here.

File details

Details for the file autosar_data-0.13.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3be52806c762e872589e7938509a4b70693ae06a8e8d73ef91247c1331322ca1
MD5 955d7478918b8773b70b199ae405ab00
BLAKE2b-256 39b1aca2cdb3fba4f5520eb735fdc70ba529f81defee5488e6cb3f861f6460f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8116409d6ec166bcf12e802e8413da6367d63444e9d018584a9fb4f1f08fff6
MD5 1646f9ffe9084a8d98565acd6346ed13
BLAKE2b-256 fbc0bd820a279c811cf18a22fc830bcce742f19299ac26a490ea3747a47d7cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5610d36a6e5a912048f531b22e018b51a27f59be9425b26b98ac7f68d85876b
MD5 ca2183228c60c62be52ee8bc6124f55d
BLAKE2b-256 ce58fc779b6dd8bfc7bd468f9e7d52e3520c425e3676a0c80fa45f4a72aad718

See more details on using hashes here.

File details

Details for the file autosar_data-0.13.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 176a51c4d85efb053e63fabdd9401ce15ad1dc048ad69a60acaf00d954e6426e
MD5 10b060c2fded407d04dd36f99c3ca74f
BLAKE2b-256 8f4999dff5b64b3cec84918214e4d7c7e2bfff557bc5d685df0565b4e0263121

See more details on using hashes here.

File details

Details for the file autosar_data-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b529a9a85b77018a0aa6eb01ba1181fe4c383480382baf295bad2be4ca4c2f74
MD5 21b0ebaf1cb31f4249c09cf335d6a39f
BLAKE2b-256 a361198a297049e77fce7526e9ff31d606318dcc055dea6cae72aed302f46e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c6ec743fc8fe78aa6d2b28d5caf2fd004743335e73d273f479f4c8c5c144193
MD5 0a92c2688bfe8afcb4bec3aa58b06081
BLAKE2b-256 f71aff23ce0a2aec7b95c8f92f7cc2f70b4117cf09f0c3266df41a57b56937e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8c6713f322b07001744bbf25821d649e5f9686a0214196bc6604db737167006
MD5 3c99b7d72f7ccf0c57c4df97192da294
BLAKE2b-256 05798689b8973a4db719616d964e7f6486c3c90fbac15b157384392cd82ccb2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef93dd5bbf555177b486136602b116d7532df5faf2e20be358c24114d693b216
MD5 3102edfbd0204656f2e3a3a09ab9143f
BLAKE2b-256 f473032476c115afbd0c22d0222f55fc03b05cc78c8379f2fd8cfa0c55fc458e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9229c191df89b91dede65d34e2d7a8e92b1ac6678c686978ed3c22a7a3addf0
MD5 b1821c0e08f8263587aab2365e410948
BLAKE2b-256 481dc8c6d98572b748a6d93be3eaa9961010f93f61a1391c29dcac7846904e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca3dd48c9c9231ad7378f8af6cac0d2c8212f937b739c008605ee3c12ef0b078
MD5 59f8816679fffa7189b92c2351b26361
BLAKE2b-256 a0c2e8e01f101ed5ba070da8a468be8993a88005b600416b1ae2fb5bda86f6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ae4a022eb62f93cf49bbb3305d1ae69913aaf09dc872b3a795ea9a6c557dcdf
MD5 e0273ced2a8fbf8dfbdf639e0e70600a
BLAKE2b-256 e0942552b33cc016a65365206f2b1322d27f9155cc288dffdf33bb3f7d5b36b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d6dd751083a89b266de55576c2c2b1abd230d73ba0421a30ea91fd24b84d21b
MD5 0c9fc23596b184e6053327e3d4854a3b
BLAKE2b-256 ae7423a7acc3a280fe41830c1279dd97cf0c4195041fda8f7c0405f6f6631837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 343cba44ed9360912c1c5ff18264698aa743923e1b8678268d89783cf59da3e6
MD5 c4a4835e3369c324b8d9cd33ab57fa45
BLAKE2b-256 5e171a14050f485e67b68b2983d16d3a50251f6ab526c178e4f1627c3d4cb310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0213c5ac21c2dfc14a017cb1976e0a100373cf716ffad379df247501b751859d
MD5 a12094048f1f761c4631ebf2af806c46
BLAKE2b-256 1a0ffbef56a875acbbc8af3fcffbd4ea7942e30234c2d563c6782928a876431c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84a3995381a088348dcfea9cd0f6ff2b5b77b9d47aa8c42db5e35a827f9a8b13
MD5 f8df96246140b633bb4d249b1999e927
BLAKE2b-256 755b618cac153ada4f4726e3511eb8ea0c1a1d97ba9dc754f0e31e6a664c2fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86b0ab36e7f7ae5414c528b961bda45a47f2550b274eeeb990cb7c721c212733
MD5 d14833d0d4c247b6b5935862cf410149
BLAKE2b-256 368d45516df96b19339a2e7aed83b5eb1292c0f48952a6b7331d727183130f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c4c58efbcd8a4d56c84015e6b9461ec90f026fd3e8fe2a0a91ef4acdb29eb5b
MD5 4d074cb8e476e76334d1dad37c35a077
BLAKE2b-256 19a3d2e2859c35a17d011e96837b0ca3bdd25e1bfa088ba7a5db8e184fad3232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0843e01e98f49f049303fb23028ca3c0b106ad7d3cb88dbe4fbe723df4f1d956
MD5 4b99e13fed470c89eb7976880a913774
BLAKE2b-256 3e9296cee4ab3c7c453125d53903adb1d488cade95636bc3ac8b0744b541663b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88d0a6c5f368cf2ddaa6ed08555bf9c0c86c8f56fbb52369b4a493a0ae5629f9
MD5 fae2e57624378f809765bbb26c3bea61
BLAKE2b-256 c9f0da16087cbb3bba14b8371098bfae9c9e6d6acf46a879cdb45fc81429ef74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21985022a4ac52808e5220d1b52edc26c4f060ea56995de429b68dc1814fbe55
MD5 e23e4904598d742f58cd2c5a41683e24
BLAKE2b-256 f1364e976d087c92cc3917d0459dab105c756f4dc248693d68cf1fa680a0f44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76e65f1478aa1ce24d08c5f888a09decfb7e816fb05da408a8aa749467200b9a
MD5 3708e84e78c876ad7332a6ff3ed81cdb
BLAKE2b-256 347bb96378c5055d9c16fd9b5fcd48566ede324ce4a5abadde950928d2da7d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c41b1ec4055dd91a945bb9a4a6d6634119319ff98e3a6d98ff58e2b9b85ad66d
MD5 34da374718f9a1c1c7288e8b937373da
BLAKE2b-256 af9033e0920238fb0135715d1f5f9adcd622abe92f576aed810f5b4f6985bd8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91322d42a140457a45c1fbd0fcb94f77573a5ac4fabe8bd934b17c452ebecc6b
MD5 c1fb5d2758e49302c5d1fff17a65ec66
BLAKE2b-256 dc37d64867f5e599ad312fb8cafc015275973713fed6f406ae5cdbf855a1c7a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32e72a605460a2cc2606a64447ed7397bc415cf73eabc1f21f62174dfde71360
MD5 9bc352fcc7558b86736ddb7531ae4699
BLAKE2b-256 f9eb2f1c93422f5e1a5cbe36c16d49887730671345b6e1008e02ed052d8ef7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 560aeea29f41a10d679d51d06526a0714aebc44fe5f1c9e7b380e54cf42b822f
MD5 08516aacee1e710218cbf4e8cc3d4197
BLAKE2b-256 736e620f00658dcf1bd47324d807a392a5137118b5c414181f1cddc69d4249de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c89c87118ecd88548a0d54e5cdd83e04e0de59a505a7ec6295ea061650bcc3d7
MD5 d06ddbdd7bf7a4b1627e018907019df7
BLAKE2b-256 e58832746c93a6ba054a99fb38fb5faa6c0a40325f568dd6824fd569662fceb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 338514053bbacaaf77949f575f7f02f3e84f82a7795ce4731ff3366dbc08e896
MD5 3acf3d08f3f00d321c518c3205c23ad8
BLAKE2b-256 3d5c89d31d36970800c68e0ee2ccd4be3ed6a5711c0d1fc1cf68b5cbde7ee970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33397d7a3bf287ea1077f67710d383d355ed8ed56bdce0eb830e5559c7e34b09
MD5 6de4b2734137c1396e1421f9921a1a97
BLAKE2b-256 d16dc082965ab574d524695a540452b64a3c78ab038f23d3d9c5f6d3b40656d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8342609a91eddd9e7506c78cba24333979da16e404b9c96c981f4a7daf0f5f1
MD5 87824598a3c0ec82e2cefc49dad7c0a3
BLAKE2b-256 520a44322cd9b2d86c5cddf6bc757b0dbfa85f53e25988f8ee55637ababc13ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15dbcd0e6c1596aedeba2f351419c14a9fa2cd15f83c7e4289b90ebee4b5ebc5
MD5 e651e88bc0cdc1aae0e8b8d123845450
BLAKE2b-256 b9efdd3056107ad13861fa72733628e9d7a3750bbc88c678741d68d286fd927b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8774f0fc1a3ed7e91a86f8a6cf7644ea2ded6cbaaae7ac2bada4280b4d3041c3
MD5 1b63f1d4c562c7154fd82255350c4186
BLAKE2b-256 532cdd7bd85aa520b57672dc03a7d1abfa6bd2a1e325071bb846275a503d2ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fa8394263baa2260ae2cab7e02546e91a9d1fd0ff76f55a608fbeb74916d2b9
MD5 8378399a4eee9d2d10c5c0b1dabb2338
BLAKE2b-256 f4dd97f54674972ed63557ebb9498ab0b28c5025c19771a2308c831cb0913d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f4042e5760d78efa420ef81c996bed8722fcf92ec407478997b00f6d9891ddd
MD5 f63c8ad10c1fecd255af6f79b5ca6b0f
BLAKE2b-256 5ae0fd92d6f8b40918fe7f75c8c40aae4f70463d892aeda88c16c15e2bfe66a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e3116ae3b6eda8073018e9aa8254b39cfb68124d7572f3ce8d3df4f527b6d71
MD5 b09623a1b6797bdeb8af4f3e61f610a6
BLAKE2b-256 5ce8d7b564bef3a92964dcf3e5d0a13203ae9006b79b9cd3cd41139753f80986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7a20f074a5dba85c736e081f345525fb51ab1480a56922367fe249dfc26f0b6
MD5 71c8aaf368ba6e33c83154d206e91b6e
BLAKE2b-256 4eeafdb1ab9d3886d7a920e49c609e4388c20b98115951239f46e643fffe1ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b740de8c35bd8a9feee503de90412c75a74f3a2f3a1b048a1b519e9a8d58d1e1
MD5 ca530cae3d0200e74ed0908bbf98fc5a
BLAKE2b-256 70ee63aa85fa76391fcbea734a833ce1417abb550f7f3da59c84a57037e817f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6453f538621d5308a2cea900647a62e416a5d81b2b79df0c45f45129630855b
MD5 76fa741623ddcb86a6040296cef15f00
BLAKE2b-256 3f47bf5a9510b6a179b7929cf332b6031f81060ebdd01a2d5c05b022ae6b322b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f77fe6ce719a8722e8f44b7db0d7af008d00b2773d6ad65ec71f8434229345b3
MD5 c5cbeb7d66161645de84992b11b19b5f
BLAKE2b-256 9a22aad3b61236014d16a42d50a2dd3699710afc18f37e0d32eb4af3d154e10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 876f82acfc449b9ce51c1685cae5bdf5623f2bdd6bb20c91a9f0c1ac5396108d
MD5 b53bfbcde395fc2f1b53cb6d7e60a1f3
BLAKE2b-256 9258613045cc260873cc61d93009ec80f5b17a5332cd98fe65aeba25f0c83e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8bfdf62faf6e56fa1e07f432d3c9b9aa37dd851db52fbfba3ace1fef9d8e0c2
MD5 4452504620902e69b684f5c67d5ab289
BLAKE2b-256 eae95da88454b49bb53fd292a36d445d0777c7633399a0f68dcb978d7f26c947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0fe62bc20dd60ee586222cbee47ba8dc3c6259baf165cc2ad7bd9e9a1af688e
MD5 8be58cb12c41ba2a432fe287b82fedbc
BLAKE2b-256 6666adfa2f81eb90e190737637b66234d6dd668d85568e6e59c0d5e6dcb8308a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86b5cc89e68a671019d8b3b00b1c125fa9f791d21b20af2b0c476c70b7045041
MD5 77e9723dbf4f24cc972b44f2d1d07a1f
BLAKE2b-256 648b3e65537fef6134144ec997610265a6fa1044a38c9d1c2f08794bf9a9e49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 803258802a09fa53723f5bc7fe1df1afd4f006b31efc6e52307185112d02b30f
MD5 6550bf7769de0f752a9874c08068db1e
BLAKE2b-256 1ab929ffb3672782751c3733244b2a2cdbd58a429c31c360247f9c6cf2976267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3e0c786cecb16988030d29066c817db78110c4d435f5529a2f465f083afb28c
MD5 ddee1c7b809a0846b74c0c3a26c93fc0
BLAKE2b-256 ce731ae9acca0a50d5a2a97fb6d2c4a99667976ae0db295721f68243ce6c4aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca0cbb0e0f057fd6783bb16892e51987037507346c885e32004366faee01311f
MD5 887a28d47c7842a6c3a173bb182d5387
BLAKE2b-256 edafd6300c85359823231229c7b1ffd8ded2f1deb18b4ad0098e082b35e9ad22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ddcee9bebf94f502e7097e27e8944978770510dce1b40f0982f04e38a63edb3
MD5 d6b99dae50a573bb98b6668733b009ec
BLAKE2b-256 216d99d781f5fd114937471819a6787db95ae333776d0ed5e728e3514709a5d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db14270d86fd8a574826565eebee75b61ed3b681ad6da803ac2fb9514f532119
MD5 4b35443769e896b4b664bca108cbdded
BLAKE2b-256 0c70a88a84c62f137625a5a36ecbbcc659a652f7bf1fbad2e954225dda9ad742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86988bac0ef778889f9f3a819b083dc7b40551d07502e54c449c98054066e251
MD5 eda78eb0f09bd149e03a09923087ec2a
BLAKE2b-256 5fa9ec48e5fccc819ea8fe6a70805070f237b4d8e166f914d7964211283280cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43405f1597e966120dc3a8eac00ea8c47e92e18a1b745223dea553beea58343c
MD5 18ab72a6542545a9dbcadfbfbcd31467
BLAKE2b-256 a6b8c9bef364247fc13f6bf27dda0e0700396d1124d8ee0447da020a3878b525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b11885d9ddbdd2e8a5fe8cf2c17e0a86e9f8848fe472e00cb823b27490669099
MD5 0c9a9fad346743d02df3f2e6837e7706
BLAKE2b-256 52cfc185c28371d4d03ba560daed026ef641d6cb2d952e1771d4b4d6d6c29421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89a7b259b5b7b6cb00946646676630002500469f46692fd07ebfad6cb4ce69bc
MD5 cd291bdf2c6c6a1e58beddbadf10b8d7
BLAKE2b-256 dc12df4746edbcd82575c9ba7b3a4fde988b01529d76729a442061eeb56d58bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for autosar_data-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc3c6c12abaafc2d1a6a83acaad0f40d45a138b6d3ebd90adf1b53c2d8e5ee46
MD5 a0a35c7b2ab3995406db39fdc9c5cf0f
BLAKE2b-256 edf4ccbcb592d362725a0b077d2a4f4101cc1231798cdf1f98cb841e89257de5

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