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.0.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.0-py3-none-any.whl
(11.2 kB
view details)
File details
Details for the file canlab-0.1.0.tar.gz.
File metadata
- Download URL: canlab-0.1.0.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 |
b882cb60ef3b63db4d4dff1ef955ba01066983da04aec8846cc8a057d37a37ce
|
|
| MD5 |
1f732faaf17a27c4ea58fbf3b7033b43
|
|
| BLAKE2b-256 |
c2e6f234ca9e1a849bec9d63e520c2985426341635ca453de6a323ddb3de619b
|
File details
Details for the file canlab-0.1.0-py3-none-any.whl.
File metadata
- Download URL: canlab-0.1.0-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 |
59aedf13f2dd9719db4e0438ecaa721603cea9c8cc78625fb3f199411b56c43a
|
|
| MD5 |
8fbe43652868455ed6d453718fecd589
|
|
| BLAKE2b-256 |
36fc3ffe20b6cadb91ff7b2a87da286b350b95c285135368e7425496fbd22f11
|