Skip to content

Commit 6856651

Browse files
committed
Fix #10 add reactive server to repl code base
1 parent 1a6a740 commit 6856651

File tree

11 files changed

+636
-21
lines changed

11 files changed

+636
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,4 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
.idea/
161+
!pymodbus_repl/lib/*

poetry.lock

Lines changed: 13 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pymodbus_repl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""REPL (Read-Eval-Print Loop) tool for working with Modbus devices using the Pymodbus library."""
2-
__VERSION__ = "2.0.0"
2+
__VERSION__ = "2.0.1"
33

pymodbus_repl/client/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from prompt_toolkit.styles import Style
1313
from pygments.lexers.python import PythonLexer
1414
from pymodbus import __version__ as pymodbus_version
15-
from pymodbus_repl import __VERSION__ as repl_version
1615
from pymodbus.exceptions import ParameterException
1716
from pymodbus.transaction import (
1817
ModbusAsciiFramer,
@@ -21,6 +20,7 @@
2120
ModbusSocketFramer,
2221
)
2322

23+
from pymodbus_repl import __VERSION__ as repl_version
2424
from pymodbus_repl.client.completer import (
2525
CmdCompleter,
2626
has_selected_completion,

pymodbus_repl/lib/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Copyright (c) 2024 The Gallli Network.
3+
All Rights Reserved.
4+
5+
@author: Sanjay <[email protected]>
6+
"""

0 commit comments

Comments
 (0)