BeautifulSoup 中的自定义属性?

我正在尝试使用美丽的汤来定位具有非标准属性的 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?


九州编程
浏览 427回答 1
1回答

幕布斯7119047

使用 CSS 选择器来实现。from bs4 import BeautifulSouphtml = '''<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">'''soup = BeautifulSoup(html,'html.parser')items=soup.select('div[data-asin="099655596X"]')for item in items:&nbsp; &nbsp; print(item['data-asin'])输出:099655596X或者from bs4 import BeautifulSouphtml = '''<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">'''soup = BeautifulSoup(html,'html.parser')items=soup.select('div[data-asin$="X"]')for item in items:&nbsp; &nbsp; print(item['data-asin'])
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python