我正在使用子进程从下面调用python脚本。在命令行中,用户使用raw_input
选择要打开的文件import optparse
import subprocess
import readline
import os
def main():
options = {'0': './option_0.py',
'1': './option_1.py',
'2': './option_2.py',
'3': './option_3.py'}
input = -1
while True:
if input in options:
file = options[input]
subprocess.Popen(file)
else:
print "Welcome"
print "0. option_0"
print "1. option_1"
print "2. option_2"
print "3. option_3"
input = raw_input("Please make a selection: ")
if __name__ == '__main__':
main()
但是在调用的子进程(比如调用option_1.py)上,我再次使用raw_input来接受来自用户的提示。我知道.PIPE参数并试过
subprocess.Popen(file, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
但又没有运气。
答案 0 :(得分:3)
以下是子进程接收输入的示例:
import subprocess
import sys
command = 'python -c \'print raw_input("Please make a selection: ")\''
sp = subprocess.Popen(command, shell = True, stdin = sys.stdin)
sp.wait()
答案 1 :(得分:2)
如果我理解您的问题,您希望将当前标准输入重定向到子流程。可以这样做:
subprocess.Popen(file, stdin=sys.stdin, ...)