Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 568 Bytes

server.rst

File metadata and controls

25 lines (18 loc) · 568 Bytes

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:

  • synchronous server,
  • 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.

pymodbus.server