- 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-远程登录
- Python - 电子邮件消息
- Python-SMTP
- Python-POP3
- Python-IMAP
- Python-SSH
- Python-FTP
- Python-SFTP
- Python - Web 服务器
- Python-上传数据
- Python-代理服务器
- Python - 目录列表
- Python-远程过程调用
- Python - RPC JSON 服务器
- Python - 谷歌地图
- Python - RSS 源
Python-HTTP 响应
http 或超文本传输协议适用于客户端服务器模型。通常网络浏览器是客户端,托管网站的计算机是服务器。服务器收到客户端的请求后,会生成响应并以某种格式将其发送回客户端。
服务器接收并解释请求消息后,使用 HTTP 响应消息进行响应:
- A Status-line
- Zero or more header (General|Response|Entity) fields followed by CRLF
- An empty line (i.e., a line with nothing preceding the CRLF) indicating the end of the header fields
- Optionally a message-body
以下部分解释了 HTTP 响应消息中使用的每个实体。
消息状态行
状态行由协议版本组成,后跟数字状态代码及其关联的文本短语。元素由空格 SP 字符分隔。
Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase CRLF
HTTP版本
支持 HTTP 1.1 版本的服务器将返回以下版本信息:
HTTP-Version = HTTP/1.1
状态码
状态代码元素是一个 3 位整数,其中状态代码的第一位数字定义响应的类别,最后两位数字没有任何分类作用。第一位数字有 5 个值:
序列号 | 代码及说明 |
---|---|
1 | 1xx:信息性 这意味着请求已收到并且该过程正在继续。 |
2 | 2xx:成功 这意味着该行动被成功接收、理解和接受。 |
3 | 3xx:重定向 这意味着必须采取进一步的行动才能完成请求。 |
4 | 4xx:客户端错误 这意味着请求包含不正确的语法或无法满足。 |
5 | 5xx:服务器错误 这意味着服务器无法满足明显有效的请求。 |
HTTP 状态代码是可扩展的,HTTP 应用程序不需要理解所有已注册状态代码的含义。
使用 Python 请求
在下面的 python 程序中,我们使用 urllib3 模块发出 http GET 请求并接收包含数据的响应。它还提供响应代码,该代码也由模块中的函数管理。PoolManager 对象处理连接池的所有细节,还处理线程安全。
import urllib3 http = urllib3.PoolManager() resp = http.request('GET', 'http://tutorialspoint.com/robots.txt') print resp.data # get the status of the response print resp.status
当我们运行上面的程序时,我们得到以下输出 -
User-agent: * Disallow: /tmp Disallow: /logs Disallow: /rate/* Disallow: /cgi-bin/* Disallow: /videotutorials/video_course_view.php?* Disallow: /videotutorials/course_view.php?* Disallow: /videos/* Disallow: /*/*_question_bank/* Disallow: //*/*/*/*/src/* 200