为啥我用代理访问 总是出现这样的提示!!!

为啥我用代理访问 总是出现这样的提示!!!

import urllib2

# set up authentication info
authinfo = urllib2.HTTPBasicAuthHandler()
authinfo.add_password('realm', 'host', 'username', 'password')

proxy_support = urllib2.ProxyHandler({"http" : "122.252.60.10:80"})

# build a new opener that adds authentication and caching FTP handlers
opener = urllib2.build_opener(proxy_support, authinfo, urllib2.CacheFTPHandler)

# install it
urllib2.install_opener(opener)

f = urllib2.urlopen('http://www.baidu.com/')

print f.read()

上面是代码
他总是提示---- you name:  
要我输入一个名字
能不能去掉这个提示啊 ?

有哪位仁兄成功的使用过代理的 请给下例子啊
谢谢啊

要是代理没有密码的话,我就用这个……
sock = urllib.urlopen('http://www.baidu.com/', None, {"http": "http://122.252.60.10:80"})
print sock.read()


不过你这个貌似是要密码的?对urllib2不熟悉……

你不能换个代理啊