透過stdin 將字串傳遞給subprocess.Popen
為了將字串傳遞給subprocess.Popen,必須指定stdin=函數呼叫中的PIPE。這使得 Popen 物件的 stdin 屬性成為可以從字串接收資料的類別檔案物件。
為了示範這一點,可以實現以下範例:
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()) # -> four # -> five # ->
透過提供stdin=PIPE,輸入字串可以透過stdin.communicate() 傳遞到grep 進程,從而允許處理輸入資料並擷取指令的
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) # -> 0 print(p.stdout) # -> four # -> five # ->
透過使用 subprocess.run,可以將輸入字串直接作為實參傳遞給輸入參數,使得資料通訊更直接。
以上是如何在 Python 中將字串傳遞給 `subprocess.Popen` 和 `subprocess.run`?的詳細內容。更多資訊請關注PHP中文網其他相關文章!