函數(shù)名 | 描述 |
---|---|
os.system(command) | 返回命令執(zhí)行狀態(tài)碼,而將命令執(zhí)行結(jié)果輸出到屏幕 |
os.popen(command).read() | 可以獲取命令執(zhí)行結(jié)果,但是無法獲取命令執(zhí)行狀態(tài)碼 |
commands.getstatusoutput(command) | 返回一個(gè)元組(命令執(zhí)行狀態(tài)碼, 命令執(zhí)行結(jié)果) |
說明:
os.popen(command)函數(shù)得到的是一個(gè)文件對象,因此除了read()方法外還支持write()等方法,具體要根據(jù)command來定;
commands模塊只存在于Python 2.7中,且不支持windows平臺,因此commands模塊很少被使用。另外,commands模塊實(shí)際上也是通過對os.popen()的封裝來完成的。
>>> import os >>> >>> retcode = os.system('dir') 驅(qū)動器 C 中的卷沒有標(biāo)簽。 卷的序列號是 4C32-B292 C:\Users\wader\PycharmProjects\LearnPython 的目錄 2017/03/21 11:15 DIR> . 2017/03/21 11:15 DIR> .. 2017/07/29 18:04 DIR> .idea 2016/12/06 11:19 DIR> blog 2016/12/06 11:42 DIR> day01 2016/12/09 22:07 DIR> day02 2017/01/04 09:14 DIR> day03 2017/07/19 16:11 DIR> day04 2017/07/29 14:44 DIR> day05 2017/07/06 14:45 DIR> day06 2017/07/06 17:13 DIR> exam01 0 個(gè)文件 0 字節(jié) 11 個(gè)目錄 6,659,977,216 可用字節(jié) >>> retcode 0 >>>
>>> import os >>> >>> ret = os.popen('dir').read() >>> print(ret) 驅(qū)動器 C 中的卷沒有標(biāo)簽。 卷的序列號是 4C32-B292 C:\Users\wader\PycharmProjects\LearnPython 的目錄 2017/03/21 11:15 DIR> . 2017/03/21 11:15 DIR> .. 2017/07/29 18:04 DIR> .idea 2016/12/06 11:19 DIR> blog 2016/12/06 11:42 DIR> day01 2016/12/09 22:07 DIR> day02 2017/01/04 09:14 DIR> day03 2017/07/19 16:11 DIR> day04 2017/07/29 14:44 DIR> day05 2017/07/06 14:45 DIR> day06 2017/07/06 17:13 DIR> exam01 0 個(gè)文件 0 字節(jié) 11 個(gè)目錄 6,664,052,736 可用字節(jié) >>>
需要注意的是commands模塊不支持windows平臺,因此該實(shí)例是在Linux平臺下執(zhí)行的
>>> import os >>> os.system('ls') cmdline-jmxclient-0.10.3.jar dhparam.pem FtpMan.class gitlab.crt gitlab.csr gitlab.key resolv.txt test.json test.php test.sh test.text test.txt 0 >>> import commands >>> retcode, ret = commands.getstatusoutput('ls -l') >>> retcode 0 >>> print(ret) total 68 -rw-r--r-- 1 root root 20124 Jul 11 2016 cmdline-jmxclient-0.10.3.jar -rw-r--r-- 1 root root 424 Aug 22 2016 dhparam.pem -rw-r--r-- 1 root root 2576 Jul 13 2016 FtpMan.class -rw-r--r-- 1 root root 1302 Aug 22 2016 gitlab.crt -rw-r--r-- 1 root root 1054 Aug 22 2016 gitlab.csr -rw-r--r-- 1 root root 1675 Aug 22 2016 gitlab.key -rw-r--r-- 1 root root 9329 Jun 24 2016 resolv.txt -rw-r--r-- 1 root root 594 Mar 7 08:14 test.json -rw-r--r-- 1 root root 162 Jun 28 10:39 test.php -rw-r--r-- 1 root root 760 Jun 24 2016 test.sh -r-x------ 1 root root 0 Feb 6 08:21 test.text drwxr-xr-x 2 root root 4096 Feb 7 16:43 test.txt >>>
通過查看commands模塊提供的屬性可知,它也提供了單獨(dú)獲取命令執(zhí)行狀態(tài)碼和執(zhí)行結(jié)果的函數(shù),如下所示:
>>> dir(commands) ['__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', 'getoutput', 'getstatus', 'getstatusoutput', 'mk2arg', 'mkarg']
subprocess是Python 2.4中新增的一個(gè)模塊,它允許你生成新的進(jìn)程,連接到它們的 input/output/error 管道,并獲取它們的返回(狀態(tài))碼。這個(gè)模塊的目的在于替換幾個(gè)舊的模塊和方法,如:
函數(shù) | 描述 |
---|---|
subprocess.run() | Python 3.5中新增的函數(shù)。執(zhí)行指定的命令,等待命令執(zhí)行完成后返回一個(gè)包含執(zhí)行結(jié)果的CompletedProcess類的實(shí)例。 |
subprocess.call() | 執(zhí)行指定的命令,返回命令執(zhí)行狀態(tài),其功能類似于os.system(cmd)。 |
subprocess.check_call() | Python 2.5中新增的函數(shù)。 執(zhí)行指定的命令,如果執(zhí)行成功則返回狀態(tài)碼,否則拋出異常。其功能等價(jià)于subprocess.run(..., check=True)。 |
subprocess.check_output() | Python 2.7中新增的的函數(shù)。執(zhí)行指定的命令,如果執(zhí)行狀態(tài)碼為0則返回命令執(zhí)行結(jié)果,否則拋出異常。 |
subprocess.getoutput(cmd) | 接收字符串格式的命令,執(zhí)行命令并返回執(zhí)行結(jié)果,其功能類似于os.popen(cmd).read()和commands.getoutput(cmd)。 |
subprocess.getstatusoutput(cmd) | 執(zhí)行cmd命令,返回一個(gè)元組(命令執(zhí)行狀態(tài), 命令執(zhí)行結(jié)果輸出),其功能類似于commands.getstatusoutput()。 |
說明:
函數(shù)參數(shù)列表:
subprocess.run(args, *, stdin=None, input=None, stdout=None, stderr=None, shell=False, timeout=None, check=False, universal_newlines=False) subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) subprocess.check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) subprocess.check_output(args, *, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None) subprocess.getstatusoutput(cmd) subprocess.getoutput(cmd)
參數(shù)說明:
需要說明的是,subprocess.run()函數(shù)是Python3.5中新增的一個(gè)高級函數(shù),其返回值是一個(gè)subprocess.CompletedPorcess類的實(shí)例,因此,subprocess.completedPorcess類也是Python 3.5中才存在的。它表示的是一個(gè)已結(jié)束進(jìn)程的狀態(tài)信息,它所包含的屬性如下:
subprocess.run()
>>> subprocess.run(["ls", "-l"]) # doesn't capture output CompletedProcess(args=['ls', '-l'], returncode=0) >>> subprocess.run("exit 1", shell=True, check=True) Traceback (most recent call last): ... subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1 >>> subprocess.run(["ls", "-l", "/dev/null"], stdout=subprocess.PIPE) CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0, stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\n')
subprocess.call()
>>> subprocess.call(['ls', '-l']) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面 0 >>> subprocess.call('ls -l', shell=True) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面 0 >>> subprocess.call(['ls', '-l'], stdout=subprocess.DEVNULL) 0 >>> subprocess.call(['ls', '-l', '/test']) ls: 無法訪問/test: 沒有那個(gè)文件或目錄 2
suprocess.check_call()
>>> subprocess.check_call(['ls', '-l']) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面 0 >>> subprocess.check_call('ls -l', shell=True) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面 0 >>> subprocess.check_call('ls -l /test', shell=True) ls: 無法訪問/test: 沒有那個(gè)文件或目錄 Traceback (most recent call last): File "stdin>", line 1, in module> File "/usr/lib/python3.4/subprocess.py", line 557, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'ls -l /test' returned non-zero exit status 2
sbuprocess.check_output()
>>> ret = subprocess.check_output(['ls', '-l']) >>> print(ret) b' \xe5\x85\xac\xe5\x85\xb1\xe7\x9a\x84\ndrwxr-xr-x 2 wader wader 4096 12\xe6\x9c\x88 7 2015 \xe6\xa8\xa1\xe6\x9d\xbf\ndrwxr-xr-x 2 wader wader 4096 12\xe6\x9c\x88 7 2015 \xe8\xa7\x86\xe9\xa2\x91\ndrwxr-xr-x 2 wader wader 4096 12\xe6\x9c\x88 7 2015 \xe5\x9b\xbe\xe7\x89\x87\ndrwxr-xr-x 2 wader wader 4096 12\xe6\x9c\x88 7 2015 \xe6\x96\x87\xe6\xa1\xa3\ndrwxr-xr-x 2 wader wader 4096 4\xe6\x9c\x88 13 2016 \xe4\xb8\x8b\xe8\xbd\xbd\ndrwxr-xr-x 2 wader wader 4096 12\xe6\x9c\x88 7 2015 \xe9\x9f\xb3\xe4\xb9\x90\ndrwxr-xr-x 7 wader wader 4096 5\xe6\x9c\x88 26 2016 \xe6\xa1\x8c\xe9\x9d\xa2\n' >>> ret = subprocess.check_output(['ls', '-l'], universal_newlines=True) >>> print(ret) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面
subprocess.getoutput()與subprocess.getstatusoutput()
>>> ret = subprocess.getoutput('ls -l') >>> print(ret) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面 >>> retcode, output = subprocess.getstatusoutput('ls -l') >>> print(retcode) 0 >>> print(output) 總用量 160 drwxr-xr-x 2 wader wader 4096 12月 7 2015 公共的 drwxr-xr-x 2 wader wader 4096 12月 7 2015 模板 drwxr-xr-x 2 wader wader 4096 12月 7 2015 視頻 drwxr-xr-x 2 wader wader 4096 12月 7 2015 圖片 drwxr-xr-x 2 wader wader 4096 12月 7 2015 文檔 drwxr-xr-x 2 wader wader 4096 4月 13 2016 下載 drwxr-xr-x 2 wader wader 4096 12月 7 2015 音樂 drwxr-xr-x 7 wader wader 4096 5月 26 2016 桌面 >>> retcode, output = subprocess.getstatusoutput('ls -l /test') >>> print(retcode) 2 >>> print(output) ls: 無法訪問/test: 沒有那個(gè)文件或目錄
該類用于在一個(gè)新的進(jìn)程中執(zhí)行一個(gè)子程序。前面我們提到過,上面介紹的這些函數(shù)都是基于subprocess.Popen類實(shí)現(xiàn)的,通過使用這些被封裝后的高級函數(shù)可以很方面的完成一些常見的需求。由于subprocess模塊底層的進(jìn)程創(chuàng)建和管理是由Popen類來處理的,因此,當(dāng)我們無法通過上面哪些高級函數(shù)來實(shí)現(xiàn)一些不太常見的功能時(shí)就可以通過subprocess.Popen類提供的靈活的api來完成。
class subprocess.Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, universal_newlines=False, startup_info=None, creationflags=0, restore_signals=True, start_new_session=False, pass_fds=())
參數(shù)說明:
方法 | 描述 |
---|---|
Popen.poll() | 用于檢查子進(jìn)程(命令)是否已經(jīng)執(zhí)行結(jié)束,沒結(jié)束返回None,結(jié)束后返回狀態(tài)碼。 |
Popen.wait(timeout=None) | 等待子進(jìn)程結(jié)束,并返回狀態(tài)碼;如果在timeout指定的秒數(shù)之后進(jìn)程還沒有結(jié)束,將會拋出一個(gè)TimeoutExpired異常。 |
Popen.communicate(input=None, timeout=None) | 該方法可用來與進(jìn)程進(jìn)行交互,比如發(fā)送數(shù)據(jù)到stdin,從stdout和stderr讀取數(shù)據(jù),直到到達(dá)文件末尾。 |
Popen.send_signal(signal) | 發(fā)送指定的信號給這個(gè)子進(jìn)程。 |
Popen.terminate() | 停止該子進(jìn)程。 |
Popen.kill() | 殺死該子進(jìn)程。 |
關(guān)于communicate()方法的說明:
實(shí)例1:
>>> import subprocess >>> >>> p = subprocess.Popen('df -Th', stdout=subprocess.PIPE, shell=True) >>> print(p.stdout.read()) Filesystem Type Size Used Avail Use% Mounted on /dev/vda1 ext4 40G 12G 26G 31% / devtmpfs devtmpfs 3.9G 0 3.9G 0% /dev tmpfs tmpfs 3.9G 0 3.9G 0% /dev/shm tmpfs tmpfs 3.9G 386M 3.5G 10% /run tmpfs tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup tmpfs tmpfs 783M 0 783M 0% /run/user/0 tmpfs tmpfs 783M 0 783M 0% /run/user/1000
實(shí)例2:
>>> obj = subprocess.Popen(["python"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) >>> obj.stdin.write('print(1) \n') >>> obj.stdin.write('print(2) \n') >>> obj.stdin.write('print(3) \n') >>> out,err = obj.communicate() >>> print(out) 1 2 3 >>> print(err)
實(shí)例3:
>>> obj = subprocess.Popen(["python"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) >>> out,err = obj.communicate(input='print(1) \n') >>> print(out) 1 >>> print(err)
實(shí)例4:
實(shí)現(xiàn)類似df -Th | grep data命令的功能,實(shí)際上就是實(shí)現(xiàn)shell中管道的共功能。
>>> >>> p1 = subprocess.Popen(['df', '-Th'], stdout=subprocess.PIPE) >>> p2 = subprocess.Popen(['grep', 'data'], stdin=p1.stdout, stdout=subprocess.PIPE) >>> out,err = p2.communicate() >>> print(out) /dev/vdb1 ext4 493G 4.8G 463G 2% /data /dev/vdd1 ext4 1008G 420G 537G 44% /data1 /dev/vde1 ext4 985G 503G 432G 54% /data2 >>> print(err) None
那么我們到底該用哪個(gè)模塊、哪個(gè)函數(shù)來執(zhí)行命令與系統(tǒng)及系統(tǒng)進(jìn)行交互呢?下面我們來做個(gè)總結(jié):
到此這篇關(guān)于Python實(shí)現(xiàn)系統(tǒng)交互(subprocess)的文章就介紹到這了,更多相關(guān)Python 系統(tǒng)交互內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
標(biāo)簽:許昌 西安 濰坊 辛集 贛州 雅安 渭南 七臺河
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Python實(shí)現(xiàn)系統(tǒng)交互(subprocess)》,本文關(guān)鍵詞 Python,實(shí)現(xiàn),系統(tǒng),交互,subprocess,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。