Metadata-Version: 2.4
Name: dashkit_kiboui
Version: 1.1.0
Summary: Contribution graph components for Dash with native theming support
Project-URL: Homepage, https://pypi.org/project/dashkit_kiboui/
Project-URL: Source, https://github.com/iamgp/dash_dashkit
Project-URL: Issues, https://github.com/iamgp/dash_dashkit/issues
License-File: LICENSE
Classifier: Framework :: Dash
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Requires-Dist: dash>=2.0.0
Description-Content-Type: text/markdown

# dashkit_kiboui

Contribution graph components for Dash (GitHub-like heatmap calendar and blocks).

## Install

```bash
pip install dashkit_kiboui
```

## Usage

```python
from dash import Dash, html
from dashkit_kiboui import ContributionGraph

app = Dash(__name__)

data = [
    {"date": "2025-01-01", "count": 1},
    {"date": "2025-01-02", "count": 5},
]

app.layout = html.Div(
    ContributionGraph(id="cg", data=data)
)

if __name__ == "__main__":
    app.run(debug=True)
```

## License
MIT
