37

我正在使用 Python 2.6 开发 GUI 前端,通常它相当简单:您使用subprocess.call()orsubprocess.Popen()发出命令并等待它完成或对错误做出反应。如果你有一个程序停止并等待用户交互,你会怎么做?例如,程序可能会停止并询问用户 ID 和密码或如何处理错误?

c:\> parrot
Military Macaw - OK
Sun Conure - OK
African Grey - OK
Norwegian Blue - Customer complaint!
(r) he's Resting, (h) [Hit cage] he moved, (p) he's Pining for the fjords

到目前为止,我所阅读的所有内容都告诉您如何仅程序完成后读取程序的所有输出,而不是如何在程序仍在运行时处理输出。我无法安装新模块(这是针对 LiveCD 的),并且我将多次处理用户输入。

4

1 回答 1

40

查看子流程手册。您可以选择将您调用的进程的 、 和 重定向到您自己的进程subprocessstdinstdoutstderr

from subprocess import Popen, PIPE, STDOUT

p = Popen(['grep', 'f'], stdout=PIPE, stdin=PIPE, stderr=STDOUT)

grep_stdout = p.communicate(input='one\ntwo\nthree\nfour\nfive\nsix\n')[0]
print grep_stdout

您还可以逐行与流程交互。鉴于此prog.py

import sys
print 'what is your name?'
sys.stdout.flush()
name = raw_input()
print 'your name is ' + name
sys.stdout.flush()

您可以通过以下方式逐行与其交互:

>>> from subprocess import Popen, PIPE, STDOUT
>>> p = Popen(['python', 'prog.py'], stdout=PIPE, stdin=PIPE, stderr=STDOUT)
>>> p.stdout.readline().rstrip()
'what is your name'
>>> p.communicate('mike')[0].rstrip()
'your name is mike'

编辑:在 python3 中,它需要是'mike'.encode().

于 2013-01-22T12:49:29.147 回答