Hi
I have a python script ( on additional Pollers) that connects to swql on the main poller and runs a swql query.
session = requests.Session()
session.timeout = 30
swis = orionsdk.SwisClient(npm_server, username, password, session = session)
This works fine but do not want to use my account login info.
When logged onto the main poller i run swql studio and can change the server type to - Orion(v3) Certificate and it connects without entering any username or password
Is there a way I can use this method with my Python script ?
Thanks