Python论坛  - 讨论区

标题:[python-chinese] 请教下python中proxy server的设置问题

2005年11月14日 星期一 11:13

jjyoung hellopython at 126.com
Mon Nov 14 11:13:08 HKT 2005

我通过代理服务器上网,平常设置下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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 11:30

limodou limodou at gmail.com
Mon Nov 14 11:30:56 HKT 2005

在 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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号