Jan-23-2017, 05:22 PM
(This post was last modified: Jan-23-2017, 05:22 PM by sharma16aug.)
hi i'm writing a script to simply open and close an application on mac using python. using my voice i want to open the specified application and close it when told so. i'm using speech recognition for giving voice commands and using subprocess to open an application by this method :
here's the listen code:-

Even if somebody could tell me how i can do it, that would be beneficial too.
subprocess.call( ["/usr/bin/open", "-W", "-n", "-a", "/Applications/"+name+".app"] )i can open the application but after opening the application, my main program stops listening. I want it to listen my voice even after opening the application so that i can close it with the voice command.
here's the listen code:-
audio = re.listen(source) try: value=re.recognize_google(audio) value=value.strip().split() name=" ".join(value[1:]) if value[0] in OPEN_COGNATES: speak(opCl.openCmd(name)) pass elif value[0] in CLOSE_COGNATES: speak(opCl.closeCmd(name)) pass else: passopenCmd contains this code only :
subprocess.call( ["/usr/bin/open", "-W", "-n", "-a", "/Applications/"+name+".app"] )closeCmd contains this command for closing the application :
subprocess.call(['osascript', '-e', 'tell application "'+name+'" to quit'])can anybody help me. Also i'm quite naive in this. Thank you in advance.

Even if somebody could tell me how i can do it, that would be beneficial too.