我使用 python 和 lxml 读取 xml 文件,这些文件是针对 xsd 文件进行验证的。我想找出属性的 xs:type 。
到目前为止我的代码:XSD
...
<xs:complexType name="io" >
<xs:attribute name="number" type="xs:decimal" use="optional" default="5.9"/>
</xs:complexType>
...
XML
...
<io number="1.1">
...
然后是 Python 代码:
with open(self.xmlSchemaFilename) as schema:
xmlschema_doc = objectify.parse(schema)
self.xmlschema = etree.XMLSchema(xmlschema_doc)
parser = etree.XMLParser(schema = self.xmlschema,
attribute_defaults = True, remove_blank_text=True)
with open(self.xmlFilename) as myfile:
tree = objectify.parse(myfile, parser)
#this correctly asserts the type from the xsd
root = tree.getroot()
self.xmlRoot = objectify.fromstring(etree.tostring(root))
self.xmlschema.assertValid(self.xmlRoot)
现在我可以通过访问所有子节点的类型
type(self.xmlRoot.child)
它从 xsd 返回正确的类型并得到类似的东西
<type 'lxml.objectify.IntElement'>
但对于属性,我通过
self.xmlRoot.child.attrib['number']
无论 xsd 规范如何,类型始终为 str。我如何获得属性的类型?