仅执行一次握手



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

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

您正在为每个请求打开一个新连接。要重用连接,您需要使用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请求包,它具有使用持久连接的会话对象(使用urllib3)。

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

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

Python 中的持久 HTTPS 连接

相关内容

  • 没有找到相关文章

最新更新