Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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

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

Library Version

Python

2.x

2.6+, 3.4+

3.x

2.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 library
import can

# 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 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("{:X}: {}".format(msg.arbitration_id, 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.

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.

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.0.0.dev2.tar.gz (241.5 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.0.0.dev2-py3.9.egg (439.3 kB view details)

Uploaded Egg

File details

Details for the file python-can-4.0.0.dev2.tar.gz.

File metadata

  • Download URL: python-can-4.0.0.dev2.tar.gz
  • Upload date:
  • Size: 241.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.1

File hashes

Hashes for python-can-4.0.0.dev2.tar.gz
Algorithm Hash digest
SHA256 3ceba6e723d44efcf317d29dfd9be8af913cef5e2eed59459fa5475f63eef370
MD5 431f0d7799d1e2a40e2e3e58589e70fa
BLAKE2b-256 ec94cca87a4db6cceee278fc3cda947d37ed3688e13a50be06b654d7235a345d

See more details on using hashes here.

File details

Details for the file python_can-4.0.0.dev2-py3.9.egg.

File metadata

  • Download URL: python_can-4.0.0.dev2-py3.9.egg
  • Upload date:
  • Size: 439.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.1

File hashes

Hashes for python_can-4.0.0.dev2-py3.9.egg
Algorithm Hash digest
SHA256 e78400bbaa9c28241478e46055be40397cebde99cab51a7015d1de77f8c03477
MD5 60d6839d327ed9afc6e6fc34dbe5f365
BLAKE2b-256 1d6c0237048486d41f96fb82a25ffb0af58769814a84474fdf4bf504b8457614

See more details on using hashes here.

Release history Release notifications | RSS feed

4.6.1

2 files

4.6.0

2 files

4.5.0

2 files

4.4.2

2 files

4.4.0

2 files

4.3.1

2 files

4.3.0

2 files

4.2.2

2 files

4.2.1

2 files

4.2.0

2 files

4.1.0

2 files

4.0.0

5 files

This release

4.0.0.dev2 This release

2 files

3.3.4

1 file

3.3.3

1 file

3.3.2

1 file

3.3.1

1 file

3.3.0

1 file

3.2.1

1 file

3.2.0

1 file

3.1.1

2 files

3.1.0

2 files

3.0.0

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.5.2

2 files

1.5.0

2 files

1.4.3

2 files

1.4.2

2 files

1.4.1

1 file

1.4

1 file

1.3

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page