SandDance for pythonista
Last updated Jan 22, 2026
10
Stars
1
Forks
31
Issues
0
Stars/day
Attention Score
1
Language breakdown
Python 56.0%
CSS 29.1%
TypeScript 10.2%
JavaScript 4.7%
▸ Files
click to expand
README
pandas-sanddance
Custom Jupyter Widget with SandDance

NOTE: this widget is alpha stage for now
Installation
You can install using pip:
pip install pandas_sanddance
Or if you use jupyterlab:
pip install pandas_sanddance
jupyter labextension install @jupyter-widgets/jupyterlab-manager
If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable the nbextension:
jupyter nbextension enable --py [--sys-prefix|--user|--system] pandas_sanddance
Getting Started With
See also example/introduction.ipynb
import pandas as pd
from pandas_sanddance import SandDanceWidget
widget = SandDanceWidget()
widget.show()
df = pd.DataFrame([ {'x': 1, 'y': 1: 'text': 'first'}, {'x': 2, 'y': 2: 'text': 'second'}, {'x': 3, 'y': 3: 'text': 'third'}, ]) widget.load(df)
Powered by widget-ts-cookiecutter
🔗 More in this category