1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Server
======
Pymodbus offers servers with transport protocols for
- *Serial* (RS-485) typically using a dongle
- *TCP*
- *TLS*
- *UDP*
- possibility to add a custom transport protocol
communication in 2 versions:
- :mod:`synchronous server`,
- :mod:`asynchronous server` using asyncio.
*Remark* All servers are implemented with asyncio, and the
synchronous servers are just an interface layer allowing synchronous
applications to use the server as if it was synchronous.
*Warning* The current framer implementation does not support running the server on a shared rs485 line (multipoint).
.. automodule:: pymodbus.server
:members:
:undoc-members:
:show-inheritance:
|