All Projects → jpmorganchase → Jupyterlab_templates

jpmorganchase / Jupyterlab_templates

Licence: apache-2.0
Support for jupyter notebook templates in jupyterlab

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Jupyterlab templates

Best Of Jupyter
🏆 A ranked list of awesome Jupyter Notebook, Hub and Lab projects (extensions, kernels, tools). Updated weekly.
Stars: ✭ 200 (-10.31%)
Mutual labels:  jupyter, notebook, jupyterlab, jupyterlab-extension
Jupyterlab Lsp
Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol
Stars: ✭ 796 (+256.95%)
Mutual labels:  jupyter, notebook, jupyterlab, jupyterlab-extension
Polyaxon
Machine Learning Platform for Kubernetes (MLOps tools for experimentation and automation)
Stars: ✭ 2,966 (+1230.04%)
Mutual labels:  data-science, jupyter, notebook, jupyterlab
Awesome Jupyterlab Extension
😎 A curated list of awesome Jupyterlab extension projects. 🌠 Detailed introduction with images.
Stars: ✭ 198 (-11.21%)
Mutual labels:  jupyter, notebook, jupyterlab, jupyterlab-extension
Lantern
Data exploration glue
Stars: ✭ 292 (+30.94%)
Mutual labels:  data-science, jupyter, jupyterlab, jupyterlab-extension
Jupyterlab Toc
Table of Contents extension for JupyterLab
Stars: ✭ 660 (+195.96%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Data Science Your Way
Ways of doing Data Science Engineering and Machine Learning in R and Python
Stars: ✭ 530 (+137.67%)
Mutual labels:  data-science, jupyter, notebook
Arcgis Python Api
Documentation and samples for ArcGIS API for Python
Stars: ✭ 954 (+327.8%)
Mutual labels:  data-science, jupyter, jupyterlab-extension
Jupyterlab Hub
Deprecated: JupyterLab extension for running JupyterLab with JupyterHub
Stars: ✭ 181 (-18.83%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Debugger
A visual debugger for Jupyter notebooks, consoles, and source files
Stars: ✭ 476 (+113.45%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Python Training
Python training for business analysts and traders
Stars: ✭ 972 (+335.87%)
Mutual labels:  data-science, jupyter, jupyterlab
Awesome Jupyter
A curated list of awesome Jupyter projects, libraries and resources
Stars: ✭ 2,523 (+1031.39%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Jupyterlab Interactive Dashboard Editor
A drag-and-drop dashboard editor for JupyterLab
Stars: ✭ 165 (-26.01%)
Mutual labels:  jupyter, notebook, jupyterlab
Nteract
📘 The interactive computing suite for you! ✨
Stars: ✭ 5,713 (+2461.88%)
Mutual labels:  data-science, jupyter, notebook
Jupyterlab Topbar
JupyterLab Top Bar extension
Stars: ✭ 86 (-61.43%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Jupyterlab Prodigy
🧬 A JupyterLab extension for annotating data with Prodigy
Stars: ✭ 97 (-56.5%)
Mutual labels:  data-science, jupyter, jupyterlab
Jupyterlab Python Bytecode
JupyterLab extension to explore CPython Bytecode
Stars: ✭ 57 (-74.44%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Jupyterlab System Monitor
JupyterLab extension to display system metrics
Stars: ✭ 154 (-30.94%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Jupyterlab Dash
An Extension for the Interactive development of Dash apps in JupyterLab
Stars: ✭ 342 (+53.36%)
Mutual labels:  jupyter, jupyterlab, jupyterlab-extension
Quantitative Notebooks
Educational notebooks on quantitative finance, algorithmic trading, financial modelling and investment strategy
Stars: ✭ 356 (+59.64%)
Mutual labels:  data-science, jupyter, notebook

Support for jupyter notebook templates in jupyterlab

Build Status codecov PyPI PyPI npm

Install

pip install jupyterlab_templates
jupyter labextension install jupyterlab_templates
jupyter serverextension enable --py jupyterlab_templates

Adding templates

install the server extension, and add the following to jupyter_notebook_config.py

c.JupyterLabTemplates.template_dirs = ['list', 'of', 'template', 'directories']
c.JupyterLabTemplates.include_default = True
c.JupyterLabTemplates.include_core_paths = True

Templates for libraries

The extension will search subdirectories of each parent directory specified in template_dirs for templates. Note! Templates in the parent directories will be ignored. You must put the templates in subdirectories, in order to keep everything organized.

If include_default = True the notebook_templates directory under the jupyter data folder is one of the default parent directories. Thus, if you have tutorials or guides you'd like to install for users, simply copy them into your jupyter data folder inside the notebook_templates directory, e.g. /usr/local/share/jupyter/notebook_templates/bqplot for bqplot.

Flags

  • template_dirs: a list of absolute directory paths. All .ipynb files in any subdirectories of these paths will be listed as templates
  • include_default: include the default Sample template (default True)
  • include_core_paths: include jupyter core paths (see: jupyter --paths) (default True)

Development

See CONTRIBUTING.md for guidelines.

License

This software is licensed under the Apache 2.0 license. See the LICENSE and AUTHORS files for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].