📜  Python上传数据

📅  最后修改于: 2020-11-06 06:35:22             🧑  作者: Mango


我们可以使用处理ftp或文件传输协议的python模块将数据上传到Serer。

我们需要安装模块ftplib来实现此目的。

pip install ftplib

使用ftplib

在下面的示例中,我们使用FTP方法连接到服务器,然后提供用户凭据。接下来,我们提到文件的名称以及将文件发送和存储在服务器中的storbinary方法。

import ftplib

ftp = ftplib.FTP("127.0.0.1")
ftp.login("username", "password")
file = open('index.html','rb')   
ftp.storbinary("STOR " + file, open(file, "rb"))
file.close()                                   
ftp.quit() 

当我们运行上述程序时,我们观察到该文件的副本已在服务器中创建。

使用ftpreety

与ftplib相似,我们可以使用ftpreety安全地连接到远程服务器并上传文件。我们可以使用ftpreety下载文件。下面的程序相象相同。

from ftpretty import ftpretty

# Mention the host
host = "127.0.0.1"

# Supply the credentisals
f = ftpretty(host, user, pass )

# Get a file, save it locally
f.get('someremote/file/on/server.txt', '/tmp/localcopy/server.txt')

# Put a local file to a remote location
# non-existent subdirectories will be created automatically
f.put('/tmp/localcopy/data.txt', 'someremote/file/on/server.txt')

当我们运行上述程序时,我们观察到该文件的副本已在服务器中创建。