File: __init__.py

package info (click to toggle)
python-can 4.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,428 kB
  • sloc: python: 27,154; makefile: 32; sh: 16
file content (14 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
See: https://www.kernel.org/doc/Documentation/networking/can.txt
"""

__all__ = [
    "CyclicSendTask",
    "MultiRateCyclicSendTask",
    "SocketcanBus",
    "constants",
    "socketcan",
    "utils",
]

from .socketcan import CyclicSendTask, MultiRateCyclicSendTask, SocketcanBus