我使用Python 2.7.6从不同的网站获取数据,但有些网站提供insecurePlateformWarning
并拒绝提供数据。我想知道如何删除警告。
答案 0 :(得分:0)
urllib3
的{{3}}明确建议您执行以下操作之一,如果是insecurePlateformWarning
- 升级到较新的Python版本
- 使用pip install升级ndg-httpsclient --upgrade ndg-httpsclient
- 使用pyOpenSSL,如OpenSSL / PyOpenSSL部分所述
您正在使用Python 2.7.6,所以我想第一项可能适用于此处。在同一页面上,请参阅:
某些Python平台(特别是早期的Python版本 超过2.7.9 )在他们的ssl模块中有限制 urllib3可以应用的配置。
简而言之,您应该尝试至少升级到Python 2.7.9,或者如上所述升级ndg-httpsclient
。