Apr-19-2022, 02:57 PM
Hi ! Im using requests and beautifulSoup. And i have this piece of code :
InsecureRequestWarning: Unverified HTTPS request is being made to host '127.0.0.1'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/1.26.x...l-warnings warnings.warn(
How do i get rid of this ?
stats = requests.get(URL, verify=False).json()But i get error :
InsecureRequestWarning: Unverified HTTPS request is being made to host '127.0.0.1'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/1.26.x...l-warnings warnings.warn(
How do i get rid of this ?