Python论坛  - 讨论区

标题:[python-chinese] 新手学习.关于urlopen()

2006年05月12日 星期五 09:58

mi hao haomi2006 at gmail.com
Fri May 12 09:58:07 HKT 2006

新手学习,遇到难题.请各位有时间的话,解答解答.

我在urllib.urlopen(url)之后,想知道网页成功拿到没有.就想用"print"显示几句话,条件判断应该判断哪个呢?

先谢谢了.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060512/a08b2a61/attachment.htm

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

2006年05月12日 星期五 10:17

tocer tocer.deng at gmail.com
Fri May 12 10:17:55 HKT 2006

判断所需网页上的关键字是否包含在urllib.urlopen(url)之中

mi hao wrote::
> 新手学习,遇到难题.请各位有时间的话,解答解答.
>
> 我在urllib.urlopen(url)之后,想知道网页成功拿到没有.就想用"print"显示几句
> 话,条件判断应该判断哪个呢?
>
> 先谢谢了.
>
>
> ------------------------------------------------------------------------

-- 
Vim 中文 Google 论坛 http://groups.google.com/group/Vim-cn

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

2006年05月12日 星期五 10:23

尹祥龙 yinxianglong at gmail.com
Fri May 12 10:23:12 HKT 2006

f = urllib.urlopen(url)
data = f.read()
keyword = unicode("关键字","cp936")  # 如果是英文的话,就不需要转码了
if data .find(keyword) > -1 :
     print "success"
else:
     print "failure"


在06-5-12,tocer <tocer.deng at gmail.com> 写道:
>
> 判断所需网页上的关键字是否包含在urllib.urlopen(url)之中
>
> mi hao wrote::
> > 新手学习,遇到难题.请各位有时间的话,解答解答.
> >
> > 我在urllib.urlopen(url)之后,想知道网页成功拿到没有.就想用"print"显示几句
> > 话,条件判断应该判断哪个呢?
> >
> > 先谢谢了.
> >
> >
> > ------------------------------------------------------------------------
>
> --
> Vim 中文 Google 论坛 http://groups.google.com/group/Vim-cn
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060512/4a901671/attachment.htm

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

2006年05月12日 星期五 10:25

=?ISO-2022-JP?B?GyRCcjJHSBsoQg==?= weibub at gmail.com
Fri May 12 10:25:09 HKT 2006

 用urllib2吧,打开之后a=urllib2.urlopen(url) 查看a.code是不是等于200

On 5/12/06, tocer <tocer.deng at gmail.com> wrote:
>
> 判断所需网页上的关键字是否包含在urllib.urlopen(url)之中
>
> mi hao wrote::
> > 新手学习,遇到难题.请各位有时间的话,解答解答.
> >
> > 我在urllib.urlopen(url)之后,想知道网页成功拿到没有.就想用"print"显示几句
> > 话,条件判断应该判断哪个呢?
> >
> > 先谢谢了.
> >
> >
> > ------------------------------------------------------------------------
>
> --
> Vim 中文 Google 论坛 http://groups.google.com/group/Vim-cn
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060512/0323a817/attachment.html

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

2006年05月12日 星期五 10:33

吴俊玉 wujunyu at gmail.com
Fri May 12 10:33:43 HKT 2006

湖南师大的魏波?
-- 
北京市海淀区中软国际
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060512/7ea5476c/attachment.htm

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

2006年05月12日 星期五 11:32

=?ISO-2022-JP?B?GyRCcjJHSBsoQg==?= weibub at gmail.com
Fri May 12 11:32:57 HKT 2006

不是

On 5/12/06, 吴俊玉 <wujunyu at gmail.com> wrote:
>
> 湖南师大的魏波?
> --
> 北京市海淀区中软国际
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060512/cd5cac99/attachment.html

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号