SAX Reader which reads from an ESIS stream.
No verification of the document structure is performed by the reader;
a general verifier could be used as the target ContentHandler
instance.
|
|
| __init__(self,
contentHandler=None,
errorHandler=None) |
|
|
|
|
|
|
|
parse(self,
source)
Parse an XML document from a system identifier or an InputSource. |
|
|
|
|
|
|
|
|
|
|
|
|
|
| _handle_token(self,
token,
data) |
|
|
|
|
setContentHandler(self,
handler)
Registers a new object to receive document content events. |
|
|
|
|
getProperty(self,
property)
Looks up and returns the value of a SAX2 property. |
|
|
|
|
setProperty(self,
property,
value)
Sets the value of a SAX2 property. |
|
|
|
|
getFeature(self,
feature)
Looks up and returns the state of a SAX2 feature. |
|
|
|
|
setFeature(self,
feature,
enabled)
Sets the state of a SAX2 feature. |
|
|
|
Inherited from xml.sax.xmlreader.XMLReader:
getContentHandler,
getDTDHandler,
getEntityResolver,
getErrorHandler,
setDTDHandler,
setEntityResolver,
setErrorHandler,
setLocale
|