I try to parse XML file in Python using lxml like this:
objectify.parse(xmlPath, parserWithSchema)
but XML file may contains comments in strange places:
<root>
<text>Sam<!--comment-->ple text</text>
<!--comment-->
<float>1.2<!--comment-->3456</float>
</root>
It is a way to not load or delete comments before parsing?
Set
remove_comments=True
on the parser (documentation):Or, using the
makeparser()
method:Hope that helps.