您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)怎么在Python中使用Subprocess解析不同的函數(shù),小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
subprocess.call()
執(zhí)行由參數(shù)提供的命令.
我們可以用數(shù)組作為參數(shù)運行命令,也可以用字符串作為參數(shù)運行命令(通過設(shè)置參數(shù)shell=True)
注意,參數(shù)shell默認(rèn)為False
我們用subprocess.call()來做一個統(tǒng)計磁盤的例子:
subprocess.call(['df', '-h'])
下面的例子把shell設(shè)置為True
subprocess.call('du -hs $HOME', shell=True)
注意,python官方文檔里對參數(shù)shell=True陳述了一個警告:
Invoking the system shell with shell=True can be a security hazard if combined with untrusted input
現(xiàn)在,我們來看看輸入與輸出
Input and Output
subprocess 模塊能阻止輸出,當(dāng)你不關(guān)心標(biāo)準(zhǔn)輸出的時候是非常方便的.
它也使你通過一種正確的方式管理輸入/輸出,有條理地整合python腳本中的的shell命令.
Return Codes
通過subprocess.call的返回值你能夠判定命令是否執(zhí)行成功.
每一個進(jìn)程退出時都會返回一個狀態(tài)碼,你可以根據(jù)這個狀態(tài)碼寫一些代碼。
stdin, stdout and stderr
在使用subprocess 時,有一個微妙的部分是怎么使用管道把命令連接起來.
管道表明一個新的子管道應(yīng)該被創(chuàng)建.
默認(rèn)的設(shè)置為None,意味著沒有重定向發(fā)生
標(biāo)準(zhǔn)錯誤可以指向標(biāo)準(zhǔn)輸出,表明子進(jìn)程的錯誤信息會被捕獲到和標(biāo)準(zhǔn)輸出同一個文件.
subprocess.Popen()
subprocess 模塊中基本的進(jìn)程創(chuàng)建和管理由Popen 類來處理.
subprocess.popen是用來替代os.popen的.
我們來做一些真實的例子,subprocess.Popen需要一個數(shù)組作為參數(shù):
import subprocess p = subprocess.Popen(["echo", "hello world"], stdout=subprocess.PIPE) print p.communicate() >>>('hello world ', None)
注意,雖然你可以使用 "shell=True",但并不推薦這樣的方式.
如果你知道你只用幾個有限的函數(shù),比如Popen和PIPE,你可以單單指定這幾個函數(shù):
from subprocess import Popen, PIPE p1 = Popen(["dmesg"], stdout=PIPE) print p1.communicate()
Popen.communicate()
communicate()函數(shù)返回一個tuple(標(biāo)準(zhǔn)輸出和錯誤).
Popen.communicate() 和進(jìn)程溝通:發(fā)送數(shù)據(jù)到標(biāo)準(zhǔn)輸入.從標(biāo)準(zhǔn)輸出和錯誤讀取數(shù)據(jù)直到遇到結(jié)束符.等待進(jìn)程結(jié)束.
輸入?yún)?shù)應(yīng)該是一個字符串,以傳遞給子進(jìn)程,如果沒有數(shù)據(jù)的話應(yīng)該是None.
基本上,當(dāng)你用 communicate()函數(shù)的時候意味著你要執(zhí)行命令了.
用subprocess寫Ping程序
我們先問用戶地址,然后用ping請求這個地址.
# Import the module import subprocess # Ask the user for input host = raw_input("Enter a host to ping: ") # Set up the echo command and direct the output to a pipe p1 = subprocess.Popen(['ping', '-c 2', host], stdout=subprocess.PIPE) # Run the command output = p1.communicate()[0] print output
以上就是怎么在Python中使用Subprocess解析不同的函數(shù),小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。