项目作者: fcollonval

项目描述 :
DEPRECATED - Prefer the official server extension example linked below.
高级语言: TypeScript
项目地址: git://github.com/fcollonval/jupyterlab_api_ext.git
创建时间: 2017-12-30T10:05:24Z
项目社区:https://github.com/fcollonval/jupyterlab_api_ext

开源协议:MIT License

下载


DEPRECATED :arrow_right: Have a look at the official server extension example instead.

jupyterlab_api_ext

The goal is to provide an “Hello world” example of complex extension for JupyterLab using a notebook server extension.

demo

Prerequisites

  • JupyterLab

Development

For a development install (requires npm version 4 or later), do the following in the repository directory:

  1. pip install .
  2. jupyter serverextension enable --py jupyterlab_api_ext
  3. npm install
  4. npm run build
  5. jupyter labextension link .

In addition to the traditional TypeScript package, the python handler package needs to be installed and activated. This is the reason for the pip and jupyter serverextension commands.

To rebuild the TypeScript package and the JupyterLab app:

  1. npm run build
  2. jupyter lab build

References