Python 漂亮的 Soup 代码不起作用

发布于 2024-11-14 11:24:29 字数 380 浏览 1 评论 0原文

我正在 Linux 中尝试这段代码,它给出了空输出。 我刚刚复制并粘贴了 BS 文档

import urllib2
from BeautifulSoup import BeautifulSoup

soup = BeautifulSoup("""Bob's <b>Bold</b> Barbeque Sauce now available in
                        <b class="hickory">Hickory</b> and <b class="lime">Lime</a>""")

soup.find("b", { "class" : "lime" })

输出为空

I am trying this code in linux and its giving empty output.
I have just coped and paste for BS docs

import urllib2
from BeautifulSoup import BeautifulSoup

soup = BeautifulSoup("""Bob's <b>Bold</b> Barbeque Sauce now available in
                        <b class="hickory">Hickory</b> and <b class="lime">Lime</a>""")

soup.find("b", { "class" : "lime" })

The output is empty

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疯到世界奔溃 2024-11-21 11:24:29

除非您打印,否则您的脚本不会输出任何内容。你需要...

print soup.find("b", { "class" : "lime" })

(这在这里工作。)

Your script won't output anything unless you print it. You need...

print soup.find("b", { "class" : "lime" })

(This is working here.)

夏九 2024-11-21 11:24:29

它适用于 Python 2.6 或 2.7 和 BeautifulSoup 3.2.0。

It works for me on Python 2.6 or 2.7 and BeautifulSoup 3.2.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文