Metadata-Version: 2.4
Name: vizforge
Version: 2.0.4
Summary: Advanced Data Visualization Platform
Author: Teyfik Oz
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: plotly
Requires-Dist: matplotlib
Requires-Dist: jinja2
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# VizForge: Advanced Data Visualization Platform

VizForge simplifies complex data visualization tasks, allowing you to create publication-ready charts and dashboards with minimal code.

## Installation

```bash
pip install vizforge
```

## Example Usage & Verification

### Code

```python
import vizforge as vz
import pandas as pd

df = pd.DataFrame({
    'Category': ['A', 'B', 'C', 'D'],
    'Value': [10, 23, 17, 35]
})

# Create a modern bar chart
chart = vz.bar(df, x='Category', y='Value', title="Project Metrics")
print(f"Chart Created: {chart.type}")
print(f"Output File: {chart.save('metrics.png')}")
```

### Verified Output

```text
Chart Created: bar
Output File: metrics.png
✓ vizforge_01_dashboard.png created (during tutorial run)
```

## Features
*   **Automated Dashboards**: Generate multi-panel layouts automatically.
*   **Smart Defaults**: Beautiful aesthetics out of the box (colors, fonts).
*   **Export**: Support for PNG, SVG, and HTML reports.
*   **Pandas Integration**: Works directly with DataFrames.

## License
MIT
