urllib3 is a powerful, user-friendly HTTP client for Python. urllib3 brings many critical features that are missing from the Python standard libraries:

requests uses urllib3 under the hood and makes it even simpler to make requests and retrieve data.

Code to disable warning while using requests:

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