[XML-SIG] lost

Martin v. Löwis martin@v.loewis.de
25 Mar 2003 00:39:01 +0100


Kai Hendry <hendry@cs.helsinki.fi> writes:

> I am just getting started with XML processing in python, and now I need
> to do something a little more complicated, and I staring at:
> http://www.python.org/doc/current/lib/markup.html
> 
> And wondering what to use!

I recommend to set up a SAX content handler. Ignore all startElement
and endElement notifications, and only process characters notifications.

Regards,
Martin