embossed
代わりに、次の行を に追加するだけです。
embossed = objectify.Element('embossed')
embossed.append(objectify.Element('line'))
embossed.line[-1] = 'Test Line'
embossed.append(objectify.Element('line'))
embossed.line[-1] = 'Test Line 2'
各 lxml ツリー タグは、すべての子がリスト内の要素であるリストのように機能します。新しいobjectify.Element
オブジェクトを追加するだけで、追加先のタグの子になります。
次に、インデックスを使用してそのリストの各要素に到達できます。インデックスは最後の要素であり、-1
テキストを設定できます。
上記のコードは次を出力します。
>>> from lxml import objectify, etree
>>> embossed = objectify.Element('embossed')
>>> embossed.append(objectify.Element('line'))
>>> embossed.line[-1] = 'Test Line'
>>> embossed.append(objectify.Element('line'))
>>> embossed.line[-1] = 'Test Line 2'
>>> print etree.tostring(embossed, pretty_print=True)
<embossed xmlns:py="http://codespeak.net/lxml/objectify/pytype" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" py:pytype="TREE">
<line py:pytype="str">Test Line</line>
<line py:pytype="str">Test Line 2</line>
</embossed>