vote up 1 vote down star

I am struggling with the syntax required to grab some hrefs in a td. The table, tr and td elements dont have any class's or id's.

If I wanted to grab the anchor in this example, what would I need?

< tr > < td > < a >...

Thanks

flag

14% accept rate

2 Answers

vote up 1 vote down

Something like this?


from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(html)
anchors = [td.find('a') for td in soup.findAll('td')]

That should find the first "a" inside each "td" in the html you provide. You can tweak td.find to be more specific or else use findAll if you have several links inside each td.

link|flag
vote up 1 vote down

As per the docs, you first make a parse tree:

import BeautifulSoup
html = "<html><body><tr><td><a href='foo'/></td></tr></body></html>"
soup = BeautifulSoup.BeautifulSoup(html)

and then you search in it, for example for <a> tags whose immediate parent is a <td>:

for ana in soup.findAll('a'):
  if ana.parent.name == 'td':
    print ana["href"]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.