Metadata-Version: 2.4
Name: csv-health
Version: 0.3.0
Summary: Confident CSV health checks: audit + state + processing, stored inside the active venv
Author-email: Your Name <you@example.com>
License: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.0
Dynamic: license-file

# csv-health

**csv-health** is a lightweight Python library for quick health checks and simple statistics on CSV datasets.  
It provides a clean API to audit your CSV files, log reports, and generate auxiliary prediction files.

---

## Features
- 📊 **Audit CSV**: get row/column counts, missing values, dtypes summary.  
- 🗂 **Auto-logging**: JSON and TXT reports saved under your virtual environment (`<venv>/var/csv_health`).  
- 🔄 **Stateful**: remembers the last analyzed file for follow-up operations.  
- 🔮 **PPO Predictions**: background generation of an additional CSV (`ppo_predictions.csv`).  
- 👀 **Preview Mode**: print the first 50 rows of predictions, while returning the full DataFrame.

---

## Installation
```bash
pip install csv-health
