Python 上传数据

可以使用处理ftp或文件传输协议的python模块将数据上传到服务器。需要安装模块ftplib才能实现上面功能。

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.codebaoku.com
# Date : 2020-08-25
pip install ftplib

1. 使用ftplib

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

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.codebaoku.com
# Date : 2020-08-25
import ftplib
ftp = ftplib.FTP("127.0.0.1")
ftp.login("username", "mypassword")
file = open('index.html','rb')
ftp.storbinary("STor " + file, open(file, "rb"))
file.close()
ftp.quit()

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

2. 使用ftpreety

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

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.codebaoku.com
# Date : 2020-08-25
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')

当运行上述程序时,可以看到该文件的副本已在服务器中创建。

Python 代理服务器:代理服务器用于通过另一台服务器浏览到某些网站,以便浏览保持匿名。它也可以用来绕过特定IP地址的阻止。我们通过传递代理服务器地址作为参数,使用urllib模块中的urlopen方法访问网站。示例在下面的示例中,使用代 ...