本帖最后由 lxt69826400 于 2020-1-13 22:30 编辑
求问如何用python生成?,查遍了网上各种资料,怎奈对lxml库和命名空间的理解太浅薄,怎么试都没法原因生成,求指导。
主要是卡在xmlns:msdata="urn:schemas-microsoft-com:xml-msdata
这个位置,怎么都不对
<table>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:MainDataTable="table" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="table">
<xs:complexType>
<xs:sequence>
<xs:element name="index" type="xs:string" minOccurs="0"/>
<xs:element name="identifier" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
</table>
|