我正在使用 lxml 解析和对象化路径中的 xml 文件,我有很多模型和 xsd,每个对象模型都映射到某些定义的类,例如,如果 xml 以模型标记开头,那么它是一个 dataModel,如果它开始带有页面标签的它是一个视图模型。
我的问题是如何以有效的方式检测 xml 文件以哪个标签开头,然后用适当的 xsd 文件对其进行解析,然后将其对象化
files = glob(os.path.join('resources/xml', '*.xml'))
for f in files:
xmlinput = open(f)
xmlContent = xmlinput.read()
if xsdPath:
xsdFile = open(xsdPath)
# xsdFile should retrieve according to xml content
schema = etree.XMLSchema(file=xsdFile)
xmlinput.seek(0)
myxml = etree.parse(xmlinput)
try:
schema.assertValid(myxml)
except etree.DocumentInvalid as x:
print "In file %s error %s has occurred." % (xmlPath, x.message)
finally:
xsdFile.close()
xmlinput.close()