Metadata-Version: 2.4
Name: cleancsv
Version: 0.1.0
Summary: Clean and standardize CSV files automatically
Author-email: Weslley Marçal <weslleymarcal@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/weslleymarcal/cleancsv
Keywords: csv,data cleaning,pandas,data science
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# cleancsv

Clean and standardize CSV files automatically with one line of code.

## Install

```
pip install cleancsv
```

## Usage

```python
from cleancsv import clean, summary

# Show a quick summary
summary("data.csv")

# Clean the file (saves as data_clean.csv)
clean("data.csv")

# Custom output path
clean("data.csv", output="result.csv")
```

## What it does

- Removes completely empty rows
- Standardizes column names (lowercase, underscores)
- Strips extra whitespace from cells
- Detects and reports null values per column
- Auto-detects UTF-8 or latin-1 encoding

---

# cleancsv (Português)

Limpe arquivos CSV automaticamente com uma linha de código.

```python
from cleancsv import clean
clean("dados.csv")  # gera dados_clean.csv
```
