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.120.tar.gz (189.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.120-cp314-cp314-win_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows ARM64

pyvndb-1.0.120-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pyvndb-1.0.120-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

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

pyvndb-1.0.120-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

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

pyvndb-1.0.120-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyvndb-1.0.120-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

pyvndb-1.0.120-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

pyvndb-1.0.120-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

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

pyvndb-1.0.120-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

pyvndb-1.0.120-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyvndb-1.0.120-cp312-cp312-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows ARM64

pyvndb-1.0.120-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyvndb-1.0.120-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

pyvndb-1.0.120-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pyvndb-1.0.120-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyvndb-1.0.120-cp311-cp311-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows ARM64

pyvndb-1.0.120-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyvndb-1.0.120-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pyvndb-1.0.120-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pyvndb-1.0.120-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyvndb-1.0.120-cp310-cp310-win_arm64.whl (758.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pyvndb-1.0.120-cp310-cp310-win_amd64.whl (810.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyvndb-1.0.120-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (992.1 kB view details)

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

pyvndb-1.0.120-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (868.4 kB view details)

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

pyvndb-1.0.120-cp310-cp310-macosx_11_0_arm64.whl (804.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyvndb-1.0.120.tar.gz
  • Upload date:
  • Size: 189.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.120.tar.gz
Algorithm Hash digest
SHA256 2bbe5b2b5ffbebf3ba5e76f818293d1d4dd23291e6b61e353e6f944c6963bd87
MD5 59105a3cb0366a89e966a07bbf5b34b9
BLAKE2b-256 a0fb3869eb4751c00a9075ce56569a1c69f736888640fa15e323509b069b5903

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120.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.120-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.9 MB
  • 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.120-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 662e77b9ae87d325427a562b141602f4c9998a35b7bc1fc3f057486a18502c79
MD5 3ed739485d83f493272a122d44e45c5a
BLAKE2b-256 e28460a53883b3643c03dfac89d83366598cbfa3b4916f59a3536c086727f805

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • 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.120-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8890562ef41921bf90caca61e2e6273b5ad3768000813fa0dc22ced868888726
MD5 834aed7bae2c03c2953b79fc30a4768b
BLAKE2b-256 d2677d229d3d349ac2d623f6d85d50a420a3796b6d19e33a54da2f3480da9af0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afbc477b66baf1b332e67d1ab96088e409269dcddc2cd40baabb5cbdd951deb0
MD5 2ce3bcf00e9f8b086e21a8b3a785d5ce
BLAKE2b-256 c0376ed4d218213919f199a8212baf8ba60e846f126e92d76a15e2be1388a460

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6f2e9dc72b877d399078a58b73f368e268554aed3a7acd9f87fcaf09f0fb8e3
MD5 26768dc2c730a7271fffc9639d1f31a3
BLAKE2b-256 79eb2382c2f55c36d3bf603e41321156d9f1faef904707c714427db409f32aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c37d8ab048e30d0571a712b60cc880cb0e82a0517256e08063fabdeaf79d0364
MD5 c18d0248cbc9737048c1b56c81dcd1b0
BLAKE2b-256 1f1a031a57c69a49de24158dc95cd2fd080c5ebc50647584be9ccbdd09a1e139

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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.120-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2c91fc5143accd6b77283332f64981a35a129dc36076b5454dfa176fa496cd6b
MD5 4b852a31d2620f8d4fcf7e371379719a
BLAKE2b-256 16cd309472159c4f87688f6baee746ad7b305c84cc65e77d0ed89c2b7a19c960

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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.120-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e1291d0d364c2831e27f1e5c908c43ee7f172e4b53f80a439f2d813426e4b79f
MD5 26175f202cd89f5f3df91c08e3ee8424
BLAKE2b-256 4d3f7e249846db225f878b8779f09f33e79c930814190b2c91ceea8ade9905b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5a3d75edf44519aa1ec8ace6f6f0c85041aa3b5209e4b5b6ca4bc2c3e21e8e6
MD5 2a673138d39b418feef39d49bc8b01a9
BLAKE2b-256 412004dd9b004363d400899ff06aa42335bca0d2cc733034d5b59c5e391d2275

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a69d2b27a51c0093380996e024d3a3aeea2031ee300c0e1240680e97fb8093e6
MD5 fc95995d29c5f7191e88662acd9bb671
BLAKE2b-256 23577874f1d7dd94c3b692ff0c8b27196e96681a2689a9e4133a5ba8acc46ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcf119f90e0dc699be4776253b038ba35e5d5b2223f18d1c10dc8d0d7f30575f
MD5 1451dab6bf74f40e3424bef80f8e3b33
BLAKE2b-256 646f49f2bb26206c9f5fe48c03e79ff2fb5b4a6ec38e8e5a2e560bfdd374bbcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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.120-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7e7556289a2fcd1e8a4b109bd4331e5d96067f45eacf1e87780e1d3b085e038c
MD5 705546c479cd84ce4f168c032f6e413b
BLAKE2b-256 c924d92bb52c3f5e51b45238812dfe724b95f2209c4d8b42f54c6fad9be194f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • 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.120-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a3383d1c4516717cef991e3fe2fd43c2a0f01a2cd0b8869ffa7f55b3253a1978
MD5 7a56dc24c86af21e5219e7c3252d88e7
BLAKE2b-256 2d5f454afaddfdbb588dcdb7ddab4b5e90323514bc9629e86057f044d8a6dca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7602874b3adcbdc04c6d7adc8a82d79d97fe68e5484e6297e054e76c04ebce0f
MD5 5e80b966212bdbd5640e0f1d2cceaa0f
BLAKE2b-256 5c91c19df6e1c9169c8a998e41559aa3cdf6c5b5e1ac36f013571dbb24692198

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 801394c82ef82d4055e09c9f0ddd0266771171c3a07bf8bfd58ce16f02cbdcc9
MD5 7a003398f52bc427065c5b6abec64b99
BLAKE2b-256 b7f610d348bd9562c4d845a27ec46dd5d3080b80c032ec4aa0e5b9b241e6f282

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f927f10eae407995380b3d1eef9e3b5c34bd168c8b61087fdd311743bbba250b
MD5 0fb91d02b0acf72471a1aa852c389c56
BLAKE2b-256 91c8708eb483020baa0f2bc0ddf4bfcacd2a4c887e32f08277dd12069006af44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.120-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 46b1de1eac1aea35ea551e9c1f9d5c99be5a70b6935a37b777e5e02ae0135687
MD5 2836b285266773def55aba246f7babaa
BLAKE2b-256 6cac6726dbc08c185d957eb2798f9ef678892350d23228331187a41f84f67b00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-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/6.1.0 CPython/3.13.7

File hashes

Hashes for pyvndb-1.0.120-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8224d7f2adc8cfd980390c3ae234fc7897a3c2fddb6ed59d6c3727aa195b8198
MD5 ef762a9d7a1108d2a2532be3b340cc1d
BLAKE2b-256 f7d91ce20daf6939d4c2b0c78ec25d8f104105364c0b9464ce68758fa4cb1d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adc11658768379e2330d97117dfa6618e88683d71ded43b7a6987203d1dd3f5f
MD5 2e329df5e384a3502b456c1dd16df310
BLAKE2b-256 0b9ebf1b47eef865270e6291ce441f701b7983c3cb05d4ea8f688b3c5327dbbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 748a96570a3a1c3329a5eef3d6d372ee4b1b5138bb4d12b1b242490147f76902
MD5 b543546afaca2a59b0028c3b234b2291
BLAKE2b-256 85a192bee92c34d6b0fccdf556468a66cf8aa8597c6884ca95b0a1bf186429c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c13d60bcee8554b81bb41c2792ed3deca546bef0e6c8d042ca1009720b268f3a
MD5 06d6f8215ce3d1ea72ae44b46a27a59e
BLAKE2b-256 6430db2dcb1e151dba59047ed502d109c37d8abe91383993fedda9dc5d47012d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 758.6 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.120-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c57e46954b78df55fb92ae25f3650b01d320da9fda53a14f278010af925928ed
MD5 e13bb54ceaa8948d8b6c7d51339bb1eb
BLAKE2b-256 7e15eec2ac048815744427ffb4df96822135f8c31c664723f8b070d96cc607af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyvndb-1.0.120-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 810.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.120-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f0a2c73c0a803907de823c72d628c924b75ac26d3a773331867b6a995a95ef6
MD5 028c9880521421139bc7be5db899a631
BLAKE2b-256 48fcade07bffc2430e65c023f4809c31d9e8b56271509670ad2ffe03b79bcecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1cbd405520009e7cf7c254d77ae50e8f66c8ead7493b8ca68be5e9e401af753
MD5 82fbe64fe00fd61b02623ddf18020f45
BLAKE2b-256 fcd0d6e08286434dae79302d57310425df105411a25b6b9922bc9f689b6ffb6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9657955f1584bc086810a73e9bfa875fe41a62a8b57267964627667a326aa76b
MD5 288f117ead1481b9b50498c963259a75
BLAKE2b-256 004831010f902bf224692ea13584639de57a3ff3740d5c41ff2737ec8f87db75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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.120-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvndb-1.0.120-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea9acd885fe06a2e8d1823d475bc4cf0e8ce9907da39f7366951680398202611
MD5 e91246dd9ca078c564a0ea0c864745c4
BLAKE2b-256 b22066dd1f3aaf1c30d28948cc374e53bef919054df3ff572617fa1ebba9c104

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvndb-1.0.120-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