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.5.tar.gz
(15.1 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.5-py3-none-any.whl
(12.9 kB
view details)
File details
Details for the file canlab-0.1.5.tar.gz.
File metadata
- Download URL: canlab-0.1.5.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.27
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c3bb54f990459f9a8787989e47cbe268f3185a5552e949867ec33ef6c5003e
|
|
| MD5 |
c7c6a210df5b65de52236b2c15228028
|
|
| BLAKE2b-256 |
a18026e492f13e0dd55b27eb3f36060d623de70468c1d4bee00ba2c02e76121d
|
File details
Details for the file canlab-0.1.5-py3-none-any.whl.
File metadata
- Download URL: canlab-0.1.5-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.27
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00590e5ab255664b7ddd177c22c53e17ece32ba682097e0d21d63d2ca03de656
|
|
| MD5 |
a9004ca7ee086531588c6b057f71c2b6
|
|
| BLAKE2b-256 |
fe886532991031a473a1ed31b6708ac2f5e43c865f59faa3d59fba71645d8b01
|