PyXB:用Unicode生成类名

时间:2016-11-04 17:08:44

标签: python-3.x unicode encoding utf-8 pyxb

有人指出了正确的方向,因为当元素名称是非ASCII时,我无法使用PyXB生成绑定类吗?

最小可重复的例子:

<?xml version="1.0" encoding="utf8"?>
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="Address">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="Country" type="xs:string" />
        <xs:element name="Street" type="xs:string" />
        <xs:element name="Town" type="xs:string" />       
        <xs:element name="Дом" type="xs:string" />
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

(寻找我使用西里尔文的<xs:element name="Дом" type="xs:string" />。 该文件的编码为utf8。 但是,当我尝试:

pyxbgen -u example.xsd -m example

我收到了错误:

Traceback (most recent call last):
  File "/home/sergey/anaconda3/lib/python3.5/xml/sax/expatreader.py", line 210, in feed
    self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: not well-formed (invalid token): line 9, column 26

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/sergey/anaconda3/bin/pyxbgen", line 52, in <module>
    generator.resolveExternalSchema()
.......

指向元素的西里尔字母名称。我错过了什么?

1 个答案:

答案 0 :(得分:2)

UTF8在XML和Python中拼写为"utf-8"

lilith[33]$ head -1 /tmp/cyr.xsd 
<?xml version="1.0" encoding="utf-8"?>
lilith[34]$ pyxbgen -u /tmp/cyr.xsd -m cyr
WARNING:pyxb.binding.generate:Element use None.Дом renamed to emptyString
Python for AbsentNamespace0 requires 1 modules

然而,PyXB生成一个名为emptystring的元素而不是一个名为Дом的元素。 PyXB早在Python 3和unicode支持之前就已经设计好了,并且它努力将文本转换为有效的Python 2标识符。

由于您使用的是Python 3,因此应该可以绕过该转换,但这并不是一件容易的事。跟踪issue 67,或者如果有西里尔语音译,您更喜欢日语可能有效的here技术。