Try to run the python with the debugger (python -m pdb getAuditLog.py) and break the code at lines 31, 34 and 38 (e.g. b 31) where xmlrpclib calls are being performed. Continue with the script (type c) and when reaching the breakpoints, step over the call (using n or s) to find the the issue.
... View more
Hi Declan
nCircleAPI is available in the bin folder of the App itself. The nCircleAPI is automatically included by the App's python scripts.
In order to run the scripts, Python interpreter should be available on the OS - for Windows check here: https://www.python.org/downloads/
... View more