A simple Modbus/TCP client library for Python. pyModbusTCP is pure Python code without any extension or external module dependency.
Since version 0.1.0, a server is also available.
Tests
The module is currently test on Python 3.8, 3.9, 3.10, 3.11 and 3.12.
For Linux, Mac OS and Windows.
Documentation
Documentation of the last release is available online at https://pymodbustcp.readthedocs.io/.
Setup
You can install this package from:
PyPI, the easy way:
# install the last available release (stable)
sudo pip install pyModbusTCP
# install a specific version (here release v0.1.10)
sudo pip install pyModbusTCP==v0.1.10
From GitHub:
# install a specific version (here release v0.1.10) directly from github servers
sudo pip install git+https://github.com/sourceperl/pyModbusTCP.git@v0.1.10
Note on the use of versions:
Over time, some things can change. So, it’s a good practice that you always use a specific version of a package for your project, instead of just relying on the default behavior. Without precision, the installation tools will always install the latest version available for a package, this may have some drawbacks. For example, in pyModbusTCP, the TCP automatic open mode will be active by default from version 0.2.0. It is not the case with previous versions and it just doesn’t exist before the 0.0.12. This can lead to some strange behaviour of your application if you are not aware of the change. Look at CHANGES for details on versions available.
Usage example
See examples/ for full scripts.
include (for all samples)
from pyModbusTCP.client import ModbusClient
module init (TCP always open)
# TCP auto connect on first modbus request
c = ModbusClient(host="localhost", port=502, unit_id=1, auto_open=True)
module init (TCP open/close for each request)
# TCP auto connect on modbus request, close after it
c = ModbusClient(host="127.0.0.1", auto_open=True, auto_close=True)
Read 2x 16 bits registers at modbus address 0 :
regs = c.read_holding_registers(0, 2)
if regs:
print(regs)
else:
print("read error")
Write value 44 and 55 to registers at modbus address 10 :
if c.write_multiple_registers(10, [44,55]):
print("write ok")
else:
print("write error")
Release files for pyModbusTCP 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyModbusTCP-0.3.0.tar.gz | 31.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pyModbusTCP-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 56.4 kB
Release files / pyModbusTCP-0.3.0.tar.gz
| Download URL | pyModbusTCP-0.3.0.tar.gz |
|---|---|
| Size | 31.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
893a4d88f6a63af21bd35b2b22061355e74005ea27fefc104e8f9bdb4ce81a04
|
|
BLAKE2b-256 checksum How to use checksums |
9bc6d3f3842696607a09f6cf3c2a668c0e05731caf3013b118ecd75deddc548c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.1 CPython/3.11.2
|
Release files / pyModbusTCP-0.3.0-py3-none-any.whl
| Download URL | pyModbusTCP-0.3.0-py3-none-any.whl |
|---|---|
| Size | 24.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8b0086fa7ed4bd1bf6956d56a0979937008c48091f052310ad8826647fe30180
|
|
BLAKE2b-256 checksum How to use checksums |
6c0f343d4902b01989131aa7ef8a9aa253731c16814c789e49f5ff9b4bb66334
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.1 CPython/3.11.2
|