simonw / csv-diff

Python CLI tool and library for diffing CSV and JSON files
Apache License 2.0
292 stars 47 forks source link

Add support for multi-key and ignoring keys #22

Open gambler147 opened 3 years ago

gambler147 commented 3 years ago

This modification allows users to pass multiple keys by --key and ignore multiple columns by --ignore based on jsvine's pull request #17.

csv-diff one.csv two.csv --key=id1,id2 --ignore=col1,col2

However, cases where columns or keys contains comma will need further improvements.