def test3(): url = "http://www.ip.cn" proxy_handler = urllib2.ProxyHandler({‘http‘ : ‘http://username:[email protected]:port‘}) opener = urllib2.build_opener(proxy_handler); urllib2.install_opener(opener) conn = urllib2.urlopen(url) print conn.read()
时间: 2024-10-10 04:46:30