# Dash Blueprint Components
Dash Blueprint Components (```DBPC```) is the porting for dash plotly of the blueprintjs React-based UI toolkit for the web.
It is optimized for building complex data-dense interfaces for desktop applications.
All the rights belongs to BlueprintJS team.
## Links
- Official Blueprint documentation: https://blueprintjs.com/docs/
- Pypi homepage: https://pypi.org/project/dash-blueprint-components/
- Dash blueprint components docs: https://dash-blueprint-components.com/blueprint/
## Installation
```python
pip install dash-blueprint-components
```
## Quick start
```python
from dash import Dash, html, callback, Input, Output
import dash_blueprint_components as dbpc
app = Dash(
__name__,
)
app.layout = html.Div(
children=[
dbpc.Button(
id='button',
text='Click me!'
),
html.Div(
id='output'
)
]
)
@callback(
Output('output', 'children'),
Input('button', 'n_clicks')
)
def click(n_clicks):
if n_clicks is not None:
return n_clicks
if __name__ == "__main__":
app.run_server()
```
Raw data
{
"_id": null,
"home_page": null,
"name": "dash-blueprint-components",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Stefano Fanizzi <ste.fanizzi@outlook.com>",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/4f/54/a2d520a0f34fe1ed8fb4be3e13dc79af6f4fbdb90f6a5e4e76d15f0baadc/dash_blueprint_components-0.1.1.tar.gz",
"platform": null,
"description": "# Dash Blueprint Components\n\nDash Blueprint Components (```DBPC```) is the porting for dash plotly of the blueprintjs React-based UI toolkit for the web.\n\nIt is optimized for building complex data-dense interfaces for desktop applications.\n\nAll the rights belongs to BlueprintJS team.\n\n## Links\n- Official Blueprint documentation: https://blueprintjs.com/docs/\n- Pypi homepage: https://pypi.org/project/dash-blueprint-components/\n- Dash blueprint components docs: https://dash-blueprint-components.com/blueprint/\n\n## Installation\n\n```python\npip install dash-blueprint-components\n```\n\n## Quick start\n\n```python\nfrom dash import Dash, html, callback, Input, Output\nimport dash_blueprint_components as dbpc\n\n\napp = Dash(\n __name__,\n)\n\napp.layout = html.Div(\n children=[\n dbpc.Button(\n id='button',\n text='Click me!'\n ),\n html.Div(\n id='output'\n )\n ]\n)\n\n@callback(\n Output('output', 'children'),\n Input('button', 'n_clicks')\n)\ndef click(n_clicks):\n if n_clicks is not None:\n return n_clicks\n\nif __name__ == \"__main__\":\n app.run_server()\n```\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Dash plotly porting of BlueprintJS",
"version": "0.1.1",
"project_urls": {
"Bug Reports": "https://github.com/STEdyd666/dash-blueprint-components/issues",
"Documentation": "https://dash-blueprint-components.com/blueprint",
"Source": "https://github.com/STEdyd666/dash-blueprint-components"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "9bf8d8119d9de8b75caffc6172f74f18f0c6a9168b132242265fb882924c2ca7",
"md5": "f9212b57ac30b015f80868417f3dbd2a",
"sha256": "21c420bd92233cacbce80a2f745034beb63bfb6178fbce3f44c537b915e95981"
},
"downloads": -1,
"filename": "dash_blueprint_components-0.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f9212b57ac30b015f80868417f3dbd2a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 2873082,
"upload_time": "2024-08-27T14:17:21",
"upload_time_iso_8601": "2024-08-27T14:17:21.476694Z",
"url": "https://files.pythonhosted.org/packages/9b/f8/d8119d9de8b75caffc6172f74f18f0c6a9168b132242265fb882924c2ca7/dash_blueprint_components-0.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f54a2d520a0f34fe1ed8fb4be3e13dc79af6f4fbdb90f6a5e4e76d15f0baadc",
"md5": "e2e3bf2222dd8d7280eeb7de01884e45",
"sha256": "088dc48b9cb05ad7bfa8459a2eb3592afe5ccbeeff6170eefd472e79e4846b39"
},
"downloads": -1,
"filename": "dash_blueprint_components-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "e2e3bf2222dd8d7280eeb7de01884e45",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2642190,
"upload_time": "2024-08-27T14:17:24",
"upload_time_iso_8601": "2024-08-27T14:17:24.212753Z",
"url": "https://files.pythonhosted.org/packages/4f/54/a2d520a0f34fe1ed8fb4be3e13dc79af6f4fbdb90f6a5e4e76d15f0baadc/dash_blueprint_components-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-27 14:17:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "STEdyd666",
"github_project": "dash-blueprint-components",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "dash-blueprint-components"
}