csvfilter icon indicating copy to clipboard operation
csvfilter copied to clipboard

Command-line tool for manipulating CSV data

Results 8 csvfilter issues
Sort by recently updated
recently updated
newest added

After processing a normal file with unix line endings, and sending output to a file, I discovered that it has Windows/DOS (CRLF) line endings. Expected result: output file with unix...

``` $ csvfilter -f 1,2,3 file.csv ``` Expected: Output columns 1, 2, and 3 from file.csv for all rows Actual: Only outputs columns 1, 2, and 3 from the first...

Since Python2.7 is deprecated, I used pip3 to install csvfilter. I noticed that it outputs only the first ligne of my csv file: >csvfilter -f 1,3,5 test.csv ScanDate,DependencyPath,License

By setting fields as the result of `map()`, it was being consumed after the first row. changing to a `list`

When using `csvfilter` as tool to filter data of one tool before passing it to another tool, input and output separator characters are mostly required to be the same. Currently...

It would be nice to have a `-a` option that would inspect the first line and auto-detect the separator character. I'd simply look for comma, semicolon and tab and use...

I'm trying to process a large CSV file with `cat in.csv | csvfilter -f 0 > out.csv` Halfway through the file, it fails with this error: ``` Traceback (most recent...

I want to manage big cvs files with this tools (more than 200000 rows) but i get this error, It is possible to manage big cvs files? Thanks