幾種執行shell的方法
介紹一下python執行shell命令的四種方法:
1、os模組中的os.system()這個函數來執行shell命令
注,這個方法得不到shell命令的輸出。
2、popen()#這個方法能得到命令執行後的結果是一個字串,要自行處理才能得到想要的資訊。
這樣得到的結果與第一個方法是一樣的。
3、commands模組#可以很方便的取得命令的輸出(包括標準和錯誤輸出)和執行狀態位
commands.getstatusoutput(cmd)返回(status,output)
commands.getoutput(cmd)只返回輸出結果
commands.getstatus(file)返回ls -ld file 的執行結果字串,調用了getoutput,不建議使用這個方法。
4、subprocess模組
使用subprocess模組可以建立新的進程,可以與建立進程的輸入/輸出/錯誤管道連通,並可以獲得建立進程執行的返回狀態。使用subprocess模組的目的是替代os.system()、os.popen()、commands.等舊的函數或模組。
import subprocess 1、subprocess.call(command, shell=True) #會直接列印出結果。 2、subprocess.Popen(command, shell=True) ###也可以是 subprocess.Popen(command, stdout=subprocess.PIPE, shell=True) #這樣就可以輸出結果了。
如果command不是一個可執行檔,shell=True是不可省略的。
shell=True意思是shell下執行command
這四種方法都可以執行shell命令。
pysftp 友好的命令執行與互動工具
- import pysftp with pysftp.Connection('hostname', username='me', password='secret') as sftp: with sftp.cd('public'):
- # temporarily chdir to public
- sftp.put('/my/local/filename') # upload file to public/ on remote
- sftp.get('remote_file')
- # get a remote file
所有方法
- dir(pysftp.Connection) ['class', 'del', 'delattr', 'dict', 'doc', 'enter', 'exit', 'format',
- 'getattribute', 'hash', 'init', 'module', 'new', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof',
- 'str', 'subclasshook', 'weakref', 'set_authentication', 'set_logging', 'set_username', 'sftp_connect', '_start_transport',
- 'active_ciphers', 'active_compression', 'cd', 'chdir', 'chmod', 'chown', 'close', 'cwd', 'execute', 'exists', 'get', 'get_d',
- 'get_r', 'getcwd', 'getfo', 'isdir', 'isfile', 'lexists', 'listdir', 'listdir_attr', 'logfile', 'lstat', 'makedirs', 'mkdir',
- 'normalize', 'open', 'put', 'put_d', 'put_r', 'putfo', 'pwd', 'readlink', 'remote_server_key', 'remove', 'rename', 'rmdir',
- 'security_options', 'sftp_client', 'stat', 'symlink', 'timeout', 'truncate', 'unlink', 'walktree']
https://bitbucket.org/dundeemt/pysftp 官方連結
https://pypi.python.org/pypi/pysftp/ 下載
http://pysftp.readthedocs.io/en/release_0.2.9/ 文檔中心