npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jupyter-offlinenotebook

v0.3.1

Published

JupyterLab offline-notebook extension.

Downloads

145

Readme

Jupyter Offline Notebook

Binder PyPI npm Build Status

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.

This extension supports JupyterLab 3 and 4, and NBclassic. Use version 0.2.2 for JupyterLab 2 and Notebook <7.

Usage

Offline notebook buttons

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 the BINDER_REPO_URL environment variable.
  • repository_ref_url: A callable that returns the repository reference URL. Default is the value of the BINDER_REF_URL environment variable.
  • binder_persistent_url: A callable that returns the repository reference URL. Default is the values of the BINDER_LAUNCH_HOST and BINDER_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 . This may change in future.

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 CI pipeline builds the extension with JupyterLab 4, but the build package works with JupyterLab 3 and NBclassic. Install the development dependencies:

pip install -r dev-requirements-jl4.txt

To build and install the development version:

pip install .

This automatically runs jlpm.

The notebook and server extensions should be automatically enabled.

JupyterLab 3+ supports the installation of extensions as a static package so no further steps are required.

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 format