python-can

can 软件包为 Python 开发人员提供控制器区域网络支持。『The can package provides controller area network support for Python developers』

  • 所有者: hardbyte/python-can
  • 平台: Linux,Mac,Windows
  • 許可證: GNU Lesser General Public License v3.0
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

python-can
==========, release, downloads, downloads_monthly, formatter, docs, build_travis, build_appveyor, coverage, .., release, image:: https://img.shields.io/pypi/v/python-can.svg
:target: https://pypi.python.org/pypi/python-can/
:alt: Latest Version on PyPi

.., downloads, image:: https://pepy.tech/badge/python-can
:target: https://pepy.tech/project/python-can
:alt: Downloads on PePy

.., downloads_monthly, image:: https://pepy.tech/badge/python-can/month
:target: https://pepy.tech/project/python-can/month
:alt: Monthly downloads on PePy

.., formatter, image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/python/black
:alt: This project uses the black formatter.

.., docs, image:: https://readthedocs.org/projects/python-can/badge/?version=stable
:target: https://python-can.readthedocs.io/en/stable/
:alt: Documentation

.., build_travis, image:: https://img.shields.io/travis/hardbyte/python-can/develop.svg?label=Travis%20CI
:target: https://travis-ci.org/hardbyte/python-can/branches
:alt: Travis CI Server for develop branch

.., build_appveyor, image:: https://img.shields.io/appveyor/ci/hardbyte/python-can/develop.svg?label=AppVeyor
:target: https://ci.appveyor.com/project/hardbyte/python-can/history
:alt: AppVeyor CI Server for develop branch

.., coverage, image:: https://codecov.io/gh/hardbyte/python-can/branch/develop/graph/badge.svg
:target: https://codecov.io/gh/hardbyte/python-can/branch/develop
:alt: Test coverage reports on Codecov.io

The C\ ontroller A\ rea N\ etwork 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 <https://python-can.readthedocs.io/en/stable/interfaces.html>__)
  • receiving, sending, and periodically sending messages
  • normal and extended arbitration IDs
  • limited CAN FD <https://en.wikipedia.org/wiki/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 file or environment variables
  • CLI tools for working with CAN buses (see the docs <https://python-can.readthedocs.io/en/stable/scripts.html>__)
  • more

Example usage

.. code:: python

# 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 <https://python-can.readthedocs.org/en/stable/>__.

Discussion

If you run into bugs, you can file them in our
issue tracker <https://github.com/hardbyte/python-can/issues>__ on GitHub.

There is also a python-can <https://groups.google.com/forum/#!forum/python-can>__
mailing list for development discussion.

Stackoverflow <https://stackoverflow.com/questions/tagged/can+python>__ has several
questions and answers tagged with python+can.

Wherever we interact, we strive to follow the
Python Community Code of Conduct <https://www.python.org/psf/codeofconduct/>__.

Contributing

See doc/development.rst <doc/development.rst>__ for getting started.

主要指標

概覽
名稱與所有者hardbyte/python-can
主編程語言Python
編程語言Python (語言數: 3)
平台
許可證GNU Lesser General Public License v3.0
所有者活动
創建於2016-09-24 08:42:42
推送於2025-06-06 16:29:22
最后一次提交
發布數86
最新版本名稱v4.5.0 (發布於 )
第一版名稱0.0 (發布於 )
用户参与
星數1.4k
關注者數77
派生數636
提交數3k
已啟用問題?
問題數907
打開的問題數206
拉請求數846
打開的拉請求數33
關閉的拉請求數116
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?