You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Quick pass through all interface docs
* Move plugin and virtual interface docs up
* Minor doc spring cleaning
* Update readme to include basic installation
* Remove (mostly unused) mailing list from the readme
* Include TRC section in listener docs
* Fix broken links to virtual interfaces
* Add to changelog
* Refactor api docs
* Fix bug in bus example
* Doc updates after review
Copy file name to clipboardExpand all lines: README.rst
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ Library Version Python
62
62
------------------------------ -----------
63
63
2.x 2.6+, 3.4+
64
64
3.x 2.7+, 3.5+
65
-
4.x *(currently on develop)* 3.7+
65
+
4.x 3.7+
66
66
============================== ===========
67
67
68
68
@@ -74,7 +74,7 @@ Features
74
74
- receiving, sending, and periodically sending messages
75
75
- normal and extended arbitration IDs
76
76
- `CAN FD <https://en.wikipedia.org/wiki/CAN_FD>`__ support
77
-
- many different loggers and readers supporting playback: ASC (CANalyzer format), BLF (Binary Logging Format by Vector), CSV, SQLite and Canutils log
77
+
- many different loggers and readers supporting playback: ASC (CANalyzer format), BLF (Binary Logging Format by Vector), TRC, CSV, SQLite, and Canutils log
78
78
- efficient in-kernel or in-hardware filtering of messages on supported interfaces
79
79
- bus configuration reading from a file or from environment variables
80
80
- command line tools for working with CAN buses (see the `docs <https://python-can.readthedocs.io/en/stable/scripts.html>`__)
@@ -84,6 +84,8 @@ Features
84
84
Example usage
85
85
-------------
86
86
87
+
``pip install python-can``
88
+
87
89
.. code:: python
88
90
89
91
# import the library
@@ -117,9 +119,6 @@ Discussion
117
119
If you run into bugs, you can file them in our
118
120
`issue tracker <https://github.com/hardbyte/python-can/issues>`__ on GitHub.
119
121
120
-
There is also a `python-can <https://groups.google.com/forum/#!forum/python-can>`__
121
-
mailing list for development discussion.
122
-
123
122
`Stackoverflow <https://stackoverflow.com/questions/tagged/can+python>`__ has several
Copy file name to clipboardExpand all lines: doc/api.rst
+2-26Lines changed: 2 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,33 +17,9 @@ A form of CAN interface is also required.
17
17
listeners
18
18
asyncio
19
19
bcm
20
+
errors
20
21
bit_timing
22
+
utils
21
23
internal-api
22
24
23
25
24
-
Utilities
25
-
---------
26
-
27
-
28
-
.. autofunction:: can.detect_available_configs
29
-
30
-
31
-
.. _notifier:
32
-
33
-
Notifier
34
-
--------
35
-
36
-
The Notifier object is used as a message distributor for a bus. Notifier creates a thread to read messages from the bus and distributes them to listeners.
0 commit comments