执行python程序如下报错解决方案

一、问题描述

  执行Python程序发送get请求,报错如下:/usr/local/lib/python3.9/site-packages/urllib3/connectionpool.py:1013: InsecureRequestWarning: Unverified HTTPS request is being made to host 'pinglun.fx678.com'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings

二、解决方案

  在程序中增加如下代码:

  import urllib3
  urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

原文地址:https://www.cnblogs.com/lxmtx/p/14576658.html