Save and load notebooks to local-storage
Project description
Jupyter Offline Notebook
Save and load notebooks to browser storage, even if you've lost your connection to the server.
Installation
pip install jupyter-offlinenotebook
This should automatically enable the extension on Jupyter Notebook and JupyterLab 3.
If you are using JupyterLab 2 you must manually install the JavaScript component of the extension:
jupyter labextension install jupyter-offlinenotebook
This is not needed on JupyterLab 3 due to the new extensions framework that means the JavaScript can be included in the Python pip
package.
Usage
You should see up to five new buttons depending on your configuration and where you are running the notebook:
- download the in-memory (browser) state of the notebook
- save the in-memory state of the notebook to local-storage
- load a notebook from local-storage
- open the permanent URL of the repository containing this notebook
- copy the permanent mybinder URL to share this repository
Saving and loading uses the repository ID and the path of the current notebook.
You should always see the Download
button.
If you are running this on mybinder all buttons should be visible.
See the configuration section below to enable the other buttons on other systems.
If you don't see the buttons check the Javascript console log.
See example.ipynb
Configuration
This extension can be configured in jupyter_notebook_config.py
by setting the following properties of c.OfflineNotebookConfig
:
repository_id
: A callable that returns the repository ID. This is used when storing and retrieving notebooks. Default is the value of theBINDER_REPO_URL
environment variable.repository_ref_url
: A callable that returns the repository reference URL. Default is the value of theBINDER_REF_URL
environment variable.binder_persistent_url
: A callable that returns the repository reference URL. Default is the values of theBINDER_LAUNCH_HOST
andBINDER_PERSISTENT_REQUEST
environment variables.binder_repo_label
: A callable that returns the label used to link to the repository.
Warning
This extension is still in development. It is only tested on Firefox. Breaking changes may occur in future.
There are several major limitations including:
- Local-storage is limited by quotas imposed by the browser.
- A repository ID and path of the notebook within Jupyter Notebook are used, joined by a
Development notes
This extension stores notebooks in browser storage using the IndexedDB API, wrapped with Dexie.js.
One server API call is made during initialisation to obtain the storage configuration. Everything else is done client-side so should work even if the server is disconnected.
The master
branch supports both JupyterLab 2 and 3 as well as Jupyter Notebook, but it must be built using JupyterLab 3.
This is because the JavaScript assets are compiled using JupyterLab's jlpm
command.
Install the development dependencies:
pip install -r dev-requirements-jl3.txt
To build and install the development version on Jupyter Notebook and JupyterLab 3:
pip install .
This automatically runs jlpm
.
The notebook and server extensions should be automatically enabled.
If for some reason it isn't (i.e. it's not listed in jupyter nbextension list
or jupyter serverextension list
) install and enable it:
jupyter nbextension install --py jupyter_offlinenotebook --sys-prefix
jupyter nbextension enable --py jupyter_offlinenotebook --sys-prefix
jupyter serverextension install --py jupyter_offlinenotebook --sys-prefix
jupyter serverextension enable --py jupyter_offlinenotebook --sys-prefix
JupyterLab 3 supports the installation of extensions as a static package so no further steps are required.
If you are using JupyterLab 2 you must manually install the JavaScript component of the extension:
pip install .
jupyter labextension link
Tagged releases of this repository are automatically published to PyPI and NPM.
To test that the binder and repo buttons work when developing locally set some placeholder environment variables, e.g.:
BINDER_LAUNCH_HOST=http://localhost BINDER_REPO_URL=http://localhost BINDER_PERSISTENT_REQUEST=v2/gh/repo BINDER_REF_URL=http://localhost jupyter-lab --debug
If you make any changes remember to run all linters and auto-formatters:
pre-commit run -a
jlpm run eslint
jlpm run prettier
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jupyter_offlinenotebook-0.2.0.tar.gz
.
File metadata
- Download URL: jupyter_offlinenotebook-0.2.0.tar.gz
- Upload date:
- Size: 181.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5dd4f171a52798f808ac55a0d4b8b2bd42193577eeec3d88363033db231042f7 |
|
MD5 | 8f40042797d1230a37b089b854d239a5 |
|
BLAKE2b-256 | 28478fedf7f60910c4a5fed8538645fd256bc23e14ece3a1833f753782ee8ddb |
File details
Details for the file jupyter_offlinenotebook-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: jupyter_offlinenotebook-0.2.0-py3-none-any.whl
- Upload date:
- Size: 350.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0fa0a2625ab9fb9fade7c964feff95ddeec8c8f373e04e3b733c7b427aaea88 |
|
MD5 | bfff3c133a6d5c51ffeb0a46ed33aae4 |
|
BLAKE2b-256 | 3fa13acb9e0a5d6955b2f30ef10de0bf3e5a628215a9743ec830b15c749b74ec |