仅执行一次握手

时间:2016-01-25 19:38:01

标签: python-3.x https handshake urlopen

我使用urllib.request.urlopenHTTPS上的服务器获取数据。该函数被调用到同一服务器,通常是完全相同的URL。但是,与在初始请求上执行握手的标准Web浏览器不同,调用单独的urlopen(url)将导致每次调用的新握手。这在高延迟网络上非常缓慢。有没有办法执行一次握手并重用现有连接进行进一步的通信?

我无法修改服务器代码以使用套接字或其他协议。

2 个答案:

答案 0 :(得分:0)

您正在为每个请求打开一个新连接。要重复使用连接,您需要使用http.client

>>> import http.client
>>> conn = http.client.HTTPSConnection("www.python.org")
>>> conn.request("GET", "/")
>>> r1 = conn.getresponse()
>>> print(r1.status, r1.reason)
200 OK
>>> data1 = r1.read()  # This will return entire content.
>>> # The following example demonstrates reading data in chunks.
>>> conn.request("GET", "/")
>>> r1 = conn.getresponse()
>>> while not r1.closed:
...     print(r1.read(200)) # 200 bytes
b'<!doctype html>\n<!--[if"...
...
>>> # Example of an invalid request
>>> conn.request("GET", "/parrot.spam")
>>> r2 = conn.getresponse()
>>> print(r2.status, r2.reason)
404 Not Found
>>> data2 = r2.read()
>>> conn.close()

或者使用推荐的python Requests Package,其中session objects使用持久连接(使用urllib3)。

答案 1 :(得分:-1)

您应该为它打开一个流,因为HTTP /(s)是无状态的,它为服务器打开每个连接的新套接字。

所以没有办法使用这个逻辑,但我只是四处寻找打开持久连接。我只是看到希望它会有所帮助。它提到了urllib2

Persistent HTTPS Connections in Python