Skip to main content

Jupyterlab templates from different types of contentsmanager

Project description

jupyterlab_multicontents_templates

Github Actions Status

Inspired by Jupyterlab-templates but added extra functions:

  1. Allow templates from any location, including S3, GCS, psql, etc., just installed the required jupyter contents manager.
  2. Preview notebook before import the template
  3. Directly publish notebook as templates into the selected folder with name
  4. Share Template URL and directly opened preview

This extension is composed of a Python package named jupyterlab_multicontents_templates for the server extension and a NPM package named jupyterlab_multicontents_templates for the frontend extension.

Screenshots

  • Use Template with preview JupyterLab-template-demo

  • Publish notebook to Templates JupyterLab-publish-demo

  • Share Templates jupyterlab-share-demo

Requirements

  • JupyterLab >= 3.0

Install

pip install jupyterlab_multicontents_templates

Config

configure jupyter_notebook_config.py with the following settings:

import os
from IPython.html.services.contents.filemanager import FileContentsManager
from s3contents import S3ContentsManager

c.JupyterLabMultiContentsTemplates.template_folders = {
    "templates from Local File": {
        "manager_class": FileContentsManager,
        "kwargs": {
            "root_dir": os.environ["HOME"]
        },
    },
    "templates from S3 prefix1": {
        "manager_class": S3ContentsManager,
        "kwargs": {
            "bucket": "example-bucket",
            "prefix": "path/to/notebooks",
        },
    },
    "templates from S3 prefix2": {
        "manager_class": S3ContentsManager,
        "kwargs": {
            "bucket": "another-example-bucket",
            "prefix": "path/to/notebooks",
        },
    },
}

# If you're using jupyterhub please set this value to True to enable sharing:
c.JupyterLabMultiContentsTemplates.append_hub_user_redirect = True

# Set this value to True if you want to sort template directory contents by name (ascending)
c.JupyterLabMultiContentsTemplates.sort_templates_by_name_asc = False

Troubleshoot

If you are seeing the frontend extension, but it is not working, check that the server extension is enabled:

jupyter server extension list

If the server extension is installed and enabled, but you are not seeing the frontend extension, check the frontend extension is installed:

jupyter labextension list

Contributing

Development install

Note: You will need NodeJS to build the extension package.

The jlpm command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may use yarn or npm in lieu of jlpm below.

# Clone the repo to your local environment
# Change directory to the jupyterlab_multicontents_templates directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Rebuild extension Typescript source after making changes
jlpm run build

You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.

# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm run watch
# Run JupyterLab in another terminal
jupyter lab

With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).

By default, the jlpm run build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:

jupyter lab build --minimize=False

Uninstall

pip uninstall jupyterlab_multicontents_templates

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

jupyterlab_multicontents_templates-0.4.10.tar.gz (90.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file jupyterlab_multicontents_templates-0.4.10.tar.gz.

File metadata

File hashes

Hashes for jupyterlab_multicontents_templates-0.4.10.tar.gz
Algorithm Hash digest
SHA256 ee84582a71e85347c288d376199a10fbe9448ac353caa88067812c326b04529b
MD5 8fbf65598874af2259a4a2f2800e7448
BLAKE2b-256 fa540a22765e476454dbbe4deabe2fecfcd4907aa4c74c890a80ef2540209097

See more details on using hashes here.

File details

Details for the file jupyterlab_multicontents_templates-0.4.10-py3-none-any.whl.

File metadata

File hashes

Hashes for jupyterlab_multicontents_templates-0.4.10-py3-none-any.whl
Algorithm Hash digest
SHA256 e01a0ffb821dd69753a1be37812c7e6f51e760dc57f59e509a429ffdf45887cb
MD5 775205db7f68499bde6ca037c7ba066b
BLAKE2b-256 b8aaa35a506da382f593eede29717ba7a1989b0942e51dd9de256a0f8617e1c3

See more details on using hashes here.

Supported by

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