I built an xml file with lxml.etree, and this is the result:
<BigData>
<user>
<enum>
<tree>sometext</tree>
</enum>
</user>
</BigData>
I am trying to put an entry and come up with this:
<BigData>
<user>**this_is_the_extra_text**
<enum>
<tree>sometext</tree>
</enum>
</user>
</BigData>
Any idea on how to do this? if i use user = SubElement(user, BigData).text = 'this_is_the_extra_text', i get an error. Note: i just want plain text there, not a new xml entry.
Thanks!
Assuming that
user
is a variable referencing<user>
element, you can simply set itstext
property to add text node as the first child.This is the setup for demo :
and the following is the output after setting
user.text
:If you want to add the text node after other child element however (in other words, text node isn't going to be the first child), you'll need to set
tail
property of the preceding element instead. For example, adding text node afterenum
element works as follow :