Skip to main content

PyPI Python Versions License: LGPL v3+ Code style: black Ask DeepWiki PDF Manual

pya2l_social.jpg

pyA2L is an ASAM MCD-2MC processing library written in Python.

If you work with ECUs, ASAP2/A2L is the contract that describes what and how to measure or calibrate. pyA2L helps you parse once, inspect and validate programmatically, automate checks, and export back when needed — all from Python.

Contents

  • About ASAM MCD-2 MC (ASAP2)

  • What pyA2L offers

  • Installation

  • Getting Started (Quickstart)

  • Command-line usage

  • Tips

  • Examples

  • Compatibility

  • Project links

  • Contributing

  • Code of Conduct

  • License

  • Changelog / Release notes

  • Acknowledgements

About ASAM MCD-2 MC (ASAP2)

ASAM MCD-2 MC (ASAP2) is the ASAM standard that defines the A2L description format for ECU measurement signals and calibration parameters. In practice, the A2L acts as a contract between ECU software and tools so different vendors can consistently locate data in memory and convert raw values into physical engineering units. Runtime transport (e.g., CCP/XCP) is out of scope of the standard.

For an authoritative overview of the standard, see the ASAM page: https://www.asam.net/standards/detail/mcd-2-mc/

What pyA2L offers

  • Parse .a2l files and persist them as compact, queryable SQLite databases (.a2ldb) to avoid repeated parse costs.

  • Programmatic access to ASAP2 entities via SQLAlchemy ORM models (MODULE, MEASUREMENT, CHARACTERISTIC, AXIS_DESCR, RECORD_LAYOUT, COMPU_METHOD/COMPU_TAB, UNIT, FUNCTION, GROUP, VARIANT_CODING, etc.).

  • Rich inspection helpers in pya2l.api.inspect (e.g., Characteristic, Measurement, AxisDescr, ModPar, ModCommon) to compute shapes, axis info, allocated memory, conversions, and more.

  • Creator API in pya2l.api.create to programmatically build or augment A2L content (PROJECT, MODULE, MEASUREMENT, CHARACTERISTIC, COMPU_METHOD, AXIS_PTS, RECORD_LAYOUT, GROUP, FUNCTION, etc.).

  • Validation utilities (pya2l.api.validate) to check common ASAP2 rules and project-specific consistency.

  • Export .a2ldb content back to A2L text or JSON when needed.

  • Building blocks for automation: reporting, quality gates, CI checks, and integration with CCP/XCP workflows.

Supported ASAP2 version: 1.7.1

Why pyA2L?

  • Parse once, query fast: Avoid repeated parser runs by working from SQLite.

  • Powerful model: Use SQLAlchemy ORM to navigate ASAP2 entities naturally.

  • Beyond parsing: Inspect derived properties, validate consistency, and export back to A2L.

  • Automate: Integrate with CI to enforce quality gates on A2L content.

Design highlights

  • SQLite-backed storage (.a2ldb) with SQLAlchemy models

  • C++ parser (ANTLR4-based) for fast parsing (2.5 MB/s)

  • Adaptive flush strategy automatically tunes performance (10% speedup for large files)

  • High-level inspection helpers in pya2l.api.inspect

  • Creator API in pya2l.api.create for programmatic A2L generation

  • Validator framework in pya2l.api.validate yielding structured diagnostics

  • Export to A2L text or JSON format with complete roundtrip fidelity

  • Optional CLI (a2ldb-imex) for import/export tasks

  • Concurrent access via SQLite WAL mode (multiple readers during export)

Learn more about the standard at the ASAM website: https://www.asam.net/standards/detail/mcd-2-mc/wiki/

Installation

  • Via pip: shell $ pip install pya2ldb IMPORTANT: Package-name is pya2ldb NOT pya2l!!!

  • From Github:

Getting Started (Quickstart)

Parse once, work from SQLite thereafter.

Import a .a2l file and persist it as .a2ldb (SQLite):

from pya2l import import_a2l

session = import_a2l(
    "ASAP2_Demo_V161.a2l",
    # Optional:
    # encoding="utf-8",        # default is latin-1
    # progress_bar=False,      # silence the progress meter
    # loglevel="ERROR",        # also suppresses progress
    # force_overwrite=True,    # overwrite existing .a2ldb without prompting
)
# Creates ASAP2_Demo_V161.a2ldb in the working directory
  • Open an existing .a2ldb without re-parsing:

from pya2l import open_existing

session = open_existing("ASAP2_Demo_V161")  # extension .a2ldb is implied

Query with SQLAlchemy ORM - List all measurements ordered by name with address and data type:

from pya2l import open_existing
import pya2l.model as model

session = open_existing("ASAP2_Demo_V161")
measurements = (
    session.query(model.Measurement)
    .order_by(model.Measurement.name)
    .all()
)
for m in measurements:
    print(f"{m.name:48} {m.datatype:12} 0x{m.ecu_address.address:08x}")

High-level inspection helpers - Use convenience wrappers from pya2l.api.inspect to access derived info:

from pya2l import open_existing
from pya2l.api.inspect import Characteristic, Measurement, AxisDescr

session = open_existing("ASAP2_Demo_V161")
ch = Characteristic(session, "ASAM.C.MAP.UBYTE.IDENTICAL")
print("shape:", ch.dim().shape)
print("element size:", ch.fnc_element_size(), "bytes")
print("num axes:", ch.num_axes())

me = Measurement(session, "ASAM.M.SCALAR.UBYTE.IDENTICAL")
print("is virtual:", me.is_virtual())

axis = ch.axisDescription("X")
print("axis info:", axis.axisDescription("X"))

Create A2L content programmatically - Use the Creator API to build or augment A2L databases:

from pya2l import open_create
from pya2l.api.create import (
    ProjectCreator, ModuleCreator, MeasurementCreator,
    CharacteristicCreator, CompuMethodCreator
)

session = open_create("MyProject.a2ldb")

# Create project and module
pc = ProjectCreator(session)
project = pc.create_project("MyProject", "Demo ECU Project")

mc = ModuleCreator(session)
module = mc.create_module("MyModule", "Demo Module", project=project)

# Add a conversion method
cmc = CompuMethodCreator(session)
cm = cmc.create_compu_method(
    "CM_Voltage", "Voltage conversion", "LINEAR",
    "%6.3", "V", module_name="MyModule"
)
cmc.add_coeffs_linear(cm, offset=0.0, factor=0.01)  # y = 0.01*x + 0

# Add a measurement
mec = MeasurementCreator(session)
meas = mec.create_measurement(
    "BatteryVoltage", "Battery voltage in Volts",
    "UWORD", "CM_Voltage", resolution=1, accuracy=0.1,
    lower_limit=0.0, upper_limit=20.0,
    module_name="MyModule"
)
mec.add_ecu_address(meas, 0x1000)

# Add a characteristic (calibration parameter)
cc = CharacteristicCreator(session)
char = cc.create_characteristic(
    "InjectionMap", "Fuel injection map",
    "MAP", 0x2000, "RL_InjMap", 0.0, "CM_Voltage",
    0.0, 100.0, module_name="MyModule"
)

mc.commit()
db.close()

Validate your database

from pya2l import open_existing
from pya2l.api.validate import Validator

session = open_existing("ASAP2_Demo_V161")
vd = Validator(session)
for msg in vd():  # iterate diagnostics
    # msg has fields: type (Level), category (Category), diag_code (Diagnostics), text (str)
    print(msg.type.name, msg.category.name, msg.diag_code.name, "-", msg.text)

Export back to A2L or JSON

from pya2l import export_a2l

# Export to A2L text format
export_a2l("ASAP2_Demo_V161", "exported.a2l")

# Or export to JSON for further processing
from pya2l.imex.json_exporter import export_json
export_json("ASAP2_Demo_V161.a2ldb", "exported.json")

Tips

  • Default import encoding is latin-1; override encoding= if your file differs.

  • Silence the progress meter via progress_bar=False or loglevel="ERROR".

  • Python package name is pya2ldb (not pya2l).

  • See howto for Excel export and other short recipes.

Examples

  • See pya2l/examples for sample A2L files and scripts.

  • The Sphinx docs contain a fuller tutorial and HOWTO guides.

Create API and coverage parity

pyA2L offers a Creator API in pya2l.api.create to programmatically build or augment A2L content. The project’s goal is coverage parity: everything you can query via pya2l.api.inspect is intended to be creatable via pya2l.api.create.

Example: creating common entities

from pya2l import open_create
from pya2l.api.create import ModuleCreator
from pya2l.api.inspect import Module

# Open or create a database
session = open_create("MyProject.a2l")  # or .a2ldb

mc = ModuleCreator(session)
# Create a module
mod = mc.create_module("DEMO", "Demo ECU module")

# Units and conversions
temp_unit = mc.add_unit(mod, name="degC", long_identifier="Celsius",
                        display="°C", type_str="TEMPERATURE")
ct = mc.add_compu_tab(mod, name="TAB_NOINTP_DEMO", long_identifier="Demo Tab",
                      conversion_type="TAB_NOINTP",
                      pairs=[(0, 0.0), (100, 1.0)], default_numeric=0.0)

# Frames and transformers
fr = mc.add_frame(mod, name="FRAME1", long_identifier="Demo frame",
                  scaling_unit=1, rate=10, measurements=["ENGINE_SPEED"])
tr = mc.add_transformer(mod, name="TR1", version="1.0",
                        executable32="tr32.dll", executable64="tr64.dll",
                        timeout=1000, trigger="ON_CHANGE", inverse="NONE",
                        in_objects=["ENGINE_SPEED"], out_objects=["SPEED_PHYS"])

# Typedefs and instances
ts = mc.add_typedef_structure(mod, name="TSig", long_identifier="Signal",
                              size=8)
mc.add_structure_component(ts, name="raw", typedefName="UWORD", addressOffset=0)
inst = mc.add_instance(mod, name="S1", long_identifier="Inst of TSig",
                       type_name="TSig", address=0x1000)

# Verify with inspect helpers
mi = Module(session)
print("#frames:", len(list(mi.frame.query())))
print("#compu tabs:", len(list(mi.compu_tab.query())))

See pya2l/examples/create_quickstart.py for a more complete example.

Command-line usage

A small CLI is provided as a console script named a2ldb-imex:

# Show version (exit 0)
$ a2ldb-imex -V

# Import an A2L (creates .a2ldb next to the input or in CWD with -L)
$ a2ldb-imex -i path/to/file.a2l

# Import with explicit encoding and create DB in current directory
$ a2ldb-imex -i path/to/file.a2l -E latin-1 -L

# Overwrite existing .a2ldb without prompting
$ a2ldb-imex -i path/to/file.a2l -f

# Suppress all output (useful in scripts/CI)
$ a2ldb-imex -i path/to/file.a2l -q

# Export an .a2ldb back to A2L text (stdout by default or -o file)
$ a2ldb-imex -e path/to/file.a2ldb -o exported.a2l

Compatibility

  • Python: 3.10 – 3.14

  • Platforms: Prebuilt wheels are published for selected platforms. From source, Windows/macOS are supported; Linux may require building native extensions.

Contributing

Contributions are welcome! Please open an issue to discuss significant changes before submitting a PR. See the existing tests under pya2l/tests and examples under pya2l/examples to get started. Contributors should use pre-commit to run formatting and lint checks before committing; see https://pre-commit.com/ for installation and usage.

Code of Conduct

This project follows a Code of Conduct to foster an open and welcoming community. Please read and abide by it when interacting in issues, discussions, and pull requests.

See CODE_OF_CONDUCT for full details.

Changelog / Release notes

See GitHub Releases: https://github.com/christoph2/pyA2L/releases

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pya2ldb-1.0.348.tar.gz (16.4 MB view details)

Uploaded Source

Built Distributions

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

pya2ldb-1.0.348-cp315-cp315-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.15Windows ARM64

pya2ldb-1.0.348-cp315-cp315-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.15Windows x86-64

pya2ldb-1.0.348-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pya2ldb-1.0.348-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pya2ldb-1.0.348-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pya2ldb-1.0.348-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

pya2ldb-1.0.348-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pya2ldb-1.0.348-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pya2ldb-1.0.348-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pya2ldb-1.0.348-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pya2ldb-1.0.348-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

pya2ldb-1.0.348-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pya2ldb-1.0.348-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pya2ldb-1.0.348-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pya2ldb-1.0.348-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pya2ldb-1.0.348-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

pya2ldb-1.0.348-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pya2ldb-1.0.348-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pya2ldb-1.0.348-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pya2ldb-1.0.348-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pya2ldb-1.0.348-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

pya2ldb-1.0.348-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pya2ldb-1.0.348-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pya2ldb-1.0.348-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pya2ldb-1.0.348-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pya2ldb-1.0.348-cp310-cp310-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows ARM64

pya2ldb-1.0.348-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pya2ldb-1.0.348-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pya2ldb-1.0.348-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pya2ldb-1.0.348-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file pya2ldb-1.0.348.tar.gz.

File metadata

  • Download URL: pya2ldb-1.0.348.tar.gz
  • Upload date:
  • Size: 16.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348.tar.gz
Algorithm Hash digest
SHA256 b6a9dc1852c855ab75465d3ceca595ac6d73b9abbdf5c0119b4551594a37592c
MD5 ecd53dec531985e3315ad94a3f3cc0af
BLAKE2b-256 9961025303588065cf6b68c5a0c226c725cfb40be3918988b2fe5862f14bab82

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348.tar.gz:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 13de9c1274f1692a3734dbad973b31c144fcdb583e7af3f750f7ca1ef32be778
MD5 3a3f48842cf427b9e9edea70e0106141
BLAKE2b-256 c268160c2218e797f5bf2f623878cfe54a02525acc98777b14a98afc1e00fc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp315-cp315-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 0d9d0af3c9ccfc6f9e21f4b80b79f823578aca10f5976040b046c5121f28cd06
MD5 4098e3f753477c4a7a45916108999242
BLAKE2b-256 9842f75e2c6d0dbd9408e6baefba44a09537e23cb205854a22aa3088c2637640

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp315-cp315-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 279ef1ef2183ac9cc82e0c83d60cd8954a3f4eda417ee98a033a359709a11988
MD5 a7a62c1c17393b46485542462d066a9d
BLAKE2b-256 0f12c195b8f48be9b678a7e308e220af5f9142beec86a680d87b866419c4be31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1880293a4148f6213c21f33786e0720ac6b2c67067dc5fcd3e99809c3ee63c2
MD5 750c5c8ffa826388df82ab8a9450017c
BLAKE2b-256 00b62dce41e85fb3d05568bdbc2c442e887e09707148273e78814afe9085e75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b6015c91215615da76b461aa6795675ca205c6e8385583b6e924a05afd3984a
MD5 e770d362179bb76cfcb162690e8e5dd5
BLAKE2b-256 3f18dd22a4d99fff59c4b09a83c07b080a25bb555ec66f2e3c9f89cc6a097e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e8cd59b050cbd3e69e6ac41ec678ca9d03d6b80c7a52995fb945fa8a79df66df
MD5 e5a037557614191f3deaf95f49712dbc
BLAKE2b-256 4c429606c93538f6c3b9b55dddb85403b85868e40ce904dd2d140ed39e67789a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp314-cp314-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ff0e6370f01c680ba6973af842f9e0fff600ce63b183f3a2ba6f75a040f95d26
MD5 3d4f092f3f5755141eff837409eb5efd
BLAKE2b-256 b673e9ea359ef3429b2905d2e8676dd183d5cc5b5309b567288812eb1cdf2b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp314-cp314-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6365fe41985a2983c343501871cb2889e85f5a8b859149aa377c8d999636810e
MD5 c003e417d6f3ab01d4a5d2f172c5dfb8
BLAKE2b-256 d17b137e58c2115ae4e2fb7855d3ed3c0c323e7a43d012e5c872acc6f42549d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2344e4a0dd0689011f9615b565909478b2f95a14404cf209719ca668e180d36b
MD5 d7e279000b1398ff28b7bf801fc1ab8f
BLAKE2b-256 2fa7bb26940c9cf7348938e0112b3b0175d600129e549462ee1673f4b20edb9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f5b4ff653ca0858e63422c269e8dcf1c4f7a1cafdf7066c6a359b2dd806df8
MD5 65d0352893777d797b6feec7d80919bd
BLAKE2b-256 1e6a10f093262417ac6b445d75ba1166a46f54cccdd144181e9e1dca9f3a2a1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0bccef7ec7f20780009b3ba38a743b5a74b2b9b483760cd52f804b957cbd20e1
MD5 3ee2888bb16bf1d6b9a03a969fb018da
BLAKE2b-256 d29d8e3b8d9a742e570b75de77e9228bf13c5c6349373e07c34df5dc936f4e5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp313-cp313-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8ce5f011dae62fb9173b953125d1e17bc38c3d339f7bee16bcbf51118ecf17a1
MD5 c06dbbb7894fb4fb35d5d2f0fcd38c5b
BLAKE2b-256 454476329a30f7b5b643a70d63c53122fef8603b1848ebe615933068f0f3963f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp313-cp313-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5fcdf6941efe54013f915d3f9c28e946bbc51a6b18541ca7394035a8554f186
MD5 ce0a367bc34fc0b7875fa1a71b3b6674
BLAKE2b-256 7a4a4923a64530f4bc010f9286e622c59f8c5ea6c08dc2142f084a8d59141016

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6d801bbbc8a432d9c8ef98ac68602b3e6c6de8886c5b98ea7eacd8a739a1108
MD5 4b4134700c264b4da0cfed16f9c66bbf
BLAKE2b-256 a7f29f2327084abd08ad8b27560cc3ee1efcdae6ed6be130598e1f302401abfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f817f90589ee0005492c045af4fcd1559ede60688667dd2e2b77b6caf66b0fec
MD5 0b1fc3855ccf00fc033d80acbff3baa5
BLAKE2b-256 b153bf2a32518486e566634528690d59edd5b8f428b91713f494e8ae202d45b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 17ad2d2281e3f01141576ec7218aa7423dcc656342b7dfc73cf2913fb33fa33c
MD5 0fbcf6c50df2dac369cb410fc99545a1
BLAKE2b-256 75eb6636aa88c57198fca1277789336419adbae0293326e6091e4c2fba816f01

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp312-cp312-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c1c672bb416a955bd8a8103a36b8b4b78ee87b7b589c5544d90c1f46fc04796
MD5 b48c1910880d2b45024898210f25d647
BLAKE2b-256 f7b5929ca487435b1dca7b0aa31c13ee2dfda314b1d03e30b6a5fbe280c144b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp312-cp312-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a20e38f292cc454d077b5b7e5a055fb122bc9cc60b6c1a781a49af83f8cd95af
MD5 797078ee74a38b948c1fe1d88532f2de
BLAKE2b-256 4240b0f07516746ad0d709cfceedca37823df395ffeb038f647e77e883f663f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 216adb67089a15e1bd23bac4940f2b84521c54ccf7fe87d1d4c90d2c5c9e6a47
MD5 4695e1fed6ca19e4d03f95f33b1f6c79
BLAKE2b-256 21596a8c9ec6ee93f175ff371874cc46d73bec5fa4b8398d9720bc00353691f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6ca0745184f5fe09a4dcea4d69ce0fb159dfc911b6bd57c1852a2768c837aeb
MD5 4213ac5276e75b5c5bf549e3724af358
BLAKE2b-256 7b634baaa49821366ff52d2fa05812afef2405ab366bf75c4ab12fdc2ed3ea57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a87d5405eabecbc4053d4f16026e863cda82d4caec08112325b984742168ae46
MD5 f26636203b78445a91c35df1eaa76d3e
BLAKE2b-256 47aec62a1e9c61be0de94db2b3bce5c71e27d9ab9a8f8071084378f5d8541aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp311-cp311-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be35af1823b3c6497f2abb50ce69901b12a76ec29f147d80ccae01e34b8867a7
MD5 89bf6cad860b0c6fc9f3480ba162ea8f
BLAKE2b-256 67d1c5cbb2152c35af09103d06a987c5c2ca373bbec6084df30f4fae461c8b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp311-cp311-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2216fe8931c03e660bf47c804c0bda8c9be60e83d6f997340952147878843378
MD5 50c62077e123b38606ad69f42e41c428
BLAKE2b-256 34184e4cdabffebbe5a1971833dda8acfc77cfce1d27de41f688b5be9f988d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f482b1e9e197b948e78f660baa3acfb0dfce0d4986cb1b7e2e97e82b30af42bf
MD5 c455f65f33dc22d7f3c72ce59e2b004b
BLAKE2b-256 9ccf41cc4538f71f813d0b4c3c485c35a7437bbd54aba61298d1f0351f2da25d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01bab64d1f59eea3d1d4059a6287b338b44cef2fbac99a79922411e974a6c516
MD5 dd07ebfd58978e1cee2f8bf906c16062
BLAKE2b-256 0a1eb214cb32aa6dfb2db428997fce5cb930b3fd43934dda88e455cb04c0f17e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e162c5555a60d4748894ab52bdf388e72a7d3b567dc0d270a27b2171f376f060
MD5 66ffd95fc1af07ef4b4ece3e39feba59
BLAKE2b-256 aa7e4447d55cfff00e9dba33a5fd52c94f896a540ad0a3214bb5e8e900efde73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp310-cp310-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.348-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pya2ldb-1.0.348-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3bba87f45f17e3713eae47dac41d5e06efd343a981010743cda21d5cd1d4def
MD5 dc4587123aa43ff788a13f8f0a64edeb
BLAKE2b-256 4f4c418270e7c1956fa8cf4f90a05fbc5d34ef11d2f4ce66d85a1089dfc8706d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp310-cp310-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e59cb43f0f0eaeb1876b387b436825c6e3d7c97f1e5567892887591a8403b26
MD5 580d0be62e4c8e6ec1358f5b6ceffe96
BLAKE2b-256 adcabb3f28ac3a28c6346edc761a67222535cd565dac7bb30315a838bd995b43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41223ccb2051c2a31e144dab171894902e425a12d2e890359b44fb0c8876fba4
MD5 0d19fe206e483eea47253f4153241dd3
BLAKE2b-256 bb21f1df0f948f25f1d8a65d17835f9d718f8ad81a411a488310b126cf564f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pya2ldb-1.0.348-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.348-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc5f899fdb93a37f89cc67c086d4b225482abf9800590e1e958c7f8076557341
MD5 d21ccc4fcf0ab3a8e1c14f043244280c
BLAKE2b-256 8049dceaf03c859ca660f2d12b7f9f1fdff57c5f959ecfcd6762019e86964720

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.348-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pyA2L

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.352

31 files

1.0.351

31 files

1.0.349

31 files

This release

1.0.348 This release

31 files

1.0.347

31 files

1.0.346

26 files

1.0.345

26 files

1.0.344

26 files

1.0.332

26 files

1.0.331

26 files

1.0.330

26 files

1.0.329

26 files

1.0.328

26 files

1.0.327

26 files

1.0.326

26 files

1.0.325

26 files

1.0.323

26 files

1.0.322

26 files

1.0.320

16 files

1.0.319

26 files

1.0.318

26 files

0.17.6

26 files

0.17.5

26 files

0.17.4

26 files

0.17.2

26 files

0.17.1

26 files

0.17.0

9 files

0.16.1

21 files

0.16.0

15 files

0.15.6

12 files

0.15.4

8 files

0.15.3

7 files

0.15.2

7 files

0.15.1

7 files

0.15.0

7 files

0.14.13

12 files

0.14.12

12 files

0.14.11

12 files

0.14.10

12 files

0.14.9

12 files

0.14.8

12 files

0.14.7

12 files

0.14.6

12 files

0.14.5

12 files

0.14.3

12 files

0.14.2

6 files

0.14.1

6 files

0.14.0

6 files

0.13.6

13 files

0.13.5

13 files

0.13.4

13 files

0.13.3

13 files

0.13.2

13 files

0.13.1

13 files

0.13.0

13 files

0.12.92

15 files

0.12.91

15 files

0.12.90

15 files

0.12.89

15 files

0.12.85

10 files

0.12.48

1 file

0.12.47

1 file

0.12.43

1 file

0.12.42

1 file

0.12.41

1 file

0.12.40

1 file

0.12.39

1 file

0.12.38

1 file

0.12.37

1 file

0.12.36

1 file

0.12.33

1 file

0.12.27

1 file

0.12.26

1 file

0.12.25

1 file

0.12.23

1 file

0.12.21

1 file

0.12.20

1 file

0.12.19

1 file

0.12.18

1 file

0.12.17

1 file

0.12.16

1 file

0.12.15

1 file

0.12.14

1 file

0.12.13

1 file

0.12.12

1 file

0.12.11

1 file

0.12.10

1 file

0.12.9

1 file

0.12.8

1 file

0.12.7

1 file

0.12.6

1 file

0.12.5

1 file

0.12.4

1 file

0.12.3

1 file

0.12.2

1 file

0.12.1

1 file

0.12.0

1 file

0.11.0

1 file

0.10.2

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page