Created
December 15, 2020 13:23
-
-
Save jamespaultg/a4a02fb0c95a511e537678aa8b290f79 to your computer and use it in GitHub Desktop.
python csv diff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pip install csv-diff | |
| from csv_diff import load_csv, compare | |
| diff = compare( | |
| load_csv(open("one.csv"), key="id"), | |
| load_csv(open("two.csv"), key="id") | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment