A simple Python CLI tool to clean CSV files by removing rows with missing values and optionally dropping specific columns.
- Removes rows with any null (
NaN) values - Optionally drops selected columns
- Saves the cleaned file with a
cleaned_prefix - Shows how many rows/columns were removed
- CLI-friendly with
argparse - Easily extendable!
Clone the repo and install it locally:
git clone https://github.com/your-username/csv-cleaner.git
cd csv-cleaner
pip install -e .csvc <your_csv_file> [--report] [--dropColumns col1 col2 ...]