Hi, I'm using microdom to parse some xml input. >From the following example I wan to get 'hello' string import sys from twisted.web import microdom d = microdom.parseString('<html><body>hello</body></html>') print d.childNodes[0].childNodes[0].childNodes[0] But i get Text('hello'), please help any suggestion will be appreciated.