In my xml file, I have nodes like this:
<waitingJobs idList="J03ac2db8 J03ac2fb0"/>
I know how to use .findall to search for attributes but now, it looks like I would need to use regular expressions because I can't just use
root.findall('./[@attrib='value']')
I'd have to use
root.findall('./[@attrib='*value*']')
QUESTION
- Is this possible with
xml.etree? - How do you do this with
lxml?