Missing something obvious with python-requests

Ray Cote rgacote at appropriatesolutions.com
Thu Jan 3 13:53:44 EST 2013


Hello List:

I seem to be missing something obvious in terms of using proxies with the requests module. 
I'm using requests 1.4 and Python 2.7. Have tried this on Centos 6 and Windows XP.

Here's the sample code, right out of the manual:

import requests

proxies = {
    'https': '192.168.24.25:8443',
    'http': '192.168.24.25:8443', }

a = requests.get('http://google.com/', proxies=proxies)


When I look at the proxy log, I see a GET being performed -- when it should be a CONNECT. 
Does not matter if I try to get http or https google.com. 
Clearly I'm missing something fundamental here. 
But after two days of fiddling with the code and tracing through requests I'm still unclear as to why requests is not using the proxy information.

Any help (or slap on the side of the head) appreciated. 
Thanks
--Ray




More information about the Python-list mailing list