/
MATES
/ Modular Automatic Test Equipment System API
2.5.0.0
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
mates_test_22.py
1
import
mates
2
with mates.Mates(
"proxy.mon"
, 1)
as
m:
3
print(
"Connected nodes:"
)
4
for
node
in
(20, 21, 50, 51):
5
try
:
6
print(m.node_info(node))
7
except
:
8
print(
"<not found>"
)