3

我从 [Beautiful Soup 4 教程页面][1] 运行示例 CSS 选择器代码,但结果不同,有些给出正确的结果,有些则没有。在网站上,他们说它应该在 Python 2.7 和 3 中以相同的方式工作。我有 Python 2.7 并安装 Beautiful Soup 4。有人有同样的问题吗?

from bs4 import BeautifulSoup
import urllib2

html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>

<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>

<p class="story">...</p>
"""

soup = BeautifulSoup(html_doc)

我的测试(当然我在教程中使用相同的 html 文档):

soup.select("#link1 ~ .sister")
[]

他们的测试:

soup.select("#link1 ~ .sister")
# [<a class="sister" href="http://example.com/lacie" id="link2">Lacie</a>,
#  <a class="sister" href="http://example.com/tillie"  id="link3">Tillie</a>]

点击这里查看

4

1 回答 1

5

我已经弄清楚你的问题了。您使用的 BeautifulSoup 版本早于 4.3.2。

我刚刚安装了 4.1.2,然后运行了您的代码。我遇到了同样的问题,我得到了一个空列表,现在我已经将它更新到 4.3.2,我又得到了兄弟姐妹的列表。

可以通过 pip 安装它,但您也可以从 Pypi 获取最新版本并下载它。

于 2013-10-22T12:13:53.427 回答