A simple command-line CSV Analyzer built using Python. This project helps you analyze CSV files and view column-wise statistics with a colorful and neatly formatted tabular interface.
- Analyze any CSV file for numeric column statistics
- Displays Mean, Min, Max, and Std Dev per column
- Skips non-numeric columns gracefully
- Export analysis report to a
.txtfile - Colorful CLI output for better readability
pip install laypatel13-csv-analyzerThen run it from anywhere in your terminal:
csv-analyzergit clone https://github.com/laypatel13/csv-analyzer.git
cd csv-analyzer
pip install -r requirements.txt
pip install -e .Then run:
csv-analyzercsv-analyzer/
├── csv_analyzer/
│ ├── __init__.py
│ └── main.py
├── sample-data.csv
├── pyproject.toml
├── requirements.txt
└── README.md