Metadata-Version: 2.4
Name: csv-inspector-tool
Version: 0.1.0
Summary: Read CSV files and report title, headers, and per-column row counts.
Author-email: Sanchita Karki <karkisanchu06@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Sann842/csv-inspector.git
Keywords: csv,data,inspector
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# csv-inspector

A Python package that reads a CSV file and reports:
-- Table Title - derived from the file name
-- Headers - every column name found in the first row
-- Row Counts per Column - total rows, non-empty rows, empty rows, and fill-rate %


# installation

```bash
pip install .
```


# running test

```bash
python -m pytest tests/
```
