xml_diff
xml_diff copied to clipboard
Compares two XML documents by diffing their text.
Results
1
xml_diff issues
Sort by
recently updated
recently updated
newest added
1.xml ``` Tove Mike Reminder Hello World ``` 2.xml ``` Tove Jani Reminder Don't forget me this weekend! ``` test.py ``` # coding: utf-8 import xml_diff import lxml.etree dom1 =...