2005年11月14日 星期一 11:13
我通过代理服务器上网,平常设置下firefox即可了 现在我想在python中用urllib.urlopen()等库函数,读html文件,应该怎么设置? ps:我查过python doc发现,只支持不需验证的proxy。而我的代理需要验证 ps:我用redhat,是不是可以通过系统设置下即可? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051114/4a59407a/attachment.html
2005年11月14日 星期一 11:30
在 05-11-14,jjyoung<hellopython at 126.com> 写道: > > 我通过代理服务器上网,平常设置下firefox即可了 > > 现在我想在python中用urllib.urlopen()等库函数,读html文件,应该怎么设置? > > ps:我查过python doc发现,只支持不需验证的proxy。而我的代理需要验证 > ps:我用redhat,是不是可以通过系统设置下即可? > urllib的例子有呀: # Use http://www.someproxy.com:3128 for http proxying proxies = {'http': 'http://www.someproxy.com:3128'} filehandle = urllib.urlopen(some_url, proxies=proxies) # Don't use any proxies filehandle = urllib.urlopen(some_url, proxies={}) # Use proxies from environment - both versions are equivalent filehandle = urllib.urlopen(some_url, proxies=None) filehandle = urllib.urlopen(some_url) 以上是从文档中直接拷贝的。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
Zeuux © 2025
京ICP备05028076号