If your code is running behind a proxy and you know the end point, you can set this information in your code.
requests accepts a proxies parameter. This should be a dictionary that maps protocol to the proxy URL.
proxies = {
'http': 'http://proxy.example.com:8080',
'https': 'http://securepro...