Python Forum

Full Version: More recent package/library for difflib?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I was going to install the difflib package, so I went to get more information about it from PyPi.org. However, it no longer exists, apparently. Is there a more updated or recent package similar to difflib that you have used and would recommend?

For background...I am trying to compare two blocks of text (very large narratives) for common text strings/sentences. I am using the "set/intersection" method, but was looking for another approach as well and difflib was recommended.

Thanks.
the difflib module is part of the standard python library
https://docs.python.org/3.7/library/difflib.html

https://pymotw.com/3/difflib/
(Jul-11-2019, 10:01 PM)metulburr Wrote: [ -> ]the difflib module is part of the standard python library
https://docs.python.org/3.7/library/difflib.html

https://pymotw.com/3/difflib/


Thank you - I understand now. Much appreciated!