Commit 34bf4bea authored by Olivier R-D's avatar Olivier R-D

Merge branch 'master' of github.com:FreeOpcUa/python-opcua

parents 8725a8c6 a750605a
...@@ -11,9 +11,9 @@ Most code is autogenerated from xml specification using same code as the one tha ...@@ -11,9 +11,9 @@ Most code is autogenerated from xml specification using same code as the one tha
Using Python > 3.4 the server and client do not require any third party libraries. If using python 2.7 or pypy < 3 you need to install enum34, trollius(asyncio), and futures(concurrent.futures), with pip for example. Server and client can be run with pypy. Using Python > 3.4 the server and client do not require any third party libraries. If using python 2.7 or pypy < 3 you need to install enum34, trollius(asyncio), and futures(concurrent.futures), with pip for example. Server and client can be run with pypy.
coveryage.py reports a test coverage of over 90% of code, most of the rest is autogenerate code that is not used yet. coveryage.py reports a test coverage of over 90% of code, most of non-tested code is autogenerate code that is not used yet.
Soe documentation is available at http://python-opcua.readthedocs.org/en/latest/ Some documentation is available at http://python-opcua.readthedocs.org/en/latest/
Client: what works: Client: what works:
* connection to server, opening channel, session * connection to server, opening channel, session
...@@ -24,6 +24,7 @@ Client: what works: ...@@ -24,6 +24,7 @@ Client: what works:
* subscribing to events * subscribing to events
* adding nodes * adding nodes
* method call * method call
* user and password
Tested servers: freeopcua C++, freeopcua Python, prosys Tested servers: freeopcua C++, freeopcua Python, prosys
...@@ -32,7 +33,7 @@ Client: what is not implemented yet ...@@ -32,7 +33,7 @@ Client: what is not implemented yet
* removing nodes * removing nodes
* adding missing modify methods * adding missing modify methods
* certificate handling * certificate handling
* user and password
Server: what works: Server: what works:
* creating channel and sessions * creating channel and sessions
...@@ -43,6 +44,7 @@ Server: what works: ...@@ -43,6 +44,7 @@ Server: what works:
* datachange events * datachange events
* events * events
* methods * methods
* basic user implementation (one existing user called admin, which can be disabled, all others are read only)
Tested clients: freeopcua C++, freeopcua Python, uaexpert, prosys, quickopc Tested clients: freeopcua C++, freeopcua Python, uaexpert, prosys, quickopc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment