[BangPypers] Regarding 2 XML Files Comparision using Python

Venkatraman S venkat83 at gmail.com
Thu Jun 4 11:50:56 CEST 2009


On Thu, Jun 4, 2009 at 3:07 PM, Ruchir Shukla <ruchiryshukla at gmail.com>wrote:

> import difflib
> f=open('text1.txt','rb')
> text1=f.read()
> f.close()
> f=open('text2.txt','rb')
> text2=f.read()
> f.close()
> #print text1
> #print text2
> text1_lines = text1.splitlines(1)
> text2_lines = text2.splitlines(1)
> d = difflib.HtmlDiff()
>
> diff = d.make_file(text1_lines, text2_lines)
> print diff
>
>
> To find difference this program and  *"difflib"* library can help you
> HtmlDiff will return the HTML format of the comparison.
>
> if u are looking for output in plain text format then following can help
> you.
>
> import difflib
> d = difflib.Differ()
> diff = d.compare(text1_lines, text2_lines)
>


Do NOT spoonfeed! *sigh*

-V-
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/bangpypers/attachments/20090604/06fbfb95/attachment-0001.htm>


More information about the BangPypers mailing list