Dash plotly porting of BlueprintJS
Project description
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
pip install dash-blueprint-components
Quick start
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()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dash_blueprint_components-0.1.1.tar.gz
.
File metadata
- Download URL: dash_blueprint_components-0.1.1.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 088dc48b9cb05ad7bfa8459a2eb3592afe5ccbeeff6170eefd472e79e4846b39 |
|
MD5 | e2e3bf2222dd8d7280eeb7de01884e45 |
|
BLAKE2b-256 | 4f54a2d520a0f34fe1ed8fb4be3e13dc79af6f4fbdb90f6a5e4e76d15f0baadc |
File details
Details for the file dash_blueprint_components-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: dash_blueprint_components-0.1.1-py3-none-any.whl
- Upload date:
- Size: 2.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21c420bd92233cacbce80a2f745034beb63bfb6178fbce3f44c537b915e95981 |
|
MD5 | f9212b57ac30b015f80868417f3dbd2a |
|
BLAKE2b-256 | 9bf8d8119d9de8b75caffc6172f74f18f0c6a9168b132242265fb882924c2ca7 |