Metadata-Version: 2.4
Name: csvhelper
Version: 0.1.0
Summary: A simple Python library for CSV cleaning and manipulation.
Author: Muthu Kumar
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Dynamic: license-file

# CSV Toolkit

A simple and beginner-friendly Python library for CSV cleaning and manipulation built using Pandas.

## Features

- Read CSV files
- Display the dataset
- Show first rows
- Show last rows
- View column names
- Get dataset shape
- Count rows
- Find missing values
- Remove duplicate rows
- Remove empty rows
- Fill missing values
- Rename columns
- Sort data
- Save cleaned CSV files

## Installation

```bash
pip install csv-toolkit
```

## Example

```python
from csvtoolkit import CSVToolkit

csv = CSVToolkit("employees.csv")

csv.show()
csv.remove_duplicates()
csv.remove_empty_rows()
csv.save("clean.csv")
```

## License

MIT License
