Boris-code / feapder

🚀🚀🚀feapder is an easy to use, powerful crawler framework | feapder是一款上手简单,功能强大的Python爬虫框架。内置AirSpider、Spider、TaskSpider、BatchSpider四种爬虫解决不同场景的需求。且支持断点续爬、监控报警、浏览器渲染、海量数据去重等功能。更有功能强大的爬虫管理系统feaplat为其提供方便的部署及调度
http://feapder.com
Other
2.96k stars 481 forks source link

使用代理时诡异的连接失败的问题 #194

Closed pgshow closed 1 year ago

pgshow commented 1 year ago

问题 在 python3.8.x 下, feapder 所有版本都有这个问题,当使用某些IP白名单 ssl 代理时,会遇到各种连接不上代理服务器的错误。

错误会有很多种,我遇到的:443错误,1133 错误,握手超时 等

解决方法 安装完所有包后,卸载 urllib3,并安装 1.26 以下的低版本,这样就可以正常使用 ssl 代理了。 pip uninstall urllib3 pip install urllib3==1.25.11

Boris-code commented 1 year ago

这个问题其实文档已经写啦 https://feapder.com/#/question/%E8%AF%B7%E6%B1%82%E9%97%AE%E9%A2%98