Dash wrapper for Datatables.net
Project description
dash-datatables
Dash wrapper for the wonderful DataTables.net
Code Snippet
from dash import html
import dash_datatables as ddt
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/solar.csv')
column_defs = [{"title": i, "data": i} for i in df.columns]
layout = html.Div([
html.H2('US Solar Capacity'),
html.Br(),
ddt.DashDatatables(
columns=column_defs,
data=df.to_dict('records'),
width="100%",
order=[2, 'asc'],
)
])
Installation
You can install dash-datatables with pip
:
pip install dash-datatables
Documentation
Head over to the README for more details.
Contributing
The source code for dash-datatables is available on GitHub. If you find a bug or something is unclear, we encourage you to raise an issue. We also welcome contributions, to contribute, fork the repository and open a pull request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dash_datatables-0.0.2.tar.gz
(88.6 kB
view hashes)
Built Distribution
Close
Hashes for dash_datatables-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bd988f9d00669eecefdbae8262b56e1a2acf3a75f646e4f4959f716b1a27c0e |
|
MD5 | 7f820dd1f82abe08fe2f17cb79ae7eba |
|
BLAKE2b-256 | 9a6769b0efe2085321169ae74ffe34c2de9fa55350f62430e0baa5276fc12fc1 |