Skip to content

The can package provides controller area network support for Python developers

License

Notifications You must be signed in to change notification settings

pkess/python-can

Repository files navigation

python-can

Latest Version on PyPiSupported Python implementationsDownloads on PePyMonthly downloads on PePyThis project uses the black formatter.

DocumentationTravis CI Server for develop branchTest coverage reports on Codecov.ioMergify 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 Python 3.6+ as well as PyPy 3 and runs on Mac, Linux and Windows.

Library VersionPython
2.x2.6+, 3.4+
3.x2.7+, 3.5+
4.x (currently on develop)3.6+

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), 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

# import the libraryimportcan# create a bus instance# many other interfaces are supported as well (see below)bus=can.Bus(interface='socketcan', channel='vcan0', receive_own_messages=True) # send a messagemessage=can.Message(arbitration_id=123, is_extended_id=True, data=[0x11, 0x22, 0x33]) bus.send(message, timeout=0.2) # iterate over received messagesformsginbus: print("{:X}:{}".format(msg.arbitration_id, msg.data)) # or use an asynchronous notifiernotifier=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.

There is also a python-can mailing list for development discussion.

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.

About

The can package provides controller area network support for Python developers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python99.3%
  • Other0.7%