Introduction
============
Apply xupdate diff on XML documents.
Installation
============
python setup.py install
Testing
=======
python setup.py test
Usage
=====
just like this::
>>> from xupdate_processor import applyXUpdate
>>> from lxml import etree
>>> xml_doc_string = """
"""
>>> xml_xu_string = """
B
C
"""
>>> result_tree = applyXUpdate(xml_xu_string=xml_xu_string, xml_doc_string=xml_doc_string)
>>> print etree.tostring(result_tree, pretty_print=True)