python通過pysftp加密上傳、下載ftp服務器文件

pythopen 9年前發布 | 4K 次閱讀 Python

python通過pysftp加密上傳、下載ftp服務器文件

import pysftp
import sys

Defines the name of the file for download / upload

remote_file = sys.argv[1]

srv = pysftp.Connection(host="your_FTP_server", username="your_username", password="your_password")

Download the file from the remote server

srv.get(remote_file)

To upload the file, simple replace get with put.

srv.put(remote_file)

Closes the connection

srv.close()</pre>

 本文由用戶 pythopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!