@@ -34,8 +34,9 @@ Client Features
3434 * Full read/write protocol on discrete and register
3535 * Most of the extended protocol (diagnostic/file/pipe/setting/information)
3636 * TCP, UDP, Serial ASCII, Serial RTU, and Serial Binary
37- * asynchronous(powered by twisted) and synchronous versions
37+ * asynchronous(powered by twisted/tornado/asyncio ) and synchronous versions
3838 * Payload builder/decoder utilities
39+ * Pymodbus REPL for quick tests
3940
4041------------------------------------------------------------
4142Server Features
@@ -93,6 +94,18 @@ trace them. I get a lot of email and sometimes these requests
9394get lost in the noise: http://groups.google.com/group/pymodbus or
9495at gitter: https://gitter.im/pymodbus_dev/Lobby
9596
97+ ------------------------------------------------------------
98+ Pymodbus REPL (Read Evaluate Procee Loop)
99+ ------------------------------------------------------------
100+ Starting with Pymodbus 2.x, pymodbus library comes with handy
101+ Pymodbus REPL to quickly run the modbus clients in tcp/rtu modes.
102+
103+ Pymodbus REPL comes with many handy features such as payload decoder
104+ to directly retrieve the values in desired format and supports all
105+ the diagnostic function codes directly .
106+
107+ For more info on REPL refer `Pymodbus REPL <pymodbus/repl/README.md >`_
108+
96109------------------------------------------------------------
97110Installing
98111------------------------------------------------------------
@@ -104,15 +117,18 @@ permissions or a virtualenv currently running)::
104117 easy_install -U pymodbus
105118 pip install -U pymodbus
106119
107- To Install pymodbus with twisted support run
108- .. code-block :: python
120+ To Install pymodbus with twisted support run::
121+
109122 pip install -U pymodbus[twisted]
110123
111- To Install pymodbus with tornado support run
124+ To Install pymodbus with tornado support run::
112125
113- .. code-block :: python
114126 pip install -U pymodbus[tornado]
115127
128+ To Install pymodbus REPL::
129+
130+ pip install -U pymodbus[repl]
131+
116132Otherwise you can pull the trunk source and install from there::
117133
118134 git clone git://github.com/bashwork/pymodbus.git
0 commit comments