如何使用Pythonsubprocess通信方法获取退出代码?
如何在使用Python的subprocess
模块和communicate()
方法时检索退出代码?
相关代码:
import subprocess as sp data = sp.Popen(openRTSP + opts.split(), stdout=sp.PIPE).communicate()[0]
我应该以另一种方式做这个吗?
完成(*)后, Popen.communicate
将设置Popen.communicate
属性。 这里是相关的文档部分:
Popen.returncode The child return code, set by poll() and wait() (and indirectly by communicate()). A None value indicates that the process hasn't terminated yet. A negative value -N indicates that the child was terminated by signal N (Unix only).
所以你可以做(我没有testing它,但它应该工作):
import subprocess as sp child = sp.Popen(openRTSP + opts.split(), stdout=sp.PIPE) streamdata = child.communicate()[0] rc = child.returncode
(*)这是因为它的实现方式:在设置线程读取子stream之后,它只是调用wait
。
您应该首先确保进程已经完成运行,并使用.wait
方法读取了返回码。 这将返回代码。 如果您想稍后访问它,则将其作为.returncode
存储在.returncode
对象中。
exitcode = data.wait()
。 subprocess将被阻塞如果写入标准输出/错误,和/或从标准input读取,并且没有对等体。
.poll()
将更新返回码。
尝试
child = sp.Popen(openRTSP + opts.split(), stdout=sp.PIPE) returnCode = child.poll()
另外,在.poll()
之后,返回代码在对象中作为child.returncode
。