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.116.tar.gz (179.8 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.116-cp314-cp314-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows ARM64

pyvndb-1.0.116-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pyvndb-1.0.116-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

pyvndb-1.0.116-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

pyvndb-1.0.116-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyvndb-1.0.116-cp313-cp313-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows ARM64

pyvndb-1.0.116-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyvndb-1.0.116-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pyvndb-1.0.116-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

pyvndb-1.0.116-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyvndb-1.0.116-cp312-cp312-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows ARM64

pyvndb-1.0.116-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyvndb-1.0.116-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyvndb-1.0.116-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pyvndb-1.0.116-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyvndb-1.0.116-cp311-cp311-win_arm64.whl (886.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pyvndb-1.0.116-cp311-cp311-win_amd64.whl (863.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyvndb-1.0.116-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

pyvndb-1.0.116-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (991.8 kB view details)

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

pyvndb-1.0.116-cp311-cp311-macosx_11_0_arm64.whl (918.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyvndb-1.0.116-cp310-cp310-win_arm64.whl (551.0 kB view details)

Uploaded CPython 3.10Windows ARM64

pyvndb-1.0.116-cp310-cp310-win_amd64.whl (539.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pyvndb-1.0.116-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (678.2 kB view details)

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

pyvndb-1.0.116-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (604.4 kB view details)

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

pyvndb-1.0.116-cp310-cp310-macosx_11_0_arm64.whl (566.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyvndb-1.0.116.tar.gz
  • Upload date:
  • Size: 179.8 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.116.tar.gz
Algorithm Hash digest
SHA256 f24c5f55b8ce0f9e813e09985a876494de5cc48ee71588af048a80334042df36
MD5 23791ef148394d4750317555ddfe1208
BLAKE2b-256 c8f648676c0c161b6e7dbf1021672066f0f6a15603077ca881b96e251d6648b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.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.116-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 27c50e5c9233755462b4dcdfc02ace162218c225f9bcc2c1693c26546fd14233
MD5 890d4fdacef0a0efe8caf7c76632f1ce
BLAKE2b-256 a23a21b8915585a8d44af0bea50b60ab370e52dca962a55e867e278ab96348fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.116-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9ea73aec3f534c9bbed77638bc22a3f449149c7cc0816b3aa88364d3feb5c17d
MD5 9eb18dc97f7819ef1831a9da67e2e443
BLAKE2b-256 9453af1f5db42b49b89ce81e7ea9444c8bc6d3605cd75e480e838f1c59df7adf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c483331a7f469a7f6449f4c57966502847e98253d6f416c2a9a08ff282977ce4
MD5 221a5d7f36413046fdc53bfd4edd4b86
BLAKE2b-256 65ac805fc3398034b54eec4c11c1a159cb19486583d96af666a50592a0c60483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd453d76701b04640881822392da16cb68a7f3c853aa5557920cd5e48e4de7b4
MD5 1cf9c0099fd1b48ae6d3f98477cebc98
BLAKE2b-256 34f7333241fc3cf797a3b3425eba09a6112a9f4a31fa0c9d7151d378649aab73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84a62755560f960ffbe79407cff71e79de7be5bdc03f11ae02534368bc7b3be8
MD5 718ba5ed4084798839dabd4bd8301777
BLAKE2b-256 cc197d8c2ba171b242b6eec33b2e2f10d6d1baff475129c83eed439ccf5ca01c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.5 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.116-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e4895f6a24d42d23cdf26dc74a3ecee57d0e29bd547d7c6121e56e9d664133c7
MD5 e385bf25b12dcf05790eb69ea91f5b97
BLAKE2b-256 64cecfd008831ccdaee3661f596abc3dcf3ca104875a3ccb6fb2cabe6a247b1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.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.116-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb004ada2265743481f44c5553cadbd016913546d2eea6f5c3e759ea279ee80e
MD5 266269713ff3e62acf60600541d8a142
BLAKE2b-256 0da8e3e72b2a0ec6108ba79cc23d0da433af371afa448de1a0b05421c760cfec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45da133e28141aa38f19ec04c2045595931c28483ec1fe98a0689baeb68c64d6
MD5 0593da73d4f8c12e208717271b76e31c
BLAKE2b-256 c602b4a1d59be945c76635214d899562c603662dc3e0b6979b1fce4b0f443b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9babcec00d66a7652c8afaa11ebbef5ab21e1e86f750d23472e07e31256e7118
MD5 f7e2e32266dc7d1fd2bc1016d517fe8e
BLAKE2b-256 998b0e0465bc05ffa254a130b58d65b9ce046b87fdf312523316f7ff8d3d9009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 965d5e9ae2a6bdc780a512e5f80c987cd296f7fdc8d7b1bc0bf72062513f747e
MD5 ba56e9715794a2e5a41ef166ed86b04c
BLAKE2b-256 08f869c0c561fb7cf57798260e88b548b7a62257b9eb0fff2a1180aa475dad8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.2 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.116-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d74fd25aafa9d1a8d5af83db711479db586b47b2cc3c4d0cedc501ad3fae2367
MD5 6c192267e50699ed96d4b699bbca6580
BLAKE2b-256 8ecb4945e0aa61cd9dab1dbf30032f9c1a819b9632a241833e510158a4128554

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.116-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb748ec861d7e5ce128623ccfae1ccd726fc42ccbaa4287d94d1010a89b60a7b
MD5 0452e028313c77f3caf67c04cc516732
BLAKE2b-256 9c96f1bc5cfe9168f7681e1b7a26a74b69767f887e2bdbf0a01b688e2bda5064

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d23510936a328a61ccdec0c1c591a32ef0e7155578d5373a5f1bcba1f20dbe0
MD5 49e08db4cc9ad78064324437653204c3
BLAKE2b-256 07b24c3879afb39afea18fb7d3cf9816010bd3f575bdceca68f0bf459c6c2fa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6ae1861af613198480c7c97dc49831702f1e1cbac7b8e40f906e2ef1561fff8
MD5 676b8491a54edb8a0a35f9fd791c4c94
BLAKE2b-256 dc54b1d0a5a2ce39ba81dfba3111d00bdf7248db9d2181d95334b795ca17a6c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91d1c0e3bb5c9748d9d3ad414e1e6fd9252d1a633cfe5ba9f1d6c84e2c7ef78e
MD5 8414c06b87d3021ded2793ef06af5874
BLAKE2b-256 a4c567170747f6bbf10e54553a39d9bc0fd3ce01768d1143ffa1197e9960284a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 886.5 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.116-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 42ce771d242b8ed20ae8b572a3d5e67264d76c130848c16c514078499132caba
MD5 9c5be28b4e6be9f512051907f13b79da
BLAKE2b-256 645e444cc5ef522d8e40730eb5decc8fca338095ce1668e8fd810e642093cd96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 863.0 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.116-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b2faabf0c75335d370aacfffa8536ee9c3d75e2f5b6821f103ba237ff82dccd
MD5 4ce9e84bfeca249b14e91ebc27989265
BLAKE2b-256 6623bcdf2478dfe2973ba1fe80439167acbb26a8eee17ca3ad1d48fbe0fe4d5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95d56116f8d6503b614cf738b48341fe0d97e45b89334e9eb57319dba32a77b0
MD5 9a443e04b3dd62d39b4a6f8d5de6f586
BLAKE2b-256 9871fee60d2c3543f3b5bc5ed2a318e24af8814109ad87136fa5c9ff1ff05d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5bf5e4b9e89cf4fd60fcac5bfaa82f6d064d882791cb912c12f7304ab31b554
MD5 acf5e8aa022e67f9ed6f4f68774cbfef
BLAKE2b-256 23030b2b0830c671fa0bc05047402cae403ad99d60d8ea831ca18b752c38869e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ee00e690dd0cf8f1b2071364b91c8151505b20bb59ff65c4756b26476df5843
MD5 fa6f0d19770a18b077e313e44e4af520
BLAKE2b-256 3893fb61e7a6a3f9b2f8bfb6f84e94d60ea946c39d7014bdaa615934633f7c2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 551.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.116-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2e5712b9038cc755391984e6d220cbd0731da2b471a709008f1f59a05db2254e
MD5 a89e2a7b48a8e235917d6e106f3685c2
BLAKE2b-256 2094842d5cb6cf699f97f48f8b7233e474ea9714ed9bd68268cbf958c03683a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyvndb-1.0.116-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 539.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.116-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b62330ce47d924717cfc55cb203466e856add5ad793d104409fdea15eddfefb
MD5 fd56e091bc6c4e425427e7ee6d660077
BLAKE2b-256 cec53f8db8c3eb88cbdce49443d88bd8c45c785d78aeaa968dc37de5f3cf627c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62783bd1e86e98cc6ab0f1cb211015bd985cefd13daa7da872312f7d2acd6cd0
MD5 65b857b5f667ded90ddff9c608964ff1
BLAKE2b-256 62aed39c08cf50427a3438e0aad74999fffe987281cf1464f157ad4d93e148dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a4da6178d2764dc1b2ab31f7a6e8ac1bf3afde1e75476dcd361f14910740af9
MD5 c353744bd82bd41deb65173f6890e81a
BLAKE2b-256 db3bbad3b07aa3e860b1c09b9106071ae77452196194536b1cb45d1176a340fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyvndb-1.0.116-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 607fbee840c9e1b89d683f7ec547b34280e1ee901f0f61830ee8799f37e58e73
MD5 b4cf354ad69f905c02ae66d5f43b28ba
BLAKE2b-256 6f01b89b7c20f6d965c296e80534f9a7591f93692e0371cfa4bd5b9266116245

See more details on using hashes here.

Provenance

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