I am having some problems with the following. I have inherited a .py file that I need to use but I am obviously using a different python version to the author.
from datetime import datetime
import json, requests, os, time, sys
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
I get these errors;
E1101:Module 'requests.packages' has no 'urllib3' member
E0401:Unable to import 'requests.packages.urllib3.exceptions'
Any help pointing me in the direction of what is wrong would be great.
I am using Python 3.6.4 if that helps.