Metadata-Version: 2.4
Name: dashkit_kiboui
Version: 1.0.1
Summary: Contribution graph components for Dash with native theming support
Home-page: https://pypi.org/project/dashkit_kiboui/
Author: Dashkit Team
License: MIT
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
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: Framework :: Dash
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dash>=2.0.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 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
