Skip to main content

Vehicle description file handling for Python

Project description

pyDBC

Build status Maintainability Build Status

GPL License

pyDBC is a library for creating and editing automotive network description files, including:

  • DBC (CAN Database) files for CAN bus systems
  • LDF (LIN Description File) for LIN networks
  • NCF (Network Configuration File) for vehicle network configurations

Installation

pyDBC is hosted on Github, get the latest release: https://github.com/christoph2/pydbc

Using Poetry (recommended)

This project uses Poetry for dependency management and packaging. If you don't have Poetry installed, you can install it by following the instructions on the Poetry website.

# Install the package
poetry install

# Run the tests
poetry run pytest

Requirements

  • Python >= 3.10
  • SQLAlchemy >= 2.0.0
  • Other dependencies are managed by Poetry

First steps

pyDBC provides high-level creational APIs for working with automotive network description files. These APIs make it easy to create and manipulate DBC, LDF, and NCF components.

Creating a CAN database (DBC)

from pydbc.api.dbc import DBCCreator

# Create a new DBC creator with an in-memory database
dbc = DBCCreator(":memory:")

# Create nodes (ECUs)
engine = dbc.create_node("Engine")
gateway = dbc.create_node("Gateway")

# Create a message
engine_data = dbc.create_message("EngineData", 100, 8, engine)

# Create signals
petrol_level = dbc.create_signal(
    "PetrolLevel", 8, byteorder=1, sign=1,
    formula_factor=1.0, formula_offset=0.0,
    minimum=0, maximum=255, unit="l"
)

# Add signals to messages
dbc.add_signal_to_message(engine_data, petrol_level, 24)

# Add signal receivers
dbc.add_node_as_receiver(petrol_level, gateway)

# Commit changes to the database
dbc.commit()

Creating a LIN network (LDF)

from pydbc.api.ldf import LDFCreator

# Create a new LDF creator with an in-memory database
ldf = LDFCreator(":memory:")

# Create a LIN network
network = ldf.create_network(
    "LINNetwork1",
    protocol_version="2.1",
    speed=19.2
)

# Create master and slave nodes
master = ldf.create_master_node("MasterECU", timebase=0.005, jitter=0.0001)
slave = ldf.create_slave_node("SlaveNode1", configured_NAD=1)

# Create signals and frames
signal = ldf.create_signal("MotorSpeed", signal_size=16, init_value=0, publisher=master)
frame = ldf.create_unconditional_frame("MasterFrame", frame_id=0x10, size=2, publisher=master)

# Add signals to frames
ldf.add_signal_to_frame(frame, signal, 0)

# Commit changes to the database
ldf.commit()

Creating a network configuration (NCF)

from pydbc.api.ncf import NCFCreator

# Create a new NCF creator with an in-memory database
ncf = NCFCreator(":memory:")

# Create a vehicle
vehicle = ncf.create_vehicle("TestVehicle")

# Create networks and ECUs
can_network = ncf.create_network("CANNetwork", protocol="CAN", speed=500)
engine_ecu = ncf.create_ecu("EngineECU")

# Add networks to vehicle
ncf.add_network_to_vehicle(vehicle, can_network)

# Add ECUs to vehicle
ncf.add_ecu_to_vehicle(vehicle, engine_ecu)

# Commit changes to the database
ncf.commit()

For more detailed examples, see the pydbc/examples/api_examples.py file.

Features

  • High-level creational APIs for DBC, LDF, and NCF components
  • SQLAlchemy-based database model for storing network configurations
  • Support for all major components of automotive network description files
  • Comprehensive examples demonstrating API usage

Documentation

The full documentation in GitHub‑Flavored Markdown is available in the docs/ folder:

License

GNU General Public License v2.0

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

pyvndb-1.0.122.tar.gz (179.2 kB view details)

Uploaded Source

Built Distributions

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

pyvndb-1.0.122-cp314-cp314-win_arm64.whl (688.1 kB view details)

Uploaded CPython 3.14Windows ARM64

pyvndb-1.0.122-cp314-cp314-win_amd64.whl (760.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pyvndb-1.0.122-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (860.0 kB view details)

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

pyvndb-1.0.122-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (751.5 kB view details)

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

pyvndb-1.0.122-cp314-cp314-macosx_11_0_arm64.whl (732.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyvndb-1.0.122-cp313-cp313-win_arm64.whl (671.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pyvndb-1.0.122-cp313-cp313-win_amd64.whl (740.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pyvndb-1.0.122-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (859.3 kB view details)

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

pyvndb-1.0.122-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (750.6 kB view details)

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

pyvndb-1.0.122-cp313-cp313-macosx_11_0_arm64.whl (731.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyvndb-1.0.122-cp312-cp312-win_arm64.whl (671.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pyvndb-1.0.122-cp312-cp312-win_amd64.whl (740.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pyvndb-1.0.122-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (859.3 kB view details)

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

pyvndb-1.0.122-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (750.8 kB view details)

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

pyvndb-1.0.122-cp312-cp312-macosx_11_0_arm64.whl (731.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyvndb-1.0.122-cp311-cp311-win_arm64.whl (680.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pyvndb-1.0.122-cp311-cp311-win_amd64.whl (735.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyvndb-1.0.122-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (852.2 kB view details)

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

pyvndb-1.0.122-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (746.4 kB view details)

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

pyvndb-1.0.122-cp311-cp311-macosx_11_0_arm64.whl (730.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyvndb-1.0.122-cp310-cp310-win_arm64.whl (677.7 kB view details)

Uploaded CPython 3.10Windows ARM64

pyvndb-1.0.122-cp310-cp310-win_amd64.whl (731.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyvndb-1.0.122-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (850.0 kB view details)

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

pyvndb-1.0.122-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (745.2 kB view details)

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

pyvndb-1.0.122-cp310-cp310-macosx_11_0_arm64.whl (724.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file pyvndb-1.0.122.tar.gz.

File metadata

  • Download URL: pyvndb-1.0.122.tar.gz
  • Upload date:
  • Size: 179.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122.tar.gz
Algorithm Hash digest
SHA256 940199192cdb60892ba6b955741e2ec1ee6a9d5b94f2466ce1e75e4d19f7bab8
MD5 f4d2d0d1961beff9696f03f69104c1a8
BLAKE2b-256 8a8d0b0331f46a1653637c641e730b2f2147475aee08a3267d9caa08269189e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122.tar.gz:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 688.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bdefd4d81890c9bb6a2dc5c66816cabe6ebcd9b59fc22bafb2a0f2548acb725b
MD5 7ca79383ee0f1660208ef01d99205e1e
BLAKE2b-256 08a55a6b36af18b7ceccb0c7fd11beb69b202302339acdd99159e0aaebf07ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp314-cp314-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 760.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b8d60e2ffcf3651bcf66125a86e9eb559bc215d561e18b54e85fb9706f4ebb86
MD5 33599627f48842f9532332d75612c0a6
BLAKE2b-256 24c0201ebc8262ca9a6955489cab344131676e7776b06655d074940086554537

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp314-cp314-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa32d350c95259b797a105bc04d6b697886241ded547b1acf644e3403fe8f2a8
MD5 87b7743c1908199ca217b01375e3d047
BLAKE2b-256 81d2747db8e5a530f424db95cec0bb5cbdd8be699e5a773f517edf67a545f48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c5cd193e33976cf2be3f2443320b8298d47068540b1d24cd44aa209eba40055
MD5 296f74e52a7e62a5aed545cc60b8074c
BLAKE2b-256 d22e38f1211ceb7d6af95aac3c50136635c3ef1131cfa94090b4686ae5b6f7c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c747c4a4fcb4308d019b1890201f43636418226f7e2cf20adb85fa1fee8b0cd
MD5 e9091db5bc716643ad81ce4f64a1c370
BLAKE2b-256 07a97fa1add978906999e2f610d52f9b653eaa15428da5d470df39bd5fd28e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 671.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e0d278637bb65524c3f49aca4ca1e184fa968f0417c4d09fe5bc69cd30cd359
MD5 3ed2f5655809fb45b1f44d3d53dba512
BLAKE2b-256 d590c8bae2e5ba328e02c214ee10a2150b2b066bd857dd1a3ab5fcc6b73ae5d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp313-cp313-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 740.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e612e9d3aa9d74e9d6be11de6452a133a34e6174991d485392fc3ae405a72ae6
MD5 037256e6ccab528cb14d16f95770f1a5
BLAKE2b-256 9db6dfc8b357ae8c7727936155e2dc41ccd7dce7afa8c0a7bb084296e9d995d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp313-cp313-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c45e725d3c36024f6aba897918361ddccb35ad2fb0136bab7fb9315970ff797
MD5 1320559e59ea3ca87fe628441964940c
BLAKE2b-256 d068e9c8471968b769f09d3fbe58d5b7ec971c57b5b0aaf0c87574ccb6e2bf47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 514c930be2404770f2701fbabeb2d2caeb351bca4ea78d90da7b9a36eeb8891d
MD5 019f0049dec3c0a5c94f32d8b5683747
BLAKE2b-256 4a246617296ca343428c21d947863df535c507605fdf31a51ff91701764d9d3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de65f350fbaeda7006443b00fc909e5d530c64fcc8e0f6b3ce3c9ee9323764ed
MD5 172ced4d65b2a25c2eec7c2032cd3427
BLAKE2b-256 43a55838dc09842f371e37ccbf5996c0ca58fe2474c2e3c7798cd2e624a6c2e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 671.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d9fdd8e9e781ea0b5c0e56802c1bd6f426ef050d908c76c337bccaea8eb0269a
MD5 b92a8e78bd9fb3ba9878fe36cd28d4ba
BLAKE2b-256 9fa15c73a9fed247e8d0f4eeaa1264ec9ea4addb4d3a44a368cec92ef8aeac02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp312-cp312-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 740.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1c669f7426316bbb41a8fe89889d0d1cad23c549e2fbbcde53d855c844c8299
MD5 7bc9ae54ebdb0d99a15f4a22ae0d3e17
BLAKE2b-256 1aedb646a2f376515203dae865faf5a689c76d39e3006ac1767aa82e7ba7008d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp312-cp312-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0f5fed927d892c99675b4202cda89539065298b5b8e95003756f73ac27d1c19
MD5 a55591cf3033ec4851a19369f40b2616
BLAKE2b-256 106f77cdc12ec1dd7eed1e0ec416fcfffd7581421bf2c85dd8777ce98059d6f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2ec1d576e9b46790259ad0eadeace3b4be8ba50300fb88691772fd15cffdd7b
MD5 a7104b5e6de9158d05e40510c6516a0e
BLAKE2b-256 94f958f206201bf8b02854b1de7bbfc1270be5cfab2af40236ebef9ada7f5935

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35794fb94e7e94609f22f32654449c9cb1a4a8e392528ac3d15a359e2d18d88f
MD5 8a34c73697231c468eda3b1ee92f6ff0
BLAKE2b-256 ab4023364d82c98c76e9522cf680a787da62a1935e9a21ea1b3c378052ebef63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 680.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f75fb497412253fc71e4ad962164119a1ca5b00d81b34ae2694c902a6e425686
MD5 2355c4c09bea7c5206ded1c36b5d6e78
BLAKE2b-256 f29bc5397d1e13be817becc308236c640e430efa67f41fd4c01e02b7c0332ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp311-cp311-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 735.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c9daa634e956ab08523bcdffc7ecf351c8c3e7ecc81c7e5fea96025906307976
MD5 958e2d072f38a5541f1bacf5c96af9b7
BLAKE2b-256 ab26ff3d49b770423be2d2902de66bbf3c37a6ed160ec242e0392e5df9686403

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp311-cp311-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35ed8ed82fa430e2cad2ace24120b7d9f18310f91b3650c3cf2d1ff3ffb2e5f3
MD5 885087ac74ea0b083191fa1e3f673c13
BLAKE2b-256 e6edf6bc304fd80515f5d12c45a0bf36372319ea65a88faf79cf215b6917ef77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 670aa66554e774a1d1518f0093571bbf464bcd7b13fbe8df9fdc3c36cab686b9
MD5 2ae9d15cc3b76235df6774f8a2713c6d
BLAKE2b-256 3bcdf0cafcd1a8b5d4a44104b846890d1ae4f1fe238f8b991d6c24fe4c68fbd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbb23b17fbc63481f6440f52776f3b391688b4bc1a8e5192585f85f0d6ac0ae6
MD5 29efb949101c698941e3361147b87aa3
BLAKE2b-256 5905cf9d4a15262712ded70e30a416e1c0c0538705678ea0f921ef791c428041

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 677.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2ba9f2471893aae3d215311d9fc486cd17cdabb58a3612e43be8e310394ac7ab
MD5 437bec9d3bc46a8aec6bdf808a35d02e
BLAKE2b-256 2f1c54c9b4db92244a12bdc97a520dde48a2f97c882baaa1ffcd24cc122eba64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp310-cp310-win_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.122-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 731.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.122-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57628a7fe00e5823e7a1c472e1b0c98a30b4552ddab51b75cef2ed38a811d502
MD5 a09533b9f0e34a6a2fd09e4d6eed444c
BLAKE2b-256 f3f9056cf7c36e5299d26a7ee44b3269c66e64c994806116dbbc6abfec2cd4b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp310-cp310-win_amd64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86249d39fa63c5a1bd5bb95b499be49518c247fd997c2526ff17d50058503d18
MD5 4ea074c1b9066bb021feb59d36428556
BLAKE2b-256 2fbb30e7208801378fa49980a87d1a84805b2c21d0dfa15a90e9684b1f86c3aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52f19948b9482920e1b12b5ef2470a5b6fb47b00b2c9323f9b4a50374e3457af
MD5 f916920e1d2a34417487bad4f77e52fb
BLAKE2b-256 1808adad296d48fbd0d34097b336fe68abd6183e2ac2232b49518fe1bf230fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

File details

Details for the file pyvndb-1.0.122-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.122-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe2f73b28383b2d598916034a343981eae9c38ac552adde90199670c35aaa20e
MD5 356315c3336548820efe18de163bbc84
BLAKE2b-256 fc8c99a2f52c408f49cbbef30351464a239a87cdbe13d0786f356fca15abe771

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.122-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pythonapp.yml on christoph2/pydbc

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

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