vote up 3 vote down star
1

I'm converting some html parsing code from BeautifulSoup to lxml. I'm trying to figure out the lxml equivalent syntax for the following BeautifullSoup statement:

soup.find('a', {'class': ['current zzt', 'zzt']})

Basically I want to find all of the "a" tags in the document that have a class attribute of either "current zzt" or "zzt". BeautifulSoup allows one to pass in a list, dictionary, or even a regular express to perform the match.

What is the lxml equivalent?

Thanks!

flag

54% accept rate
I think the xpath expr should be: //a[@class='current zzt' or @class='zzt' – tonfa Sep 5 at 23:41
(it's missing a ] at the end) – tonfa Sep 5 at 23:43
That works- but it returns a list (like findall() would). Any way to make it behave more like find()? (Without just tacking a [0] on the end?) – erikcw Sep 6 at 15:47
class = 'current zzt' is not a single class. It's two classes. Do you mean that you want to find all links with either the 'zzt' class or both the 'current' and 'zzt' classes? – endolith Sep 7 at 14:49
@endolith: I want to find all of the links where class="current zzt" OR class="zzt". So it either has bot togeather or just "zzt". – erikcw Sep 7 at 15:44

1 Answer

vote up 1 vote down

No, lxml does not provide the "find first or return None" method you're looking for. Just use (select(soup) or [None])[0] if you need that, or write a function to do it for you.

#!/usr/bin/python
import lxml.html
import lxml.cssselect
soup = lxml.html.fromstring("""
        <html>
        <a href="foo" class="yyy zzz" />
        <a href="bar" class="yyy" />
        <a href="baz" class="zzz" />
        <a href="quux" class="zzz yyy" />
        <a href="warble" class="qqq" />
        <p class="yyy zzz">Hello</p>
        </html>""")

select = lxml.cssselect.CSSSelector("a.yyy.zzz, a.yyy")
print [lxml.html.tostring(s).strip() for s in select(soup)]
print (select(soup) or [None])[0]

Ok, so soup.find('a') would indeed find first a element or None as you expect. Trouble is, it doesn't appear to support the rich XPath syntax needed for CSSSelector.

link|flag

Your Answer

Get an OpenID
or

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