Within a Python script I want to open the "Eikon API Proxy".
I have tried by using:
import subprocess
theproc = subprocess.Popen("open /Applications/Eikon\ API\ Proxy.app", shell=True)
theproc.communicate()
to no avail. It
Any suggestions would be welcome.