In the plc database i have a database named "status" which has a variable named "Temperature". Since I know the names, I access the value of this variable like this:
from opcua import Client
client = Client("url")
client.connect()
temperature = client.get_node("ns=3;s=\"status\".\"Temperature\"").get_value()
Now how can I get this information without knowledge of database or variable name? I want a general code that takes everything from a given PLC url.