I have
tree = ET.ElementTree(root)
How can i put tree in a string?

2006/1/20, Fredrik Lundh <[EMAIL PROTECTED]>:
Sbaush wrote:

> Is possible to have the XML in a string (for example xmlstring) and for
> printing do a print xmlstring ?

most about anything that can be written to a file can be written to a string
using the StringIO module:

    http://www.effbot.org/librarybook/stringio.htm

    file = StringIO.StringIO()
    tree.write(file)
    data = "">
for elementtree, you can also use the tostring function:

    data = "">
</F>



_______________________________________________
XML-SIG maillist  -   XML-SIG@python.org
http://mail.python.org/mailman/listinfo/xml-sig



--
Sbaush
_______________________________________________
XML-SIG maillist  -  XML-SIG@python.org
http://mail.python.org/mailman/listinfo/xml-sig

Reply via email to