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

Erorr: name 'HTTPAdapter' is not defined

NameError: name 'HTTPAdapter' is not defined

Solution: Import the 'HTTPAdapter' module

# Add the following line to the top of your code
from requests.adapters import HTTPAdapter

 

For more information:
requests HTTPAdapter