- Python - 网络编程
- Python - 网络简介
- Python - 网络环境
- Python - 互联网协议
- Python - IP 地址
- Python - DNS 查找
- Python - 路由
- Python - HTTP 请求
- Python - HTTP 响应
- Python - HTTP 标头
- Python - 自定义 HTTP 请求
- Python - 请求状态代码
- Python - HTTP 身份验证
- Python - HTTP 数据下载
- Python - 连接重用
- Python - 网络接口
- Python - 套接字编程
- Python - HTTP 客户端
- Python - HTTP 服务器
- Python - 构建 URL
- Python - Web 表单提交
- Python - 数据库和 SQL
- Python - Telnet
- Python - 电子邮件
- Python - SMTP
- Python - POP3
- Python - IMAP
- Python - SSH
- Python - FTP
- Python - SFTP
- Python - Web 服务器
- Python - 数据上传
- Python - 代理服务器
- Python - 目录列表
- Python - 远程过程调用
- Python - RPC JSON 服务器
- Python - Google 地图
- Python - RSS 源
Python - HTTP 数据下载
我们可以使用处理 FTP 或文件传输协议的 Python 模块从服务器下载数据。我们还可以读取数据,然后将其保存到本地系统。
我们需要安装模块 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('https://tutorialspoint.com/python') html = response.read(200) print html
当我们运行上述程序时,会获得以下输出−
<!DOCTYPE html> <!--[if IE 8]><html class="ie ie8"> <![endif]--> <!--[if IE 9]><html class="ie ie9"> <![endif]--> <!--[if gt IE 9]><!--> <html> <!--<![endif]--> <head> <!-- Basic --> <meta charset="ut
广告