jupyterlab_iframe/README.md

24 lines
869 B
Markdown
Raw Permalink Normal View History

2018-03-11 22:34:47 -04:00
# jupyterlab_iframe
2018-03-13 01:00:45 -04:00
Open a site in a widget, or add a set of "quicklinks".
2018-04-16 10:51:29 -04:00
2018-03-26 15:15:02 -04:00
[![PyPI](https://img.shields.io/pypi/l/jupyterlab_iframe.svg)](https://pypi.python.org/pypi/jupyterlab_iframe)
2018-03-26 15:45:04 -04:00
[![PyPI](https://img.shields.io/pypi/v/jupyterlab_iframe.svg)](https://pypi.python.org/pypi/jupyterlab_iframe)
2018-03-26 15:46:44 -04:00
[![npm](https://img.shields.io/npm/v/jupyterlab_iframe.svg)](https://www.npmjs.com/package/jupyterlab_iframe)
2018-03-13 00:44:53 -04:00
2018-03-13 01:00:45 -04:00
![](https://raw.githubusercontent.com/timkpaine/jupyterlab_iframe/master/docs/example1.gif)
2018-03-26 15:14:04 -04:00
## Install
```bash
pip install jupyterlab_iframe
jupyter labextension install jupyterlab_iframe
jupyter serverextension enable --py jupyterlab_iframe
```
2018-03-13 01:00:45 -04:00
## Adding quicklinks
install the server extension, and add the following to `jupyter_notebook_config.py`
2018-03-13 00:44:53 -04:00
```python3
c.JupyterLabIFrame.iframes = ['list', 'of', 'sites']
2018-05-14 18:06:00 -04:00
c.JupyterLabIFrame.welcome = 'a site'
2018-03-13 00:44:53 -04:00
```