將字串輸入傳遞給subprocess.Popen
嘗試將StringIO 物件作為標準輸入傳遞給subprocess.Popen 時遇到的錯誤表明StringIO子程序不會將物件識別為有效的類別文件物件。要解決此問題並成功將字串作為標準輸入傳遞,需要先建立到 Popen 進程的管道。
使用明確管道建立
子程序。 Communications() 文件建議使用 stdin=PIPE 建立一個管道,以將資料傳送到進程的 stdin。這可以透過修改程式碼來實現,如下所示:
import subprocess from subprocess import Popen, PIPE, STDOUT p = Popen(['grep', 'f'], stdout=PIPE, stdin=PIPE, stderr=STDOUT) grep_stdout = p.communicate(input=b'one\ntwo\nthree\nfour\nfive\nsix\n')[0] print(grep_stdout.decode())
此程式碼建立一個到 grep 進程的管道,允許輸入字串透過 stdin 參數傳遞。
使用 subprocess.run (Python 3.5 )
對於 Python 3.5 及更高版本, subprocess.run可用於在單一呼叫中以字串形式傳遞輸入並以字串形式檢索輸出:
#!/usr/bin/env python3 from subprocess import run, PIPE p = run(['grep', 'f'], stdout=PIPE, input='one\ntwo\nthree\nfour\nfive\nsix\n', encoding='ascii') print(p.returncode) print(p.stdout)
此方法提供了明確管道創建方法的簡潔替代方法。
以上是如何將字串作為標準輸入傳遞給 subprocess.Popen?的詳細內容。更多資訊請關注PHP中文網其他相關文章!