使用美丽的汤访问类描述中的数据

时间:2016-11-23 01:36:29

标签: python html beautifulsoup

我想抓一个网站,但我感兴趣的数据在类描述中:

<td class="cars" horse-power="276"></td>

使用以下方法解析整个表:

for row in table.find_all('tr'): 
    column = row.find_all('td')

我尝试了各种不同的方法但到目前为止没有任何工作。我如何访问这些数据?

2 个答案:

答案 0 :(得分:0)

for row in table.find_all('tr'): 
    for td in row.find_all('td'):
        print td.attrs['class']

答案 1 :(得分:0)

for row in table.find_all('tr'): 
    td_class = [td.get('class') for td in row.find_all('td')]
    td_horse-power = [td.get('horse-power') for td in row.find_all('td')]