Get a specific node using NodeId object or a string representing a NodeId
(self, nodeid)
| 380 | return self.get_node(ua.FourByteNodeId(ua.ObjectIds.Server)) |
| 381 | |
| 382 | def get_node(self, nodeid): |
| 383 | """ |
| 384 | Get a specific node using NodeId object or a string representing a NodeId |
| 385 | """ |
| 386 | return Node(self.iserver.isession, nodeid) |
| 387 | |
| 388 | def create_subscription(self, period, handler): |
| 389 | """ |