Alexander Schrode

Results 177 comments of Alexander Schrode

I get your view, which is python colored view. In reality you communicate with servers/clients, that use other sdks, which distinguish between a null string and an empty string. And...

I am ok with the change. But maybe we wait for @oroulet, because he changed to code, sometime ago.

Its not possible because it would not change anything. Because the reason the issue was started is, that you cant just type` ua.String()`or `ua.String('ABC')`. Also we use the type informations...

We are currently using http://opcfoundation.org/UA/ version 1.04.10 we haven't updated the library yet. In the near future we will update to V1.05.XX. You can update the schema your self see:...

I tried it some time ago and there were some code changes needed to get UA 1.05 working.

The descrpiton is maybe a bit out of date. You run **update_ua_nodeset.py** that pulls the latest nodeset(Opc.Ua.NodeSet2.xml etc) from github and executes all scripts needed to update the library. This...

Update to 1.05.02 see #1047 Will make a pr to get the schema generation working on windows next.

Schema generation works know under windows in #1049 . Also you can chose now which branch and/or tag to use, via commandline.

We lately added the function `check_connection` which throws an exception if the connection is lost. In the near future i want to add a callback to the subscription handler if...

Try something like this: ``` def run_client(client: Client): async with client: handler = SubscriptionHandler() subscription = await client.create_subscription(C.TIME_UPDATE, handler) await subscription.subscribe_data_change(C.node_list) while 1: await asyncio.sleep(1) client.check_connection() async def main(): """...