- Python网络编程简介
- Python网络编程开发环境
- Python Internet协议模块
- Python IP地址
- Python DNS查找
- Python路由
- Python HTTP请求
- Python HTTP响应
- Python HTTP标头
- Python自定义HTTP请求
- Python请求状态代码
- Python HTTP验证
- Python HTTP数据下载
- Python连接重用
- Python网络接口
- Python Socket程序
- 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连接重用
当客户端向服务器发出有效请求时,它们之间将建立一个临时连接以完成发送和接收过程。但是在某些情况下,由于正在通信的程序之间需要自动请求和响应,因此需要保持连接状态。以一个交互式网页为例。加载网页后,需要提交表单数据或下载其他CSS和JavaScript组件。需要保持连接状态以提高性能,并在客户端和服务器之间保持不间断的通信。
Python提供了urllib3模块,该模块具有一些方法来处理客户端和服务器之间的连接重用。在下面的示例中,我们通过在GET请求中传递不同的参数来创建连接并发出多个请求。我们收到了多个响应,但我们还计算了该过程中已使用的连接数。如我们所见,连接数没有改变,这意味着连接的重用。
from urllib3 import HTTPConnectionPool pool = HTTPConnectionPool('ajax.googleapis.com', maxsize=1) r = pool.request('GET', '/ajax/services/search/web', fields={'q': 'python', 'v': '1.0'}) print 'Response Status:', r.status # Header of the response print 'Header: ',r.headers['content-type'] # Content of the response print 'Python: ',len(r.data) r = pool.request('GET', '/ajax/services/search/web', fields={'q': 'php', 'v': '1.0'}) # Content of the response print 'php: ',len(r.data) print 'Number of Connections: ',pool.num_connections print 'Number of requests: ',pool.num_requests
当执行上面示例代码,得到以下结果:
Response Status: 200 Header: text/javascript; charset=utf-8 Python: 211 php: 211 Number of Connections: 1 Number of requests: 2
上一篇:Python HTTP数据下载
下一篇:Python网络接口
关注微信小程序
扫描二维码
程序员编程王