当前位置:天才代写 > tutorial > Python教程 > python通过pysftp加密上传、下载ftp服务器文件

python通过pysftp加密上传、下载ftp服务器文件

2018-05-17 08:00 星期四 所属: Python教程 浏览:380

python通过pysftp加密上传、下载ftp服务器文件

python">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()

标签:python

 

    关键字:

天才代写-代写联系方式