dashkit-shadcn


Namedashkit-shadcn JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://pypi.org/project/dashkit_shadcn/
SummaryShadcn/ui-inspired chart components for Dash with native theming support
upload_time2025-08-20 16:29:58
maintainerNone
docs_urlNone
authorDashkit Team
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # dashkit_shadcn

Shadcn/ui inspired chart components for Dash (AreaChart, BarChart, ChartContainer, etc.).

## Install

```bash
pip install dashkit_shadcn
```

## Usage

```python
from dash import Dash, html
from dashkit_shadcn import AreaChart, ChartContainer

app = Dash(__name__)

app.layout = ChartContainer(
    children=[
        AreaChart(
            id="chart",
            data=[{"x": 1, "y": 3}, {"x": 2, "y": 5}],
            xKey="x",
            yKey="y",
        )
    ]
)

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

## License
MIT

            

Raw data

            {
    "_id": null,
    "home_page": "https://pypi.org/project/dashkit_shadcn/",
    "name": "dashkit-shadcn",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Dashkit Team",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/e4/4f/92c7d6d6c6c439cdb60d6322801c46f235e9203f9c15680f2e1b8125189e/dashkit_shadcn-1.0.1.tar.gz",
    "platform": null,
    "description": "# dashkit_shadcn\n\nShadcn/ui inspired chart components for Dash (AreaChart, BarChart, ChartContainer, etc.).\n\n## Install\n\n```bash\npip install dashkit_shadcn\n```\n\n## Usage\n\n```python\nfrom dash import Dash, html\nfrom dashkit_shadcn import AreaChart, ChartContainer\n\napp = Dash(__name__)\n\napp.layout = ChartContainer(\n    children=[\n        AreaChart(\n            id=\"chart\",\n            data=[{\"x\": 1, \"y\": 3}, {\"x\": 2, \"y\": 5}],\n            xKey=\"x\",\n            yKey=\"y\",\n        )\n    ]\n)\n\nif __name__ == \"__main__\":\n    app.run(debug=True)\n```\n\n## License\nMIT\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Shadcn/ui-inspired chart components for Dash with native theming support",
    "version": "1.0.1",
    "project_urls": {
        "Homepage": "https://pypi.org/project/dashkit_shadcn/",
        "Issues": "https://github.com/iamgp/dash-attio/issues",
        "Source": "https://github.com/iamgp/dash-attio"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd5c52537ec3e95fc58e1e89c7bbb869c6cfae3482c58ec0e23769e9fe54458d",
                "md5": "2265e1e2797c057a7f0260a4600a1ca8",
                "sha256": "fc76b7bb7c8386632634ba46836869930f1412ceeac071b744c768e27b7b434c"
            },
            "downloads": -1,
            "filename": "dashkit_shadcn-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2265e1e2797c057a7f0260a4600a1ca8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 135669,
            "upload_time": "2025-08-20T16:29:56",
            "upload_time_iso_8601": "2025-08-20T16:29:56.979241Z",
            "url": "https://files.pythonhosted.org/packages/cd/5c/52537ec3e95fc58e1e89c7bbb869c6cfae3482c58ec0e23769e9fe54458d/dashkit_shadcn-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e44f92c7d6d6c6c439cdb60d6322801c46f235e9203f9c15680f2e1b8125189e",
                "md5": "b5fd9dd7b4dc6ced49b6ab38ea25b24d",
                "sha256": "d80213a4c93fa8ac945093fbc463ea81907c34b63476e27323aefedfbb3c548b"
            },
            "downloads": -1,
            "filename": "dashkit_shadcn-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "b5fd9dd7b4dc6ced49b6ab38ea25b24d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 123229,
            "upload_time": "2025-08-20T16:29:58",
            "upload_time_iso_8601": "2025-08-20T16:29:58.452167Z",
            "url": "https://files.pythonhosted.org/packages/e4/4f/92c7d6d6c6c439cdb60d6322801c46f235e9203f9c15680f2e1b8125189e/dashkit_shadcn-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-20 16:29:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "iamgp",
    "github_project": "dash-attio",
    "github_not_found": true,
    "lcname": "dashkit-shadcn"
}
        
Elapsed time: 2.59340s