python paramiko 模組

來源:互聯網
上載者:User

標籤:key   軟體   author   mis   檔案   .com   home   class   使用   

1.什麼是paramiko?

paramiko模組提供了基於ssh串連,進行遠程登入伺服器執行命令和上傳下載檔案的功能。這是一個第三方的軟體包,使用之前需要安裝。

 

pip homepage: http://www.paramiko.org/

pip github addr: https://github.com/paramiko

 

官方推薦安裝方法:

pip install paramiko

 範例程式碼:

 1.簡易ssh功能

#!/usr/bin/env python3# -*- coding: utf-8 -*-# author heavenimport paramiko#建立ssh對象ssh = paramiko.SSHClient()#允許串連不在know_hosts檔案中的主機ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())#連結的伺服器ssh.connect(hostname=‘10.11.1.1‘,port=2704,username=‘python‘,password=‘123456‘)#定義標準輸入,標準輸出,錯誤輸出,執行命令stdin,stdout,stderr = ssh.exec_command(‘ls‘)#擷取命令執行結果result = stdout.read().decode()#列印命令執行結果print(result)#關閉連結ssh.close()

2.簡易ftp功能

#!/usr/bin/env python3# -*- coding: utf-8 -*-# author heavenimport paramiko#建立transport對象transport = paramiko.Transport((‘localhost‘,2704))#串連伺服器transport.connect(username=‘python‘,password=‘123456‘)#建立ftp對象sftp = paramiko.SFTPClient.from_transport(transport)#put  將本地的a.txt檔案上傳到對方伺服器指定目錄(上傳)sftp.put(‘/home/python/a.txt‘,‘/home/python/heaven/test.txt‘)#get 下載#sftp.get(‘remote_path‘,‘local_path‘)  transport.close

 

python paramiko 模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.