from test_common import * from time import sleep connect("opc.tcp://localhost:4843/") names=get_all_variables() for name in names: att=get_value(name) print(name,'=',att) disconnect();