csv-stripper

A simple cli tool to remove rows or columns from a CSV file.


Install
pip install csv-stripper==1.0

Documentation

What is this?

A simple CLI tool to strip rows or columns from a CSV file.

How to use

This is the minimum command that will print the result to the stdout.

stripper input.csv -s n -e m

|---|---| |-s, --start |First index to start stripping.| |-e, --end |Last index to be stripped (included).|

Optional parameters:

Parameter Meaning
-o, --out The file to save the output.
--row Whether the rows have to be stripped instead of the columns.
-d, --delimiter The separator of the values.