Parser
The Parser
class is the entry point for using BigXML.
Instantiation
Call Parser
with any number of streams as arguments:
Parser(stream0, stream1, ...)
Each stream is consumed, in order, to get the raw XML data to be parsed.
Methods
iter_from
-
Takes any number of handlers and returns an iterable whose items are generated by the handlers when the streams are parsed.
return_from
-
Just like
iter_from
, but returns the last item generated (orNone
if nothing is generated).