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.347.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.347-cp315-cp315-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.15Windows ARM64

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

Uploaded CPython 3.15Windows x86-64

pya2ldb-1.0.347-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.347-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.347-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pya2ldb-1.0.347-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.347-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.347-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pya2ldb-1.0.347-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.347-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.347-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pya2ldb-1.0.347-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.347-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.347-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pya2ldb-1.0.347-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.347-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.347-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

pya2ldb-1.0.347-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.347-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.347-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.347.tar.gz.

File metadata

  • Download URL: pya2ldb-1.0.347.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.347.tar.gz
Algorithm Hash digest
SHA256 f8f60363f4acb5febd3ce8b04fb9262f47e5edb02b65e18565f663b01dfef6e1
MD5 081111f1da09eb8b75134935174b443e
BLAKE2b-256 182b4c6c1c826104b505eeebbeec5fbd5613ba0a74df6becc5a8ad4bcef94753

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347.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.347-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 c10670d94f8659a1a26f3696de15b8e378a77ed4edffb93e9f35de07a2516ba0
MD5 b3ae8e003f468b1ca0db29fa2fe333f0
BLAKE2b-256 cefbe307282196450992f75af003f60214c3236f57666fc0dc33a09959dd8a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 5c523b8934eac5e38f8f15219c92441646b555be5f5ea1b2c868b5fb89d9ce8c
MD5 6bde832cfac76790fd618fd54febdcce
BLAKE2b-256 6dc7de91b2701ea5f10a96cc19630d2b954fa187afa99467a0e3dfb3651dd5a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71a689ee9200b907eb81e433dda339d43c069e95109b402813f56e0895989eab
MD5 05ccf518a00c8c2efd5622525f0366f9
BLAKE2b-256 2634a27f7800916bfbffb9c28d88d6d2d0a7ba96cff031a93e5bfc603e520803

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bff3ff7135db8b836aa4a6ceed9d1fc90c1aec6fe3ccfcb9e3f5474cf4c53b0
MD5 68ff9e080becddf4175b5b75c2e93ae6
BLAKE2b-256 49e7259280ff4fd19b2f61d0886591debf5e2a43078878694d3326bb864c114a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07e85685e7b5bd9414a149654f91127eb8e8b07e7ef26755418b0572e673ac9b
MD5 f0169a67431860998cb1cb4200ebbaff
BLAKE2b-256 d88912933c413972ebe7922e2eb89c5e041453a933185f9723aa8647b6239363

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0391782cb742c23f46c4b6d1cdc1be017795c9755e5db1327625b38b3248c41e
MD5 7dc38c8dbef2cf454338f7bff697fc60
BLAKE2b-256 a561289685efdd1b4a7f07918b94459e8d63f4c62660a11e6689fd66d43282e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c94223f5cf0e680a5d75c0893caec033bc422e0e304a818877917b91fff1b470
MD5 43ce88a3c341c7dfad278189ebb4c154
BLAKE2b-256 f3defa3c79f9359713d217b5ecfca039d5373fd63a37429805e77fa19e621d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0873c4523a69eced53804e932af70b54ae6b85241bd29773f6c89982d8c498fa
MD5 52789ba3a04193428378d9f244c8c3aa
BLAKE2b-256 81e2f142a918274eb9be70e10d671498e4e57c8210ff40bb28fcba591d8a7eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67d0c8d7d1941438a24d061d5fc71923a51cb17ff51011f31937d7f042837d32
MD5 2ab47ebfcfdb72bd853ff18401a17dfa
BLAKE2b-256 05455c3ff73e31ae9040cc4454ccb6d1b2c15a6ce049fb6b8e20845c03d2ea2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 113d002ea695ebfb07acc2dbf57d36d6391f341c905ace01e9ff1a7978159ad6
MD5 71e2be007888f778f79c0ffab04674de
BLAKE2b-256 1699f8e14a82ed8adc42b3cbfbddf6dbdaab0be18502497fdebb85224bf553fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5056bf62a3cd62a9b79c58c547e7c6b3f96a2856d2938112ae0a73a8334420d5
MD5 cc7973ba48172c6a3d1b52e25b9b2f47
BLAKE2b-256 e0f071206ba87719a22afe973bf117759483e204ab4416d10fb46d886786ef1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b2e6e045b622daad49a4266e371c7bc76bf356a72d698343c29b8ce1afdf1e53
MD5 93053a074b409e898e31a57f5cd38815
BLAKE2b-256 e1c15dba296d6b6b4c9c77a825c3c32e35c2ffc1dc870074efad71fef722bef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5578c15940c659362ec3606e342a3bcee487772c5b9b92dece8e279a7b3772c3
MD5 53692a34a222bb591455699ccc5b72f8
BLAKE2b-256 f93f0b541fc24c3df2eb6b9e74387d02276496fc8a7c2bf11c14f9583bf007a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53281b5348ef025f746d670f5fb31cd941ee673d233a0cf4d93c838ce1159db3
MD5 4583751a14365cd688f6c295d8d57a33
BLAKE2b-256 ba4cb3665e0980f320d4ade4a9a2f1aa7698f05ba36d112cea0190f9b686b6d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b361761832e897a70a358bed9f70e31abfb1dd92fdd41b46b64ee8ec77742b51
MD5 8ec72c328dff741ccc5d67b06dfc55be
BLAKE2b-256 3a0abc2bdd67b129a4e67efa9c3ff2335a294ab56aeaf01b235cf0703d08541d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 db17131fe906e6a908e0cc7e442a8772e022bc1574a185c8f27219aff5b4a44e
MD5 a209aa687c5cbd1d1ef4c0a069d0d6a1
BLAKE2b-256 7d112d1526e20f6504ffac008f946b2735e036b43f4f47d8cc0608ef396f907c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f5c021366c067c2209f367c624a5b32bf40eddf45246c3b6df9ced4efc7be97d
MD5 b276b3ac8db0cf65eebec79c75524982
BLAKE2b-256 252a0a726b79f4872e6eb486ed5acc1f5c74d6fa3654bad68c42de5ddaa9bf8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 204778194e0b40accc6251df2e20e0c412994400c6988205d4d4ae186d4d3932
MD5 df2d262cef7eaf1f1eeae940d55fc4dd
BLAKE2b-256 3042d13a3832b539a3964718fff7ac957dea2d7056606a7142a8b45afe0131ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36493e3ab4f3b835c08cb1f47a80cd895ac44bcb46c5f27e7825d8f87df7ef5e
MD5 24f84ecdbda986ede0f5b5df5bf6352c
BLAKE2b-256 14467d20c0c108af042f468eb5205780a900fb7827209ff2483b1a4ddf97c060

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ae8dead32279db4541ef0f3c6a4327a42c32f6a89e73005e7e90c941890c0b6
MD5 ff2e52d93bdb24aab01108331a99a66b
BLAKE2b-256 eb0dff489e8fe5093aa4839849f6728cd6ba82c663c15ab81ab1207700d8b6a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6ad28e963be9689d952b98adcd6ea9a142a2dbc9cb8748d08b58fdc67a652a41
MD5 7bca12bb9e98665b98c9408fa01c864c
BLAKE2b-256 c03897fca490548721734d010fe3d577d1b6986bf907d188d7ce74a2e4e907a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 786a71b883f1c889cbacddff34a62f25ee2d01e4efc851570c314071de023aec
MD5 6937e292de6a01c96298640cc8e56057
BLAKE2b-256 4981d2506d5173146b4720642df1287d942fc8102e023609615b713557c7fb16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e713a6921ae02b49a3531d79260f183308887f67ccce899850a2308f4c5eec4e
MD5 f7c3daf6ce462a854f7277af17f6df58
BLAKE2b-256 31d1ee7ec8bc5fa3ef19206341a6d19a0d35463cab1311625a412878af204801

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d49809f46e71abdbbe1b8fdc5dc51633af70dfefec0b75f71b5cc6e8d1b2d392
MD5 50a1400ddbf2b092ff11a02f0a2066f7
BLAKE2b-256 dc477d891d0e64a6ecd13a5b4afbdf064f1818b12359fc312c7f8a861dc9057e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d26ce69e6ecfb61fef00864e2026af91e98e42c8b5612cbd8112f2a6d3ced276
MD5 ba2acce5cf11253c6ba251f9f2608c6a
BLAKE2b-256 b7d893a9a6979e8ec662136f0c5219e018e18bf3fc2814e8d49e00387527a675

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d6f5a707e8f93cbfff6d8b2707c941a1646da85c68d8a0a5691ce9d3df85c2d9
MD5 5c6cc445bb8beace3cae40dfcd7992b5
BLAKE2b-256 c11203f0917d9b681469d8982e7ed25f546a4cefaedfa80e318b8f1416aa3819

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pya2ldb-1.0.347-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.347-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f0fe05299fea2a9d2a649ce71f697401fe27d44370cf9dec242f70d66bbf7e2
MD5 d28859890c346e0927056a8ea53937ef
BLAKE2b-256 c455b406aca97e2e8930c21d57017986cecf26fb99b57e45b36322df9a4cb697

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c90761f62e88a490615fe57cd72288393134b2b2bb006476d5fa07143166de1f
MD5 c0236500d163d4eefa882ecad4f48d6c
BLAKE2b-256 bfaf4946d4a9b677deb58cb45287df1d72f097d0a5c076fad552c53bf753e5ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 652ccf9c466c7133744d33d4e019503c54471587299c7574b733c7950964c106
MD5 0bad7235ebdd472b8079c1c4cd5cd540
BLAKE2b-256 47d82330ef8e2c4832a5e943cd36d1e244c4fe1d1ec028f87fb87ea6245255e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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.347-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pya2ldb-1.0.347-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7345a0b25eb84b832339e7a1fa707f429b0c80e1aab91907253d797b7fc472c7
MD5 cdeba1097ddba573aeda59162043b1ee
BLAKE2b-256 c37c78cd805ae47b4f53ebbd779ede1369dee01b522b92316a4b569ffe595364

See more details on using hashes here.

Provenance

The following attestation bundles were made for pya2ldb-1.0.347-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

1.0.348

31 files

This release

1.0.347 This release

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