I am using "subprocess" to execute a .exe file from a Python script. I need to do this in a loop, ie start the .exe, run it for a minute, kill it, do it all over again.
I am using subprocess.check_call to execute it with arguments, but I don't know how to stop it.