无法在子进程中写入stdin

时间:2013-06-26 20:16:52

标签: python windows subprocess stdin python-3.2

我无法在python 3.2.5中将命令传递给stdin。我试过以下两种方法 另外:这个问题是previous question的延续。

from subprocess import Popen, PIPE, STDOUT
import time

p = Popen([r'fileLoc/uploader.exe'],shell = True, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
p.stdin.write('uploader -i file.txt -d outputFolder\n')
print (p.communicate()[0])
p.stdin.close()

当我在IDLE解释器中尝试代码时,我还会收到96,0,85这样的数字,以及来自print (p.communicate()[0])

的错误
Traceback (most recent call last):
  File "<pyshell#132>", line 1, in <module>
    p.communicate()[0]
  File "C:\Python32\lib\subprocess.py", line 832, in communicate
    return self._communicate(input)
  File "C:\Python32\lib\subprocess.py", line 1060, in _communicate
    self.stdin.close()
IOError: [Errno 22] Invalid argument

我也用过:

from subprocess import Popen, PIPE, STDOUT
    import time

    p = Popen([r'fileLoc/uploader.exe'],shell = True, stdout=PIPE, stdin=PIPE, stderr=STDOUT)
    p.communicate(input= bytes(r'uploader -i file.txt -d outputFolder\n','UTF-8'))[0]
    print (p.communicate()[0])
    p.stdin.close()

但没有运气。

2 个答案:

答案 0 :(得分:0)

  • 在将参数作为列表传递时不要使用shell=True
  • stdin.write需要bytes个对象作为参数。您尝试连接str
  • communicate()将输入写入stdin并返回一个输出为stdoutsterr的元组,并等待该过程完成。您只能使用一次,尝试再次调用它将导致错误。
  • 您确定要编写的行应该传递给stdin上的进程吗?不应该是你试图运行的命令吗?

答案 1 :(得分:0)

  1. 将命令参数作为参数传递,而不是作为stdin
  2. 传递
  3. 该命令可以直接从控制台读取用户名/密码,而无需使用子进程'stdin。在这种情况下,您可能需要winpexpectSendKeys个模块。请参阅my answer to a similar quesiton that has corresponding code examples
  4. 这是一个如何使用参数启动子进程,传递一些输入,并将合并的子进程'stdout / stderr写入文件的示例:

    #!/usr/bin/env python3
    import os
    from subprocess import Popen, PIPE, STDOUT
    
    command = r'fileLoc\uploader.exe -i file.txt -d outputFolder'# use str on Windows
    input_bytes = os.linesep.join(["username@email.com", "password"]).encode("ascii")
    with open('command_output.txt', 'wb') as outfile:
        with Popen(command, stdin=PIPE, stdout=outfile, stderr=STDOUT) as p:
            p.communicate(input_bytes)