📜  Python -HTTP数据下载

📅  最后修改于: 2020-11-06 06:29:03             🧑  作者: Mango


我们可以使用处理ftp或文件传输协议的python模块从serer下载数据。我们还可以读取数据,然后将其保存到本地系统。

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

pip install ftplib

提取文件

我们可以使用getfile方法获取特定文件。此方法将文件的副本从远程系统移动到启动ftp连接的本地系统。

import ftplib
import sys
 
def getFile(ftp, filename):
    try:
        ftp.retrbinary("RETR " + filename ,open(filename, 'wb').write)
    except:
        print "Error"
 
 
ftp = ftplib.FTP("ftp.nluug.nl")
ftp.login("anonymous", "ftplib-example-1")
 
ftp.cwd('/pub/')          change directory to /pub/
getFile(ftp,'README.nluug')
 
ftp.quit()

当我们运行上述程序时,我们发现文件README.nlug存在于启动连接的本地系统中。

读取数据

在下面的示例中,我们使用urllib2模块读取数据的必需部分,我们可以将其复制并保存到本地系统中。

当我们运行上面的程序时,我们得到以下输出-

import urllib2
response = urllib2.urlopen('http://www.tutorialspoint.com/python')
html = response.read(200)
print html

当我们运行上面的程序时,我们得到以下输出-