Metadata-Version: 2.4
Name: auto-insights-generator
Version: 0.1.0
Summary: Automated EDA for pandas DataFrames, powered by the Anthropic API.
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: anthropic>=0.25.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: numpy>=1.26.0
Requires-Dist: scipy>=1.12.0
Requires-Dist: matplotlib>=3.8.0
Requires-Dist: seaborn>=0.13.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: jupyter; extra == "dev"
Requires-Dist: ipykernel; extra == "dev"

# auto-insights

Automated EDA for pandas DataFrames, powered by the Anthropic API.

## Installation
pip install auto-insights

## Quickstart
```python
from auto_insights import InsightsGenerator
report = InsightsGenerator(df).run()
report.save("report.html")
```

## Requirements
Set ANTHROPIC_API_KEY in your environment.
