On Tue, 24 Feb 2009 05:29:21 -0800 (PST), Girish wrote:
How do I extract CDATA node in Python? I'm using dom.minidom as
follows:-
from xml.dom.minidom import Document
class XMLDocument():
def __init__(self):
self.doc = Document()
def parseString(self, d):
sel
How do I extract CDATA node in Python? I'm using dom.minidom as
follows:-
from xml.dom.minidom import Document
class XMLDocument():
def __init__(self):
self.doc = Document()
def parseString(self, d):
self.doc = parseString(_encode(d))
return self
#C