2. Start Debugger Server in Eclipse
import sys
sys.path.append(r'../pysrc')
import pydevd
pydevd.settrace('10.51.2.91', port=5678) # IP of your Eclipse machine
or
pydevd.settrace('10.51.2.91', port=5678, stdoutToServer=True, stderrorToServer=True)
where IP is adress of machine running Eclipse program
