A general CAN framework API for Python - encode/decode CAN frames, parse DBC files, and work with CAN log files
Project description
canlab
A general CAN framework API for Python - encode/decode CAN frames, parse DBC files, and work with CAN log files.
Installation
pip install canlab
or
uv add canlab
Quick Start
Loading a DBC File
from dbc import load_cantools_dbc, extract_messages
# Load DBC file with cantools
db = load_cantools_dbc("path/to/file.dbc")
# Extract messages into MessageData objects
messages = extract_messages("path/to/file.dbc")
Encoding CAN Frames
from dbc import DbcData
from encoder import values_to_lsb, values_to_msb
# Create a signal
signal = DbcData(
startBit=0,
numBits=16,
scale=0.1,
offset=0.0,
isSigned=False,
name="temperature",
isLSB=True,
value=98.6
)
# Encode to LSB (Intel) format
frame = values_to_lsb([signal])
Decoding CAN Frames
from decoder import lsb_to_value, msb_to_value
# Decode from LSB format
value = lsb_to_value(frame, signal)
# Decode from MSB (Motorola) format
value = msb_to_value(frame, signal)
Parsing ASC Log Files
from log_reader.asc import parseASC, read_asc
# Parse ASC file filtering by message IDs
target_ids = [0x100, 0x200]
df = parseASC("log.asc", target_ids)
# Read all messages from ASC file
df = read_asc("log.asc")
Features
- Load and parse DBC files
- Encode physical values to CAN frames (LSB and MSB formats)
- Decode CAN frames to physical values
- Parse ASC log files
- Convert between DBC IDs and bus IDs
Requirements
- Python >= 3.12
- cantools >= 41.0.2
- polars >= 1.36.1
License
MIT License - see LICENSE file for details.
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
canlab-0.1.1.tar.gz
(13.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
canlab-0.1.1-py3-none-any.whl
(11.2 kB
view details)
File details
Details for the file canlab-0.1.1.tar.gz.
File metadata
- Download URL: canlab-0.1.1.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.27
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88ac8ae392d9c6a94053892236ed24b280e203ce66d282ac18fa685fa98dc512
|
|
| MD5 |
bee19e136f65619d4b37fdb464bf80ce
|
|
| BLAKE2b-256 |
b3b70c94964b4787509e6e22ab6f3895990781a95ef449667a1e3f469701677e
|
File details
Details for the file canlab-0.1.1-py3-none-any.whl.
File metadata
- Download URL: canlab-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.27
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb4277a5660d72ee79bcaba63ad0f3af78f39094f58e6f9b847fe67bbcc2dd21
|
|
| MD5 |
a3dd8cd9c7bb4aa3665537247e543b75
|
|
| BLAKE2b-256 |
f26cddc4fc0cd30d9f3cc3274ce8d966b878b98c7967f1e7b5842212f75873d8
|