I need to parse an XML file with a number of blocks of CDATA that I need to retain for later plotting:
<process id="process1">
<log name="name1" device="device1"><![CDATA[timestamp value]]]></log>
<log name="name2" device="device2"><![CDATA[timestamp value, timestamp value, timestamp]]]></log>
</process>
I will need to do this repeatedly and quickly, and I am looking for the best way to do this. I've read that ElementTree is the faster of the methods, but I am open to other suggestions.