I'm looking for a way to read in the XML version header using the xml.sax parser in python.
**<?xml version="1.0"?>**
<root>
<child>Hello</child>
<child2>World</child>
</root>
So far, whenever I try to read in the XML, it just seems to skip over the header and go to the root node.
Any help would be greatly appreciated.
Thank you.