問題:
如何使用乾淨的方法在Pyt 中執行Pyt 檔案傳輸和有效的方法? os.system() 方法是一種 hack,不能跨平台工作或處理無密碼 SSH。
Paramiko SCP 模組:
Paramiko 提供了一個優秀的 Python專門為 SCP 傳輸設計的模組:paramiko.scp.SCPClient。它為安全操作提供了用戶友好的介面。
用法範例:
<code class="python">import paramiko from scp import SCPClient # Establish SSH Connection ssh = createSSHClient(server, port, user, password) # Initialize SCP Client scp = SCPClient(ssh.get_transport()) # SCP Operations scp.get('/etc/local/filename', '/etc/remote/filename') # Server to Local scp.put('/etc/local/filename', '/etc/remote/filename') # Local to Server</code>
金鑰管理:
createSSHCl_sing) 函數透過loadkey_host_miss( () 方法支援密鑰管理。此外,SCPClient() 建構子允許指定金鑰檔案路徑或使用系統金鑰:
<code class="python"># Use System Keys client = scp.Client(host=host, user=user, keyfile=keyfile) # Use Password client = scp.Client(host=host, user=user, password=password)</code>
優點:
以上是如何使用 Paramiko 在 Python 中執行 SCP 檔案傳輸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!