Skip to main content
Version: 7.9

system.opc.getServers

This function is used in Python Scripting.

Description​

Returns a list of server names.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.opc.getServers()

Parameters​

None

Returns​

List - A list of server name strings. If no servers are found, returns an empty list.

Scope​

All

Code Examples​

Code Snippet
# print a list of all server names found
servers = system.opc.getServers()
if not servers:
print "No servers found"
else:
for server in servers:
print server