3

[Beautiful Soup 4 チュートリアル ページ][1] のサンプル CSS セレクターコードを実行しましたが、結果は異なり、正しい結果が得られるものもあれば、そうでないものもあります。Web サイトでは、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

私はあなたの問題を理解しました。4.3.2 より古いバージョンの BeautifulSoup を使用しています。

4.1.2 をインストールしたばかりで、コードを実行しました。私は同じ問題を抱えていました.空のリストを取得しました.4.3.2に更新したので、兄弟のリストを再度取得しました.

pip 経由でインストールできますが Pypiから最新バージョンを取得してダウンロードすることもできます。

于 2013-10-22T12:13:53.427 に答える