Solución:
Si está tratando de obtener un td diferente basado en la clase (es decir, td y td, puede usar beautiful soup como diccionario para obtener las diferentes clases.
Esto encontrará todo el td en la tabla.
from bs4 import BeautifulSoup
page = """
<table>
<tr>
<td class="image">
<a href="https://foroayuda.es/target/tt0111161/" title="Target Text 1">
<img alt="target img" height="74" src="img src url" title="image title" width="54"/>
</a>
</td>
<td class="title">
<span class="wlb_wrapper" data-caller-name="search" data-size="small" data-tconst="tt0111161">
</span>
<a href="https://foroayuda.es/target/tt0111161/">
Other Text
</a>
<span class="year_type">
(2013)
</span>
</td>
</tr>
</table>
"""
soup = BeautifulSoup(page)
tbl = soup.find('table')
rows = tbl.findAll('tr')
for row in rows:
cols = row.find_all('td')
for col in cols:
if col.has_attr('class') and col['class'][0] == 'image':
hrefs = col.find_all('a')
for href in hrefs:
print href.get('title')
elif col.has_attr('class') and col['class'][0] == 'title':
spans = col.find_all('span')
for span in spans:
if span.has_attr('class') and span['class'][0] == 'wlb_wrapper':
print span.get('data-tconst')
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)