Metadata-Version: 2.1
Name: soufflesankey
Version: 0.1.0
Summary: A Python package for creating Sankey diagrams with a focus on mobile app analytics
Home-page: https://github.com/S0uffle/soufflesankey
Author: Souffle2
Author-email: 0229gnoliah@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: plotly
Requires-Dist: pandas
Requires-Dist: numpy

# SouffleSankey

A Python package for creating Sankey diagrams with a focus on mobile app analytics visualization.

## Installation

```bash
pip install soufflesankey
```

## Quick Start

```python
from soufflesankey import SouffleSankey

# Create a new Sankey diagram
sankey = SouffleSankey()

# Add flows
sankey.add_flow('Start', 'End', 100)

# Create and show the plot
fig = sankey.plot()
fig.show()
```

## Features
- Easy-to-use API for creating Sankey diagrams
- Support for custom colors and styling
- Built-in support for funnel analysis
- Integration with Plotly for interactive visualizations

## License
MIT License
