我正在尝试使用美丽的汤来定位具有非标准属性的 DIV。这是DIV:
`<div data-asin="099655596X" data-index="1" class="sg-col-20-of-24 s-result-item sg-col-0-of-12 sg-col-28-of-32 sg-col-16-of-20 sg-col sg-col-32-of-36 sg-col-12-of-16 sg-col-24-of-28" data-cel widget="search_result_1">`
我需要 find_all DIV 与 data-asin 属性,并获得 asin 。BS 似乎支持此功能,但我所做的不起作用。这是我不起作用的代码:
`rows = soup.find_all(attrs={"data-asin": "value"})`
我需要如何在 Python3.7 中制作我的 BS 才能找到所有这些 DIV?
幕布斯7119047
相关分类