Skip to main content

Module - URL Library ( urllib2 with Proxies )


import urllib2

proxy = urllib2.ProxyHandler({'http': '127.0.0.1'})

opener = urllib2.build_opener(proxy)

urllib2.install_opener(opener)

f = urllib2.urlopen('https://wedge.applicantpro.com/jobs/')

print f.read()

Comments