This repository was archived by the owner on Aug 30, 2022. It is now read-only.
This repository was archived by the owner on Aug 30, 2022. It is now read-only.
Cleanup kernel for dashboards run within Jupyter Notebook #117
Closed
Description
Deploying completely standalone dashboards can be overweight for situations in which the notebook author wants to quickly share a series of "micro-dashboards" for a couple of trusted users (e.g., teammates) to play with. It would be nice to hand users a URL to a notebook within Jupyter and have it appear as a dashboard. We already do this somewhat with the ?dashboard
query arg which hides everything except the Jupyter menubar. A few more actions are required to get a functioning dashboard for every user that hits the notebook.
- Hide all chrome, including the menubar.
- Spawn a completely new kernel to stay independent from other users. (Is this already supported in the notebook?)
- Run all cells. (This has security implications.)