I'm new to Python, and am writing an XML parser for RSS feeds. I'd like to have a few things cleared up:<br><br>* Is PyXML a part of the standard Python distribution?<br>* How can I parse entity references like in the following code:
<br><br><pre><br> &gt;abc&lt;<br></pre><br><br>Could anyone give me any code examples for this? <br><br>* Is 4suite (<a href="http://4suite.org">4suite.org</a>) better than the XML libraries that are built-in to Python?
<br><br>* How can I install the sax2exts package? <br>
<br>-----------------------<br><br>I'm using the following code:<br><br> parser = make_parser()<br> saxRssParser = SaxRssParser() # implementation<br> parser.setContentHandler(saxRssParser)<br> parser.setProperty
(handler.property_lexical_handler, saxRssParser) # For cdata etc<br><br>