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

Uploaded CPython 3.14Windows ARM64

pyvndb-1.0.121-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pyvndb-1.0.121-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.121-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.121-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

pyvndb-1.0.121-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyvndb-1.0.121-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

pyvndb-1.0.121-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pyvndb-1.0.121-cp312-cp312-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows ARM64

pyvndb-1.0.121-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pyvndb-1.0.121-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

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

pyvndb-1.0.121-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.121-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyvndb-1.0.121-cp311-cp311-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows ARM64

pyvndb-1.0.121-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pyvndb-1.0.121-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pyvndb-1.0.121-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pyvndb-1.0.121-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyvndb-1.0.121-cp310-cp310-win_arm64.whl (677.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pyvndb-1.0.121-cp310-cp310-win_amd64.whl (731.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pyvndb-1.0.121-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (914.5 kB view details)

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

pyvndb-1.0.121-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (791.1 kB view details)

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

pyvndb-1.0.121-cp310-cp310-macosx_11_0_arm64.whl (724.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyvndb-1.0.121.tar.gz
  • Upload date:
  • Size: 117.0 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.121.tar.gz
Algorithm Hash digest
SHA256 e059ce1eace431fdbb4c4c27eaea3f72e187debe8ef6890854eba9c05490c53c
MD5 40f29040d14ffb2de948bdc911ae8656
BLAKE2b-256 3b30beb1d9fbac43195ca313f59c36cdb94cc9467ee948c6d8aa31f0d3b36d67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-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.121-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a111fd864f1e6b70b74db888ca639563daee7cebff140d491ea0bcf0a09951a7
MD5 08d37857be0866677dd6d938a1f463b9
BLAKE2b-256 f477f5dabc4b82265f08f7c0f5b0f9f8b13d2478852a02d1b721b6cd7ecba60b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.121-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0e7fdadecf59398a06d977ca49263d98f8350c59bdd7b11f0ffee1d11ecd3e51
MD5 112604420a85b94205e7685f62560771
BLAKE2b-256 51c61a2bf7e2376dc0ce290e064e59cebe4fa6c8a4ce7eebe96343ee02704a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2aafcc8f096c8bdfd9d38be23dee0166e5d48f35b425320fcff6363d4598839
MD5 cebc9ac902dd37421b2698917fb7c0b5
BLAKE2b-256 162905915ddf93cdadc24763a73085b19b64268dac3fe0e3154ad1310dfa78e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6479e473378a49239826ef6f973aa9f47a7bf78be9ded9f08f428367a3dad905
MD5 ae12d87942d05925e9339ccb667999e7
BLAKE2b-256 6df86ef0e5dc9ecac2fb16b8a5bee6ef3b4bbec62aa36bd563ad2eef8f230117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e8b6d67084f5fd0c200f969e5987c1e942848ee314995d2c45c45cfa8e054ca
MD5 0d889afeb8f3417539fdfa094f52058f
BLAKE2b-256 72eae732fd486a5014653625aeb84f918c21e3e238c02b57c8d7a652d7910904

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-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.121-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a8d65a2eb9371e03eec2044663785953fa12ec0bc3d7fcb2d6baa5ff0b98b937
MD5 55be21887e107a61247d4b2b1141aab1
BLAKE2b-256 bd2d554339eb9e35b1547a2c9d2e9f8ab0012ced089f0bcc07491d654a0545fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.5 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.121-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 902dbcd4822037428e997213710652e0550b8160da6d39ad09c5558cf2b2f57a
MD5 55585839c2f5846ff36fcf61f8eb7423
BLAKE2b-256 4ad0ddf50e365b94b3684cf93936ee106cfeeb160361c109ab38f1bdbc0e59ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04767eaee5963f29cc2b5bbf2a5a80c53331481d8c873fa7bb53e6114f8ff10f
MD5 a7cee280ff73a81db9451a0d81105f9c
BLAKE2b-256 da2eef14b49cd65c330b61e7981b519508eee7bd47e4025b942a075f4b077b11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de2598481dd7ce97035c2abb111cb9d4805ff2225e7a4c02f3c31e09e886ccd7
MD5 e174df69956d395d951920f986e09f5c
BLAKE2b-256 97e91e6975720a2727b3cec221dff3241d71bc77b284c5c4905a143e709bae35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b56c6010b07f304cb25406e0903ecc81a0aeacaa7ae9a4a78e36d8d844cab868
MD5 bf661be1ecd96e9f4b95bc31b8cae124
BLAKE2b-256 fd2af403d505030e71bd5b77cb61e51d2389ecb11430a611788cd12ad1203260

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.7 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.121-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 21b5dc1dc32c06e22c7c6d609abd324b1f98ee8c95dd87dafbc994358f412bfe
MD5 0c34d5248c738658e0e3696053c65c66
BLAKE2b-256 f017055a046a0b3cc32607f2c77349778f942146ba5d0ef0ff07e4e37dcfb706

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.121-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64db81a8b6eacdf83dabf98c1724d754e1c8ee9169159820b193f5c7ddab898b
MD5 746155bda30bb104213282639ee30f75
BLAKE2b-256 e5b0724e4851de9524779dda3321526d2c4c5fae81d61d2dcb185ddab6ebb99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4a4d90eab4c6025883bc8c6fcde6b54c4f5e053cbcfbe266485215e5d54115f
MD5 1270e27ad3c0da4cc935c81152d89358
BLAKE2b-256 d6ed112d860d14f3a096b3683a2f4253f07cfa2d1e646ed8b581dadb254cf8b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0386e189401088c989870902dcdab8fb5326aee01277a313eb3a700df25cbf16
MD5 f1eed02d1e4e821761f48282cc7515a0
BLAKE2b-256 f39aecf7539ac130a37a7d79f083deb008d2a509f4895820fa7826f6c01591f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58403928e03173076764c4684ef2d8fca904d91570851c611118411ace3575ad
MD5 526473931ac41c6433fa42f2d6a12785
BLAKE2b-256 65dbc14cc4f3e84c2325872d4f6797a75f062fe69213258e4b2887f7cdae4d9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.2 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.121-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0b1c943f456a854b2566940b20321517f7298eb7279cfbb40a9de423b6cb1a9b
MD5 935740e929c35232856ca581d3386c84
BLAKE2b-256 de812188c76a9bde84cb7fec35903fca9d308ef0fe87f0c84d7d8e94e114c367

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.121-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a3abf8fd599887699e7c3cfa881d6377056aaec59239434c6fcdfa5ccd90065
MD5 3cb3db26e8f73493e23d7572595cc335
BLAKE2b-256 0d9a7af3a18c356b4f2403e698e1d45ce7f3504996333cdcadfd9421f95d2d24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f40f2b55202e6c3173ddba9c4edb838d9c958418e575e099cd1f53d9ef82a03
MD5 84c10b95dcadf5e05e3ca4dae44db758
BLAKE2b-256 419b0afb8bffa5bc5534d1a752bf99996986edfda8e6dd8f4c89f8182c7ad496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13200904b763577e9b44578debdbb698c6f4f67a998ec676580d30c7ca9e367c
MD5 f203b79d106cf2028afc5bbf10909a54
BLAKE2b-256 6feb4aeb4a78cf2c8b01ec3dbecc1d55b8fce11df7939be7c27b34e6d27c4c79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9548c539ae69f0d1cfe5d65e0c48991a4edf22304fe91c80354ec93eff2991a6
MD5 0abb63a2b2d7b0ee0f6e6fee0ff8d180
BLAKE2b-256 71f09edd712610a9c7165f25eaf44e3b6d089612a2886eca500e16b75f824deb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 677.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.121-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 84579b9ef0918870665aa2f044fde5f5f6921fadfd17e2075f896e0dfdeb332b
MD5 ea44dd1c00b2bc682d1152decba2af5e
BLAKE2b-256 c4bc2966e79230a29ae4261091238cafdc876db644f473b300aee72bbd86975b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.121-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 731.3 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.121-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aa535afcd59917b608b1a9c67e5b5ae312771411c91c3abe17713f94b3e24fbb
MD5 0a196d4865bb904da16bcf64185ec2a2
BLAKE2b-256 78d7782b4d4d8fa597bb0b90fb5f19e755a139c4cc6c44d094e9fa5fdc7d750e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02ef936864e61ba7138c30da0e1b28b20f3bef1086640332232ce0c1b1e42c26
MD5 a62f22336aace2f0eb0f7016de9365b9
BLAKE2b-256 b9c655d289f721b600b03aa0c1479f32de423a736ca9bf798cdcad78d09e3283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c007a87639503b557c1cecfc8b59420fb22d71ca83861821201288c3aa741667
MD5 1f6358ffa02085016c86ecefa1aa0ca2
BLAKE2b-256 699dd5de7de87b533eb4d4b5b5f154e018f3e1af4bb4f1e75ec99a0897a3e6a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.121-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17c4430c5f22f609e6d78b2c78672aecae4f39163ac43d7614c45294a99ccac0
MD5 424b9e542256353868eb686e25f7ea4e
BLAKE2b-256 a8358c29df812e06790f839c3eed6c0a809f4e969cbdd66ef4369d8b44579c72

See more details on using hashes here.

Provenance

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