venv added, updated
This commit is contained in:
22
myenv/lib/python3.12/site-packages/pymodbus/__init__.py
Normal file
22
myenv/lib/python3.12/site-packages/pymodbus/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""Pymodbus: Modbus Protocol Implementation.
|
||||
|
||||
Released under the BSD license
|
||||
"""
|
||||
|
||||
__all__ = [
|
||||
"ExceptionResponse",
|
||||
"FramerType",
|
||||
"ModbusException",
|
||||
"pymodbus_apply_logging_config",
|
||||
"__version__",
|
||||
"__version_full__",
|
||||
]
|
||||
|
||||
from pymodbus.exceptions import ModbusException
|
||||
from pymodbus.framer import FramerType
|
||||
from pymodbus.logging import pymodbus_apply_logging_config
|
||||
from pymodbus.pdu import ExceptionResponse
|
||||
|
||||
|
||||
__version__ = "3.7.2"
|
||||
__version_full__ = f"[pymodbus, version {__version__}]"
|
||||
Reference in New Issue
Block a user