多个请求在单个连接? [英] multiple requests in a single connection?

查看:130
本文介绍了多个请求在单个连接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以使用python httplib放置多个请求而不中断连接?
我可以上传一个大文件到服务器的部分,但在一个单一的socket连接。

Is it possible to put multiple requests without breaking the connection using python httplib?. Like, can I upload a big file to the server in parts but in a single socket connection.

我寻找答案。但没有什么看起来如此清晰和明确。

I looked for answers. But nothing seemed so clear and definite.

任何示例/相关链接将是有用的。
谢谢。

Any examples/related links will be helpfull. Thanks.

推荐答案

是的,连接保持打开,直到您使用 close $ c>方法。

Yes, the connection stays open until you close it using the close() method.

以下示例取自 httplib文档,显示了如何使用单个连接执行多个请求:

The following example, taken from the httplib documentation, shows how to perform multiple requests using a single connection:

>>> import httplib
>>> conn = httplib.HTTPConnection("www.python.org")
>>> conn.request("GET", "/index.html")
>>> r1 = conn.getresponse()
>>> print r1.status, r1.reason
200 OK
>>> data1 = r1.read()
>>> conn.request("GET", "/parrot.spam")
>>> r2 = conn.getresponse()
>>> print r2.status, r2.reason
404 Not Found
>>> data2 = r2.read()
>>> conn.close()

这篇关于多个请求在单个连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆