1
vote
What’s the easiest non-memory intensive way to output XML from Python?
I think you'll find XMLGenerator from xml.sax.saxutils is the closest thing to what you want.
import time
from xml.sax.saxutils import XMLGenerator
from xml.sax.xmlreader import Attribut …
