csv-diff icon indicating copy to clipboard operation
csv-diff copied to clipboard

Python CLI tool and library for diffing CSV and JSON files

Results 24 csv-diff issues
Sort by recently updated
recently updated
newest added

When trying to figure out what happens in #30 I discovered that when there are rows with duplicated keys, the behaviour is odd. It would be good to test for...

When I diffed two files I got `csv-diff` to give me this strange error: ```log ValueError: too many values to unpack (expected 2) ``` Turns out that the last line...

Having a `\n` at the end of a `.csv` or `.tsv` file shouldn't cause a crash. Github for example asks for all files to end in an empty line, otherwise...

I read through the README and `--help` but couldn't figure out what happens when I _don't_ pass a `--key`. Does it diff everything?

I searched for `tsv-diff` via Google and was led to this page where your tool doesn't actually show up. Maybe add `csv-diff` and `tsv-diff` as a topic to the repo...

Thanks for this lib! I've noticed that the `compare` method doesn't work if one of the csv files is empty. ## Steps to reproduce `a.csv` ```csv id,foo,bar ``` `b.csv` ```csv...

I store the csv of two tables with multiple primary keys. How do I pass in multiple values in the key of load_csv?

Added a function to show all columns in changed object

I'm trying to diff two CSV files and csv-diff just responds with: ``` ERROR: CSV parse error on line 2 ``` So I do the same things using it as...

right there is only option if you want to use `,` separated csv or `tab` separated csv. what if someone has separator as `;` or `:` something else, please accept...