0

如何将字符串/数据发送到 python 中正在运行的进程的 STDIN?

我想为 CLI 程序创建一个前端。例如。我想将多个字符串传递给这个 Pascal 应用程序:

program spam;
var a,b,c:string;
begin
while e <> "no" do
begin
    writeln('what is your name?');
    readln(a);
    writeln('what is your quest?');
    readln(b);
    writeln('what is your favorite color?');
    readln(c);
    print(a,b,c);
end;
end.

我如何从 python 将字符串传递给这个程序(使用 python 中的子进程模块)。谢谢你。对不起我的英语不好。

4

1 回答 1

2

如果您想控制另一个交互式程序,可能值得尝试Pexpect 模块来执行此操作。它旨在寻找提示信息等,并与程序进行交互。请注意,它目前不能直接在 Windows 上工作 - 它在 Cygwin 下工作。

一个可能的非 Cygwin Windows 变体是WinPexpect,我通过这个问题找到了它。该问题的一个答案表明最新版本的 WinPexpect 位于http://sage.math.washington.edu/home/goreckc/sage/wexpect/,但查看修改日期我认为是 BitBucket(第一个链接) 实际上是最新的。

由于 Windows 终端与 Unix 终端有些不同,我认为没有直接的跨平台解决方案。但是,WinPexpect 文档说它和 pexpect 在 API 上的唯一区别是 spawn 函数的名称。您可能可以执行以下(未经测试)代码以使其在两者中都可以工作:

try:
    import pexpect
    spawn = pexpect.spawn
except ImportError:
    import winpexpect
    spawn = winpexpect.winspawn

# NB. Errors may occur when you run spawn rather than (or as
# well as) when you import it, so you may have to wrap this 
# up in a try...except block and handle them appropriately.
child = spawn('command and args')
于 2012-06-18T07:56:08.167 回答