[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>]