Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FreeOpcUa/opcua-client-gui
OPC-UA GUI Client
https://github.com/FreeOpcUa/opcua-client-gui
Last synced: 2 months ago
JSON representation
OPC-UA GUI Client
- Host: GitHub
- URL: https://github.com/FreeOpcUa/opcua-client-gui
- Owner: FreeOpcUa
- License: gpl-3.0
- Created: 2015-09-26T19:22:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T12:58:57.000Z (over 1 year ago)
- Last Synced: 2024-11-08T07:50:42.749Z (2 months ago)
- Language: Python
- Size: 1.73 MB
- Stars: 531
- Watchers: 44
- Forks: 172
- Open Issues: 52
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-industrial-protocols - opcua-client-gui - Simple OPC-UA GUI client (OPC-UA / Tools)
README
Simple OPC-UA GUI client.
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/FreeOpcUa/opcua-client-gui/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/FreeOpcUa/opcua-client-gui/?branch=master)
[![Build Status](https://travis-ci.org/FreeOpcUa/opcua-client-gui.svg?branch=master)](https://travis-ci.org/FreeOpcUa/opcua-client-gui)
[![Build Status](https://travis-ci.org/FreeOpcUa/opcua-widgets.svg?branch=master)](https://travis-ci.org/FreeOpcUa/opcua-widgets)Written using freeopcua python api and pyqt. Most needed functionalities are implemented including subscribing for data changes and events, write variable values listing attributes and references, and call methods. PR are welcome for any whished improvments
It has also a contextual menu with a few usefull function like putting the mode id in clipboard or the entire browse path which can be used directly in you program: client.nodes.root.get_child(['0:Objects', '2:MyNode'])
![Screenshot](/screenshot.png?raw=true "Screenshot")
What works:
* connecting and disconnecting
* browsing with icons per node types
* showing attributes and references
* subscribing to variable
* available on pip: sudo pip install opcua-client
* remember connections and show connection history
* subscribing to events
* write variable node values
* gui for certificates
* gui for encryption
* call methods
* plot method values
* remember last browsed path and restore stateTODO (listed after priority):
* detect lost connection and automatically reconnect
* gui for loging with certificate or user/password (can currently be done by writting them in uri)
* Maybe read history
* Something else?# How to Install
*Note: PyQT 5 is required.*
### Linux:
1. Make sure python and python-pip is installed
2. `pip3 install opcua-client`
4. Run with: `opcua-client`
### Windows:1. Install winpython https://winpython.github.io/ , install the version including pyqt5!
3. Use pip to install opcua-client: `pip install opcua-client`
4. Run via the script pip created: `YOUR_INSTALL_PATH\Python\Python35\Scripts\opcua-client.exe`To update to the latest release run: `pip install opcua-client --upgrade`
### MacOS
1. Make sure python, python-pip and homebrew is installed
2. `brew install pyqt@5`
3. `pip3 install opcua-client pyqtgraph cryptography numpy`
4. Run with `opcua-client`