我使用子进程在Python脚本中调用外部程序。外部程序产生大量输出。我需要捕获这个程序的输出。目前的代码是这样的:
process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
while process.poll() != None:
line = process.stdout.readline()
print line
我使用此代码获得的错误是
该过程试图写入不存在的管道。
如果我使用以下代码:
process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
o, e = process.communicate()
print o
然后没有捕获程序的输出。
我应该如何更改代码,以便在运行时捕获第三方程序的输出?
答案 0 :(得分:3)
Popen有点矫枉过正。
尝试:
output = subprocess.check_output('gams "indus89.gms"\r\n', shell=True)
希望这将适用于您的环境。