Cannot import requests.packages.urllib3.util ‘Retry’
You might need a newer version of Requests. I just tried it with v2.5.1: from requests.packages.urllib3.util import Retry Seems to work. FYI: The latest version is v2.5.3, worth upgrading. Also if you have a reasonably recent version of urllib3 installed separately, this should also work: from urllib3.util import Retry Unfortunately we check the specific isinstance … Read more