I try to parse XML file in Python using lxml like this:
objectify.parse(xmlPath, parserWithSchema)
but XML file may contains comments in st
Set remove_comments=True
on the parser (documentation):
from lxml import etree, objectify
parser = etree.XMLParser(remove_comments=True)
tree = objectify.parse(xmlPath, parser=parser)
Or, using the makeparser()
method:
parser = objectify.makeparser(remove_comments=True)
tree = objectify.parse(xmlPath, parser=parser)
Hope that helps.