How to Solve NameError: name 'Retry' is not defined -- requests

Erorr: name 'Retry' is not defined

NameError: name 'Retry' is not defined

Solution: Import the 'Retry' module

# Add the following line to the top of your code
from requests.packages.urllib3.util.retry import Retry

 

For more information:
requests Retry