Skip to main content

Make shareable links to notebooks.

Project description

# JupyterHub Share Link

This is a new project that is still a work in progress. Please do not attempt to use it in production yet. Contributors welcome!

## Demo

In this GIF, Alice logs in, right-clicks a notebook and chooses “Copy Shareable Link”. A dialog box appears, saying:

> For the next hour, any other user on this JupyterHub who has this link will be > able to fetch a copy of your latest saved version of > dask-examples/array.ipynb.

She copies the link and gives it to Bob. Then, on the right, Bob logs in and pastes the link into his browser. He is given a copy of Alice’s notebook.

![Demo](https://github.com/danielballan/jupyterhub-share-link/blob/master/demo.gif?raw=true)

## JupyterHub Compatibility

  • jupyterhub-share-link v0.0.1 is compatible with JupyterHub 1.0

  • juptyerhub-share-link v0.1.0 takes a different approach that requires a [one-line change](https://github.com/jupyterhub/jupyterhub/pull/2755) to jupyterhub itself, which has been submitted for consideration for inclusion in jupyterhub

## Uses and Limitations

This is for low-effort, short-term sharing between users who are on the same Hub.

The sender right-clicks a notebook (or any file) and clicks “Copy Shareable Link.” The sender gives that link to any other user on the same Hub. When another user clicks the share link, the last saved version of the file is copied from the sender’s notebook server to the recipient’s. If the sender changes the file, the recipient can click the link again to make another copy reflecting the changes. After a given time interval, the link expires.

On Hubs using a container-based spawner, the share link encodes both the notebook and the container image that the sender was running that notebook in. The recipient will automatically be directed to a server running that same container image, and thus have some assurance that they will be running the notebook in a compatible software environment. (This is not the case when sharing notebooks via email or Dropbox.)

This approach is not suitable for persistent sharing, such as galleries or lists of links to be maintained long term. For those use cases, it is better to encode software dependencies (as in a Binder repo) rather than relying on the availability of a specific image.

## Try it — with containers or without containers

This works with both local process spawners and container-based spawners. If contaienrs are used, the service will ensure that the shared notebook is opened in a server running the same container image as that which it was shared from.

### With Containers

  1. Clone this repository and install it.

    ` git clone https://github.com/danielballan/jupyterhub-share-link cd jupyterhub-share-link pip install . `

  2. Install [DockerSpawner](https://github.com/jupyterhub/dockerspawner).

    ` pip install dockerspawner `

  3. Generate a key pair that will be used to sign and verify share links.

    ` # creates private.pem and public.pem in the current directory python -m jupyterhub_share_link.generate_keys `

  4. Start JupyterHub using an example configuration provided in this repo.

    ` jupyterhub -f example_config_dockerspawner.py `

  5. Log in with any username and password—for example, alice. (The DummyAuthenticator is used by this demo configuration.)

  6. Spawn a server using the default image, danielballan/base-notebook-with-image-spec-extension.

  7. Create and save a notebook Untitled.ipynb to share.

  8. Find Untitled.ipynb in the file browser and right-click it. A dialog box will appear. Click the button to copy the link.

  9. Log in as a different user and paste the shared link.

  10. The user will have a new server started running the same image as alice, and the notebook will be copied and opened.

### Without Containers

  1. Clone this repository and install it.

    ` git clone https://github.com/danielballan/jupyterhub-share-link cd jupyterhub-share-link pip install . `

  2. Generate a key pair that will be used to sign and verify share links.

    ` # creates private.pem and public.pem in the current directory python -m jupyterhub_share_link.generate_keys `

  3. Install the labextension and the server extension into the user environment.

    ` # Disable the default share-file extension and register our custom one. jupyter labextension disable @jupyterlab/filebrowser-extension:share-file jupyter labextension install jupyterhub-share-link-labextension pip install jupyterhub-share-link-labextension jupyter serverextension enable --py jupyterhub_share_link_serverextension --sys-prefix `

  4. Start JupyterHub using an example configuration provided in this repo. (In order to be able to log in as multiple users, you will likely need to run this as root.)

    ` jupyterhub -f example_config_no_containers.py `

  5. Log in as a sytem user and start the user’s server.

  6. Create and save a notebook Untitled.ipynb to share.

  7. Find Untitled.ipynb in the file browser and right-click it. A dialog box will appear. Click the button to copy the link.

  8. Log in as a different user and paste the shared link.

  9. The notebook will be copied to that user’s server and opened.

## Design

This involves:

  • A stateless Hub Service (in this repository) with the routes:

    ` POST /create GET /open `

  • A public/private key pair that belong to the service, enabling it issue “share” links that it can verify the recipient has not tampered with.

  • A small notebook server extension for exposing JUPYTER_IMAGE_SPEC, an environment variable in a new server REST endpoint, and a labextension that customizes the behavior of the ‘Copy Share Link’ context menu item. Bother the server extension and the labextension are in the repository [danielballan/jupyterhub-share-link-labextension](https://github.com/danielballan/jupyterhub-share-link-labextension).

The file-copying occurs via the notebook’s ContentsManager, so there is no need for users to be on the same filesystem. They only have to be on the same Hub.

## Open Questions

  • Encrypt path so that directory structure is not leaked to recipient?

  • If senders server has stopped, do we temporarily start one? Probably not.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupyterhub-share-link-0.1.0.tar.gz (28.9 kB view hashes)

Uploaded Source

Built Distribution

jupyterhub_share_link-0.1.0-py3-none-any.whl (11.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page