BeautifulSoup を使用してページから結果を取得しようとしています。
req_url = 'http://www.xscores.com/soccer/livescores/25-02'
request = requests.get(req_url)
content = request.content
soup = BeautifulSoup(content, "html.parser")
scores = soup.find_all('tr', {'style': 'height:18px;'}, limit=None)
print(len(scores))
>50
この以前の解決策を読みました: Beautiful Soup findAll はそれらをすべて見つけられず 、html.parser、lxml、および html5lib を試しましたが、どれも 50 を超える結果を返しませんでした。助言がありますか?
ありがとうございました