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

Uploaded CPython 3.14Windows ARM64

pyvndb-1.0.119-cp314-cp314-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

pyvndb-1.0.119-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pyvndb-1.0.119-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.119-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.119-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

pyvndb-1.0.119-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pyvndb-1.0.119-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.119-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.119-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pyvndb-1.0.119-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.119-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.119-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyvndb-1.0.119-cp310-cp310-win_arm64.whl (758.0 kB view details)

Uploaded CPython 3.10Windows ARM64

pyvndb-1.0.119-cp310-cp310-win_amd64.whl (753.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyvndb-1.0.119-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (991.5 kB view details)

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

pyvndb-1.0.119-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (867.8 kB view details)

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

pyvndb-1.0.119-cp310-cp310-macosx_11_0_arm64.whl (803.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyvndb-1.0.119.tar.gz
  • Upload date:
  • Size: 188.6 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.119.tar.gz
Algorithm Hash digest
SHA256 b5fbceaf81530c833d1e4d14f4a555caa011c35a4b5917ac532948c300ebcd2a
MD5 9ffaefd3903ed35521c5a20410b1c706
BLAKE2b-256 09546fdbee677721485f6f571f56f5015d5b7758c9e9fe4b0379b7710f4c4c32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-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.119-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 64bd363a4f61ef6416f80c359d5f0042065a8c0c0738d81138bb3ef5af89495f
MD5 be6c376d26cafa0be32632e78f8a4ee1
BLAKE2b-256 eb7db6bfd68da771ad7f55c5f730a4be780da6641e3d8d2219a848b1ed2be061

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.0 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.119-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5983dbb68504f578086bc08a7987fb47b23db1df52e7458213a2a9298b90fd75
MD5 2f57aa9e960ded1af9bddc199a35a53f
BLAKE2b-256 9ce16d5c2226e5883601bac2d34d23df609efcdb8e267b1a7d71028630270ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f06a61b97d22b3964fe0d35ed9fcc13a1bea45a6b6e1ae47485cf96a4d7f62c8
MD5 c7d58b371dd2eeb87f2e8f5c365eac96
BLAKE2b-256 71cdd02a1e26a8686467f7f79ef2ccb80a5db8d4ca4e846f7b80ca4419872c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1eb97a293c18830ff4b4bfc9d0828bbd88d1f336301da35c3cb6d5dbb24bbbee
MD5 1ce995ac804d80c0fdf362c75ed5927d
BLAKE2b-256 a7c34c4bc0973483394ed1691b8bf9c21ab6dc5e2184389c76569276a6a31715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f710bdf2e230e27193507122bbfb8d22e114d738b66a3d8883181ed31977857
MD5 11c96e154a6dd3ee2746b46f3c4b8674
BLAKE2b-256 5303ac5cc2eb7c0197a9df4cf5a11d7e6c91c3a7e887ecb4b7eab3a8ed1540c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-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.119-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 40773e0ac5511106d43ed8dffd9b7a6035d3a9776c121cbc6015d8d111a254a7
MD5 cd98eb21cb71ef991a62c54c37a3a660
BLAKE2b-256 0a23a05f456db217d157ebe02c2a2e5d33a7ef2f737c32c2002d28a74c01f476

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.3 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.119-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d828dcef524624dce3475c5d52f0e20da947837dd31190125b68406978238cf9
MD5 6c8967b81b70e00c250aafb992484e7b
BLAKE2b-256 e29c020e7c7abf1337880dff29853a198798f4d61c404c958572bc4e34d4479c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d511f0abbeccff3089c9d2e8e60b8914a3797b39492f64c5f6e3c65a2669083f
MD5 63936c12ec864dc2001a54a4c3b04464
BLAKE2b-256 727eb86ea73e1f10e1a2f60a1fffe3ece79248340ccb667f9fe4b95c946d8127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f3dd972240f34332012e057d8f11118e7bbd3e651c897780162eb5ef0d4d705
MD5 486f3189ef4855cb2a20e57a698adb28
BLAKE2b-256 b3a75d7772402a240e46cf6142e87b72f2581dcac23efad281d1d484f1ffbb07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8fcf7335846a1d264edb32f1e7ee7093cb7695b9265a14da904b83794ce5513
MD5 3149d3c43084f9c579724d33e3b936ca
BLAKE2b-256 2ba941677ac06952950146f040f0d1066d0a592f52871aad8fb8b92f25593068

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-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.119-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 330366a8f6bf5bcdd1811a7594341bfd6d00fe8cceae5748f384fae00e248220
MD5 1d2ebf7c245272a5d0f90c5eff07e5d8
BLAKE2b-256 fee9d2f146915b09104713a3da7355c96638494352795628eac1288c60e1f030

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.119-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe42f575084e61ad2383324a207425f64f5505f65094e86dbc85547ec7fa764f
MD5 0183a44c5789e7c8db25498e41c92edf
BLAKE2b-256 74a2202ce0eed05d6cff96f5e1dc934fe8d5f3579fee9c111c758c9049b1a0d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 616a6c7e6c2ec7470dd8ded5dfa31137959f93291583745d8f0b5caa9857f20e
MD5 e3b5e792ef8123d106cd9e7f5b175751
BLAKE2b-256 d91db6c2aab87e0bb68de468c315c2b75c34304f103ed5854f5648bbf78d7d83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6bacbef7d1beb2d6ab4e4e61d2ac2f050c0aee92d902e8ef8e3f48f56fac73a
MD5 5a4910ff1f2f0db0712c70b1dfdb8987
BLAKE2b-256 01b35276a3fae14c324e2315b1a659ac1826c0697d57894bd3aee40c7ba2a3ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 325776f4aade8b48039c1df80b17c7b302cf1de8381eb3fc88a276c8ff6a7e73
MD5 b81a9db2b3b821bead9b25bb665f534b
BLAKE2b-256 3edb460f66157ca67a2c9446147c7f794d48a638d3c1f47eba69448f514b4b0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-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.119-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 471575b407f7c7c9e7d956c20341eda6cecef5ad7469726f2b89bb11ff76bf4f
MD5 96e085f3e8d0ea4ac2662b4dc5edea9a
BLAKE2b-256 9d9e9e7cf4c955188529dfe19164871e12c0d2a02fdef3ce3f92c05c77421024

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-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.119-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c044caae33186d5bccb26c1fbfe53f7c0fc9795b9489b2e314d2bd69e41b97bc
MD5 ea7e41d250598bc025e159ba95c25964
BLAKE2b-256 60b3a96577657c51c329b5807c4072362c111032ccfcfa81eba586a950230ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a557a1ab4626672ec74a1db367aba72e9e518b34b11ca86e29a4eac8a115d72
MD5 7159b8d0aa8b253df40f8efb06347bb6
BLAKE2b-256 3c2222fd190b010bfc2f0a09495cafff7cbdbb697550c2fadf16e2a09fa2268b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9929ee3ab99e792081434960c237d568d2c357201396e1fe13d71dbdc4924bb0
MD5 b3bb87df55449e04bb754cadcdf326a6
BLAKE2b-256 b3375ab75eea0291a0428e8f4065b389d3adc834fe36aba90a6a05b7025201e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28aa5675073bebde133a2d5c570fd0628fe68cee5412ab474e41e30be5d2b9d0
MD5 316c84a63cb4c9fd1d60b5c3c7cc5dfb
BLAKE2b-256 00896bfda54875f0281af0928b2ca71b59bb40071cb9c2352d25c8657aa09dcc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 758.0 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.119-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 506f5305fec2e16e38fa9273462313457447e5b86dc3ddcb075b9374fbf9309a
MD5 5779a53e8328183f48679361a7238769
BLAKE2b-256 fc1db1bc9e4e6e892d0dad221d65c979b2ae626aaad6170991baf5d3a3a67696

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.119-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 753.5 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.119-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a375849f9e0b57af204082f223b70642d91a66c4d4e29970271767ff7679704
MD5 f2af202444e167828ebe6fa93937b11d
BLAKE2b-256 56d8ac4a27e8294f9d8c51d3709cc96ff08cf8ec650b8776691eedebe51321f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6cf45a9addfb8c7ff2c5d106855e0e255854de13755dddd5611fbcb843b4a7a
MD5 eaaad8aed2c3f9f7c63da3e4dd4e5062
BLAKE2b-256 50df5ccf6fd1395cdcbb8aab36e79d73fb1144c489066d4b8851c308aedca62c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6db2fb934290580adb99974df5e308e8cca344b79216bd79eadc985ce6498fd9
MD5 5c0561eb6afc33b1582d877da83a4433
BLAKE2b-256 2c3ba2cc06386ff3d2bbc0195d5b65caae9cd88523eefe311e5301a287eaac5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.119-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b3b6b6f0087ca223a18a8fcbe9fd6045fd83062e31cb7c2b9364d77716be43
MD5 74484350dafcd116b216077ed4236708
BLAKE2b-256 0fb9ecb0f49c204eef8b3c10f0cf81d4cd24f5e4f25f0f39105358cbfb2ea4bc

See more details on using hashes here.

Provenance

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