vote up 2 vote down star

I have some IronPython code which makes use of XmlTextWriter which allows me to write code like

self.writer = System.Xml.XmlTextWriter(filename, None)
self.writer.Formatting = Formatting.Indented
self.writer.WriteStartElement(name)
self.writer.WriteString(str(text))
self.writer.WriteEndElement()

...

self.writer.Close()

I would like to make my code portable across Python implementations (CPython, IronPython and Jython). Is there a streaming Python XML writer I can use for this without needing to use either print statements, or to construct a whole DOM tree before writing it out to file?

flag
Is this the same thing as stackoverflow.com/questions/1019895/… – S.Lott Jun 20 at 20:19

2 Answers

vote up 2 vote down

I've never used the .NET implementation you're talking about, but it sounds like the closest you're going to get is Python's SAX parser (specifically, the XMLGenerator class -- some sample code here).

link|flag
Specifically, xml.sax.saxutils.XMLGenerator, which is part of sax but not really a parser. – Matthew Flaschen Jun 20 at 21:16
Yes, thanks for pointing that out. – musicfreak Jun 20 at 21:18
vote up 1 vote down

I wrote a tool to facilitate XML generation from Python (code and tutorial)

link|flag
"I a tool"? What does that mean? ;) – musicfreak Jun 21 at 3:57
Editing issues :-) Thanks. – Bill Zeller Jun 21 at 4:00
No problem. +1, looks like a good tool, and great name. – musicfreak Jun 21 at 4:17
Most elegant. Can you provide an example of how this would be used in the case where I don't know the element names until run time? – Rob Smallshire Jun 21 at 11:33
It assumes the element names are known so it sounds like it doesn't solve your problem. (Well, you could write something like x = XMLegant() element_name = "root" el = getattr(x, element_name) but that seems to defeat the point.) – Bill Zeller Jun 21 at 20:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.