我正在尝试使用xml.etree
和yattag
之间进行选择。 yattag
似乎具有更简洁的语法,但我不能100%复制this xml.etree
example:
from xml.etree.ElementTree import Element, SubElement, Comment, tostring
top = Element('top')
comment = Comment('Generated for PyMOTW')
top.append(comment)
child = SubElement(top, 'child')
child.text = 'This child contains text.'
child_with_tail = SubElement(top, 'child_with_tail')
child_with_tail.text = 'This child has regular text.'
child_with_tail.tail = 'And "tail" text.'
child_with_entity_ref = SubElement(top, 'child_with_entity_ref')
child_with_entity_ref.text = 'This & that'
print(tostring(top))
from xml.etree import ElementTree
from xml.dom import minidom
def prettify(elem):
"""Return a pretty-printed XML string for the Element.
"""
rough_string = ElementTree.tostring(elem, 'utf-8')
reparsed = minidom.parseString(rough_string)
return reparsed.toprettyxml(indent=" ")
print(prettify(top))
哪个返回
<?xml version="1.0" ?>
<top>
<!--Generated for PyMOTW-->
<child>This child contains text.</child>
<child_with_tail>This child has regular text.</child_with_tail>
And "tail" text.
<child_with_entity_ref>This & that</child_with_entity_ref>
</top>
我尝试使用
yattag
:from yattag import Doc
from yattag import indent
doc, tag, text, line = Doc().ttl()
doc.asis('<?xml version="1.0" ?>')
with tag('top'):
doc.asis('<!--Generated for PyMOTW-->')
line('child', 'This child contains text.')
line('child_with_tail', 'This child has regular text.')
doc.asis('And "tail" text.')
line('child_with_entity_ref','This & that')
result = indent(
doc.getvalue(),
indentation = ' ',
newline = '\r\n',
indent_text = True
)
print(result)
返回:
<?xml version="1.0" ?>
<top>
<!--Generated for PyMOTW-->
<child>
This child contains text.
</child>
<child_with_tail>
This child has regular text.
</child_with_tail>
And "tail" text.
<child_with_entity_ref>
This & that
</child_with_entity_ref>
</top>
因此,
yattag
代码更短,更简单(我认为),但是我不知道如何:在开始时自动添加XML版本标签(解决方法是
doc.asis
)创建评论(解决方法为
doc.asis
)转义
"
字符。 xml.etree
替换为"
添加尾部文字---但我不确定为什么需要它。
我的问题是,与使用
yattag
相比,我能更好地做到上述4点吗?注意:我正在构建XML以与this api进行交互。
最佳答案
对于1 et 2,doc.asis
是最好的进行方法。
对于3,您应该使用text('And "tail" text.')
而不是asis
。这将转义需要转义的字符。但是请注意,"
字符实际上并未被text
方法转义。
这是正常的。仅当"
出现在xml或html属性中时,才需要对其进行转义,而无需在文本节点中对其进行转义。text
方法转义需要在文本节点内转义的字符。这些是&,字符。 (来源:http://www.yattag.org/#the-text-method)
我听不懂4。
关于python - 在yattag中复制xml.etree示例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50627432/