I&#39;m new to Python, and am writing an XML parser for RSS feeds. I&#39;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>&lt;pre&gt;<br>&nbsp;&nbsp;&nbsp; &amp;gt;abc&amp;lt;<br>&lt;/pre&gt;<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&#39;m using the following code:<br><br>&nbsp;&nbsp;&nbsp; parser = make_parser()<br>&nbsp;&nbsp;&nbsp; saxRssParser = SaxRssParser() # implementation<br>&nbsp;&nbsp;&nbsp; parser.setContentHandler(saxRssParser)<br>&nbsp;&nbsp;&nbsp; parser.setProperty
(handler.property_lexical_handler, saxRssParser) # For cdata etc<br><br>