In my test document I have a few classes labeled "item", currently I'm using the following to parse everything in the html file with this class with
Selection = html.cssselect(".item")
I'd like it to select all the odd items, like this in javascript using JQuery
Selection = $(".item:odd");
Trying that verbatim I get the following error
lxml.cssselect.ExpressionError: The psuedo-class Symbol(u'odd', 6) is unknown
I know this would be trivial to implement on my own, I was wondering if this is supported by lxml natively.