我正在尝试使用pyxb库解析简单和复杂类型的XML文件。以下是XML结构:
</Requirement>
<Section name="Electrical Characteristics">
</Section>
</Section>
</Source>
</Requirements>
在阅读完pyxb后,我按照以下顺序获取XML,其中需求和部分的顺序发生了变化。
<Section name="Electrical Characteristics">
</Section>
</Requirement>
</Section>
</Source>
</Requirements>
我编写了一个脚本,将XML转储到pyxb对象,我使用orderedContent()
以下列方式保存顺序。
ordered_instance = instance.orderedContent()
我在ordered_instance
变量中找到空列表。