import urllib2 proxy_support = urllib2.ProxyHandler({"http":"http://127.0.0.1:8118"}) opener = urllib2.build_opener(proxy_support) url='http://whatismyip.com/' page = opener.open(url) contents=page.read() print contents