是否可以绕过 python3+ 请求上的 HTTPS 来提高速度?
分析表明 SSL 处理是我的脚本中最慢的部分:
ncalls tottime percall cumtime percall filename:lineno(function)
133 0.377 0.003 0.377 0.003 {method 'read' of '_ssl._SSLSocket' objects} <--- slowest part 380ms/web access
232 0.131 0.001 0.131 0.001 {built-in method __new__ of type object at 0x000000007419C430}
153 0.087 0.001 0.090 0.001 <frozen importlib._bootstrap_external>:830(get_data)
1 0.023 0.023 0.023 0.023 {method 'do_handshake' of '_ssl._SSLSocket' objects}
import requests
resp = requests.get("https://uk.finance.yahoo.com", verify=False)
verify=False 只是禁用证书检查,但 SSL/TLS 仍然在后台发生。
我没有找到任何使用最愚蠢的密码(例如 0bit)类型来提高速度的选项。
安全性不是我在此脚本中的目标。我已经用 pip 升级了我的包。环境 Win10 x64。正如我测试的那样,大多数 http:// 地址仅允许/重定向到 https://
侃侃无极
相关分类