csvfilter
csvfilter copied to clipboard
Python3 compatible version
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
+1
In "init.py" "Processor.init" the variable field must be converted into a list. So change the following line.
self.fields = fields to self.fields = list(fields)
Worked for me