Metadata-Version: 2.4
Name: vizforge
Version: 2.0.5
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

### Basic Usage

```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)
```

### Advanced Usage: Dashboard Generation (Verified)

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

# Create complex financial dataset
df = pd.DataFrame({
    'Month': ['Jan', 'Feb', 'Mar', 'Apr'],
    'Revenue': [100, 120, 150, 170],
    'Cost': [80, 85, 90, 95]
})

# Generate multi-series chart
chart = vz.line(df, x='Month', y=['Revenue', 'Cost'], title="Q1 Performance")
print(f"Generated Multi-Series Chart: {type(chart).__name__}")
print(f"Data Points Processed: {df.size}")
```

**Verified Output:**
```text
Generated Multi-Series Chart: LineChart
Data Points Processed: 12
```

## 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
