A Python Ethernet/IP library for communicating with Allen-Bradley PLCs.
Project description
Introduction
pycomm3 started as a Python 3 fork of pycomm, which is a Python 2 library for communicating with Allen-Bradley PLCs using Ethernet/IP. The initial Python 3 port was done in this fork and was used as the base for pycomm3. Since then, the library has been almost entirely rewritten and the API is no longer compatible with pycomm. Without the hard work done by the original pycomm developers, pycomm3 would not exist. This library seeks to expand upon their great work.
Drivers
pycomm3 includes 3 drivers:
- CIPDriver
This driver is the base driver for the library, it handles common CIP services used by the other drivers. Things like opening/closing a connection, register/unregister sessions, forward open/close services, device discovery, and generic messaging. It can be used to connect to any Ethernet/IP device, like: drives, switches, meters, and other non-PLC devices.
- LogixDriver
This driver supports services specific to ControlLogix, CompactLogix, and Micro800 PLCs. Services like reading/writing tags, uploading the tag list, and getting/setting the PLC time.
- SLCDriver
This driver supports basic reading/writing data files in a SLC500 or MicroLogix PLCs. It is a port of the SlcDriver from pycomm with minimal changes to make the API similar to the other drivers. Currently this driver is considered legacy and it’s development will be on a limited basis.
Disclaimer
PLCs can be used to control heavy or dangerous equipment, this library is provided “as is” and makes no guarantees on its reliability in a production environment. This library makes no promises in the completeness or correctness of the protocol implementations and should not be solely relied upon for critical systems. The development for this library is aimed at providing quick and convenient access for reading/writing data inside Allen-Bradley PLCs.
Setup
The package can be installed from PyPI using pip: pip install pycomm3 or python -m pip install pycomm3.
Optionally, you may configure logging using the Python standard logging library. A convenience method is provided to help configure basic logging, see the Logging Section in the docs for more information.
Python and OS Support
pycomm3 is a Python 3-only library and is supported on Python versions from 3.6.1 up to 3.10. There should be no OS-specific requirements and should be able to run on any OS that Python is supported on. Development and testing is done primarily on Windows 10. If you encounter an OS-related problem, please open an issue in the GitHub repository and it will be investigated.
Documentation
This README covers a basic overview of the library, full documentation can be found on Read the Docs or by visiting https://pycomm3.dev.
Contributions
If you’d like to contribute or are having an issue, please read the Contributing guidelines.
Highlighted Features
- generic_message for extra functionality not directly implemented
working similar to the MSG instruction in Logix, arguments similar to the MESSAGE properties
See the examples section for things like getting/setting drive parameters, IP configuration, or uploading an EDS file
used internally to implement some of the other methods (get/set_plc_time, forward open/close, etc)
- simplified data types
allows use of standard Python types by abstracting CIP implementation details away from the user
strings use normal Python str objects, does not require handling of the LEN and DATA attributes separately
custom string types are also identified automatically and not limited to just the builtin one
BOOL arrays use normal Python bool objects, does not require complicated bit shifting of the DWORD value
powerful type system to allow types to represent any CIP object and handle encoding/decoding the object
LogixDriver
- simple API, only 1 read method and 1 write method for tags.
does not require using different methods for different data types
requires the tag name only, no other information required from the user
automatically manages request/response size to pack as many requests into a single packet
automatically handles fragmented requests for large tags that can’t fit in a single packet
- both support full structure reading/writing (UDTs, AOIs, etc)
for read the Tag.value will be a dict of {attribute: value}
- for write the value should be a dict of {attribute: value} , nesting as needed
does not do partial writes, the value must match the complete structure
not recommended for builtin type (TIMER, CONTROL, COUNTER, etc)
both require no attributes to have an External Access of None
- uploads the tag list and data type definitions from the PLC
no requirement for user to determine tags available (like from an L5X export)
definitions are required for read/write methods
- automatically enables/disables different features based on the target PLC
Extended Forward Open (EN2T or newer and v20+)
Symbol Instance Addressing (Logix v21+)
detection of Micro800 and disables unsupported features (CIP Path, Ex. Forward Open, Instance Addressing, etc)
LogixDriver Overview
Creating a driver is simple, only a path argument is required. The path can be the IP address, IP and slot, or a full CIP route, refer to the documentation for more details. The example below shows how to create a simple driver and print some of the information collected about the device.
from pycomm3 import LogixDriver with LogixDriver('10.20.30.100/1') as plc: print(plc) # OUTPUT: # Program Name: PLCA, Device: 1756-L83E/B, Revision: 28.13 print(plc.info) # OUTPUT: # {'vendor': 'Rockwell Automation/Allen-Bradley', 'product_type': 'Programmable Logic Controller', # 'product_code': 166, 'version_major': 28, 'version_minor': 13, 'revision': '28.13', 'serial': 'FFFFFFFF', # 'device_type': '1756-L83E/B', 'keyswitch': 'REMOTE RUN', 'name': 'PLCA'}
Unit Testing
pytest is used for unit testing. The tests directory contains an L5X export of the testing program that contains all tags necessary for testing. The only requirement for testing (besides a running PLC with the testing program) is the environment variable PLCPATH for the PLC defined.
User Tests
These tests are for users to run. There are a few tests that are specific to a demo plc, those are excluded. To run them you have the following options:
with tox:
modify the PLCPATH variable in tox.ini
then run this command: tox -e user
or with pytest:
set PLCPATH=192.168.1.100
pytest --ignore tests/online/test_demo_plc.py
(or the equivalent in your shell)
License
pycomm3 is distributed under the MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pycomm3-1.2.14.tar.gz
.
File metadata
- Download URL: pycomm3-1.2.14.tar.gz
- Upload date:
- Size: 82.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffabe89cda3df733fc046e261c15d263134f2f35d7dbb6aedf788203a10615b7 |
|
MD5 | 6d2a6628007a8b4a2f979d3c7d94b751 |
|
BLAKE2b-256 | 3fb2df114dbd89e5d76b0095c4d10b981da11d788962fe325e6df349fe31698b |
File details
Details for the file pycomm3-1.2.14-py3-none-any.whl
.
File metadata
- Download URL: pycomm3-1.2.14-py3-none-any.whl
- Upload date:
- Size: 99.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49cd78b13bddf2ff234f77dc1d9048f5e139ac6fa2b77c7320aa2b90eb5c4ace |
|
MD5 | 9c9d9e9c61e1aa8c7cf26936cbb16c4c |
|
BLAKE2b-256 | a851b6311236a3799e2432343a249f6f6628f4160b44881381433739c85eccd2 |