# Variables
B64Decode implements python/base64.b64decode (mostly).
B64Encode implements python/base64.b64encode (mostly).
BinasciiErrorType is the error type raised by the binascii functions ..
GetDecoder returns the decoder function of the codec corresponding to encoding.
GetEncoder returns the encoder function of the codec corresponding to encoding.
Hexlify implements python/binascii.hexlify.
HTMLParse parses s as an HTML document, and calls the cb_starttag(tag, attrs) callback for each tag encountered (attrs is a list of (key,value) tuples).
HTMLParseErrorType is the error type raised by HTML parsing.
JSONDumps implements python/json.dumps.
JSONLoads implements python/json.loads.
Unhexlify implements python/binascii.unhexlify.
XMLElementInfos returns (tag, text, attrib, childno) tuple for the provided element.
XMLFind implements python/xml.etree.ElementTree.Element.find().
XMLFindAll implements python/xml.etree.ElementTree.Element.findall().
XMLGetChildElement return the idx-th child element of element.
XMLParse implements python/xml.etree.ElementTree.XML.
XMLParseErrorType is the error type raised by XML parsing ..