To launch programs from my Python-scripts, I\'m using the following method:
def execute(command): process = subprocess.Popen(command, shell=True, stdout=s
This works at least in Python3.4
import subprocess process = subprocess.Popen(cmd_list, stdout=subprocess.PIPE) for line in process.stdout: print(line.decode().strip())