Show difference of two strings in color
Project description
diffstrings
Show difference of strings in color. It works on both terminal and ipython.
It extends difflib.SequenceMatcher class and provides a direct function too.
Installation
pip install diffstrings
API
Example Result
Color explanation:
- Green: to add
- Yellow: to replace. (Remove yellow colored then add with green colored strings)
- Red: to be removed
Example texts
# Truth text to compare with
truth = """Lorem ipsum dolor sit amet,consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.f"""
# Supposedly wrong text to compare
predict = """Lorem furio dlfgor sit amet, consectetur apiscbgfing elit, sed do eiusmod tempor inciddfbunt ut labore et ddslore magna aliqua. Ut enim ad minim veniam, quis nostrud exercsfsation ullamco laboris assi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in volbcvbte velit esse cilldm doldsre eu fugiat nulla pafdgatur. Excepteur sint occaecat cupidatat non pident, sunt in culpa qui asafficia desert mollit anim id est lfdgarum."""
Using class
from diffstrings import SequenceMatcher
s = SequenceMatcher(None, predict, truth, autojunk=False)
print(s.diff_strings())
print(s.diff_strings(True))
Using function
from diffstrings import diff_strings
print(diff_strings(predict, truth))
print(diff_strings(predict, truth, show_change_on_seq2=True))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
diffstrings-0.1.3.tar.gz
(7.2 kB
view details)
Built Distribution
File details
Details for the file diffstrings-0.1.3.tar.gz
.
File metadata
- Download URL: diffstrings-0.1.3.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33245cb445e1a601dbcd3258a1703bfc02650875e9e3b591969cbc8717ac57fc |
|
MD5 | 3bb48e09813d4749f70e3affc891741e |
|
BLAKE2b-256 | 15b0be128f45a5e27aba4883c469dd033859f152eb0f3f3ace573ba2f08c3b3a |
File details
Details for the file diffstrings-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: diffstrings-0.1.3-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c843301b745fe37411e865033be7ff89d221d276d7637fd0674440415254a588 |
|
MD5 | 2f43a9367c1ef4f7e110fb4323d52150 |
|
BLAKE2b-256 | d5b230c58ac9ec895a8a794a86a05295075cbcf3604fc2aa1efd72450aa81238 |