A quick intro to Dash made for the PyData event in Zurich
Last updated Nov 4, 2025
60
Stars
14
Forks
3
Issues
0
Stars/day
Attention Score
31
Language breakdown
No language data available.
▸ Files
click to expand
README
Dash Demo
Getting Started
To use binder just click the link below. The first opens the tutorial notebook and the second takes you straight to jupyterlab for more experimentation
A repository for getting started with Dash using Jupyter and Binder
Examples
- Tutorial
- Table View (https://github.com/plotly/dash-table-experiments)
- Colorscales (https://github.com/plotly/dash-colorscales)
- Raw HTML Support, dangerous (https://github.com/plotly/dash-dangerously-set-inner-html)
- VisDCC (https://github.com/jimmybow/visdcc)
- mydcc (https://github.com/jimmybow/mydcc)
Docker (new)
You can use the jupyter-repo2docker tool to make a Dockerfile from the repository
jupyter-repo2docker https://github.com/4QuantOSS/DashIntro/
Docker (out-dated)
All of the older docker files are in the Docker subdirectoryBuild
To make the image yourself you can use the
docker build . -t dashdemo
Pull (preferred)
docker pull 4quant/dashdemo
Run
docker run --rm -p 8888:8888 -p 9999:9999 -t dashdemo
Run (with editable notebooks)
docker run --rm -p 8888:8888 -p 9999:9999 -v $(pwd)/notebooks:/home/dash_demo/notebooks -t dashdemo🔗 More in this category