繁体   English   中英

Python 错误 SSL: WRONG_VERSION_NUMBER 在几天前工作的代码上

[英]Python ERROR SSL: WRONG_VERSION_NUMBER on code that worked few days earlier

使用 google-search package ( https://pypi.org/project/googlesearch-python/ ) 直接从 cmd 打开几个 google 搜索结果。 前几天工作正常。 现在尝试启动代码我得到 SSL: WRONG_VERSION_NUMBER 错误

任何想法如何解决? 如果想法是什么导致了有趣的错误。

代码:

from googlesearch import search
import webbrowser, sys

searching_for = input(("Input search words: "))

num_results = int(input("How many results : ") or "3")

result = search(searching_for)
for i in result[:num_results]:
    webbrowser.open(i)

错误引发 ProxyError(e, request=request) requests.exceptions.ProxyError: HTTPSConnectionPool(host='www.google.com', port=443): url: /search?q=tim+ferriss&num=11&hl= en (Caused by ProxyError('Your proxy appears to only use HTTP and not HTTPS, try changing your proxy URL to be HTTP. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html #https-proxy-error-http-proxy' , SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] 错误的版本号 (_ssl.c:997)'))))

我能够重现错误并使用以下技巧修复它。

尝试将下一行代码更改为:

result = search(searching_for,proxy="http")

Caused by ProxyError('Your proxy appears to only use HTTP and not HTTPS, try changing your proxy URL to be HTTP. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#https-proxy-error-http-proxy',

它说您可以尝试在 URL 上使用 HTTP。 但是您正在使用的搜索库,我没有看到任何更改协议的选项。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM