Skip to main content

Controller Area Network interface module for Python

Project description

Latest Version on PyPi Supported Python implementations Downloads on PePy Monthly downloads on PePy This project uses the black formatter.

Documentation Github Actions workflow status Travis CI Server for develop branch Test coverage reports on Coveralls.io Mergify Status

The Controller Area Network is a bus standard designed to allow microcontrollers and devices to communicate with each other. It has priority based bus arbitration and reliable deterministic communication. It is used in cars, trucks, boats, wheelchairs and more.

The can package provides controller area network support for Python developers; providing common abstractions to different hardware devices, and a suite of utilities for sending and receiving messages on a can bus.

The library currently supports CPython as well as PyPy and runs on Mac, Linux and Windows.

Library Version

Python

2.x

2.6+, 3.4+

3.x

2.7+, 3.5+

4.x

3.7+

Features

  • common abstractions for CAN communication

  • support for many different backends (see the docs)

  • receiving, sending, and periodically sending messages

  • normal and extended arbitration IDs

  • CAN FD support

  • many different loggers and readers supporting playback: ASC (CANalyzer format), BLF (Binary Logging Format by Vector), TRC, CSV, SQLite, and Canutils log

  • efficient in-kernel or in-hardware filtering of messages on supported interfaces

  • bus configuration reading from a file or from environment variables

  • command line tools for working with CAN buses (see the docs)

  • more

Example usage

pip install python-can

# import the library
import can

# create a bus instance
# many other interfaces are supported as well (see documentation)
bus = can.Bus(interface='socketcan',
              channel='vcan0',
              receive_own_messages=True)

# send a message
message = can.Message(arbitration_id=123, is_extended_id=True,
                      data=[0x11, 0x22, 0x33])
bus.send(message, timeout=0.2)

# iterate over received messages
for msg in bus:
    print(f"{msg.arbitration_id:X}: {msg.data}")

# or use an asynchronous notifier
notifier = can.Notifier(bus, [can.Logger("recorded.log"), can.Printer()])

You can find more information in the documentation, online at python-can.readthedocs.org.

Discussion

If you run into bugs, you can file them in our issue tracker on GitHub.

Stackoverflow has several questions and answers tagged with python+can.

Wherever we interact, we strive to follow the Python Community Code of Conduct.

Contributing

See doc/development.rst for getting started.

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-can-4.1.0a2.tar.gz (309.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_can-4.1.0a2-py3-none-any.whl (242.0 kB view details)

Uploaded Python 3

File details

Details for the file python-can-4.1.0a2.tar.gz.

File metadata

  • Download URL: python-can-4.1.0a2.tar.gz
  • Upload date:
  • Size: 309.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for python-can-4.1.0a2.tar.gz
Algorithm Hash digest
SHA256 7f0911bf73d84e372b16df6fb46b180f37f2feda47de9d6ee123349269615f56
MD5 0b173f9efec915dbf1febdc2240efd72
BLAKE2b-256 c6cab4dc06d92b783580086be7f3b7cab34dde4fa25e095302cdb479e4f19df2

See more details on using hashes here.

File details

Details for the file python_can-4.1.0a2-py3-none-any.whl.

File metadata

  • Download URL: python_can-4.1.0a2-py3-none-any.whl
  • Upload date:
  • Size: 242.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for python_can-4.1.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 843507ea0df528010ad17aac1f9f99a08e7da77fea4b0389fe92495b570b1057
MD5 f51011013a0eb0d0bed9270767d1657b
BLAKE2b-256 61f5b2784197c2ffa3428243799843c5bdaee873b2c0304a1712b174874d2e5c

See more details on using hashes here.

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