码迷,mamicode.com
首页 > 编程语言 > 详细

Python代理设置

时间:2015-09-23 19:37:36      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:python   代理   账号   

def test3():
    url = "http://www.ip.cn"
    proxy_handler = urllib2.ProxyHandler({‘http‘ : ‘http://username:password@host:port‘})
    opener = urllib2.build_opener(proxy_handler);
    urllib2.install_opener(opener)
    conn = urllib2.urlopen(url)
    print conn.read()


Python代理设置

标签:python   代理   账号   

原文地址:http://duallay.blog.51cto.com/635999/1697537

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!