I am trying to call a python program which just sends me a text on my phone from a Sikuli script.I am a beginner and my goal is to receive a text when a certain loop is finished, but I don't know how to call on it from the Sikuli script. This is a small part of my code from Sikuli so far.
while (something):
if (randomThing):
something = False
subprocess.Popen("python SendSMS.py")
I get an OS error saying no such file or directory. Is there a better way to do this? or what am I doing wrong here? I am using Mac.