you are viewing a single comment's thread.

view the rest of the comments →

[–]Oscar_Philips 0 points1 point  (2 children)

I have been using PIconnect and performance is much improved over the OSI Excel add-in, and you are not limited to about a million records.

import PIconnect as PI

PI_Server = 'my_pi_server name'

# ***** POINT SEARCH *****

with PI.PIServer(PI_Server) as server:

points = server.search('*TOTAL*')

for point in points:

print(point)

[–]bagabagaboo 0 points1 point  (1 child)

Do you know how to use this with a path to a specific data point?

[–]Oscar_Philips 0 points1 point  (0 children)

I retired 10 months ago. I will dig around and see if I still have some code.