/csv-filter

Filter that extracts only the desired fields from CSV's.

Primary LanguagePython

Simple CSV Filter

Simple to use CSV Filter. Supose we want to filter a CSV extracting only the first, second and fourth file columns.

$ python main.py my_csvfile.csv 0 1 3

Note that columns are zero-indexed.

That's it!