vote up 0 vote down star

How do I iterate over the HTML attributes of a Beautiful Soup element?

Like, given:

<foo bar="asdf" blah="123">xyz</foo>

I want "bar" and "blah".

flag

1 Answer

vote up 4 vote down check
from BeautifulSoup import BeautifulSoup
page = BeautifulSoup('<foo bar="asdf" blah="123">xyz</foo>')
for attr, value in page.find('foo').attrs:
    print attr, "=", value
link|flag

Your Answer

Get an OpenID
or

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