All Projects → jupyterlab → Jupyter Renderers

jupyterlab / Jupyter Renderers

Licence: bsd-3-clause
Renderers and renderer extensions for JupyterLab

Projects that are alternatives of or similar to Jupyter Renderers

Awesome Jupyter
A curated list of awesome Jupyter projects, libraries and resources
Stars: ✭ 2,523 (+538.73%)
Mutual labels:  jupyter-notebook, jupyterlab, jupyterlab-extension
Jupytext
Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts
Stars: ✭ 4,969 (+1157.97%)
Mutual labels:  jupyter-notebook, jupyterlab, jupyterlab-extension
Best Of Jupyter
🏆 A ranked list of awesome Jupyter Notebook, Hub and Lab projects (extensions, kernels, tools). Updated weekly.
Stars: ✭ 200 (-49.37%)
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 (+101.52%)
Mutual labels:  jupyter-notebook, jupyterlab, jupyterlab-extension
Lantern
Data exploration glue
Stars: ✭ 292 (-26.08%)
Mutual labels:  jupyterlab, jupyterlab-extension, plotly
ipylab
Control JupyterLab from Python Notebooks with Jupyter Widgets 🧪 ☢️ 🐍
Stars: ✭ 101 (-74.43%)
Mutual labels:  jupyterlab, jupyterlab-extension
examples
Example nteract notebooks with links to execution on mybinder.org
Stars: ✭ 24 (-93.92%)
Mutual labels:  geojson, plotly
jupyterlab-python-file
JupyterLab extension to create Python files
Stars: ✭ 50 (-87.34%)
Mutual labels:  jupyterlab, jupyterlab-extension
Jupyterlab Github
GitHub integration for JupyterLab
Stars: ✭ 273 (-30.89%)
Mutual labels:  jupyterlab, jupyterlab-extension
pull-requests
A JupyterLab extension for reviewing GitHub pull requests
Stars: ✭ 33 (-91.65%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-topbar
JupyterLab Top Bar extension
Stars: ✭ 95 (-75.95%)
Mutual labels:  jupyterlab, jupyterlab-extension
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (-29.62%)
Mutual labels:  jupyter-notebook, plotly
jupyter-project
Handle project folder, template and file templates in JupyterLab
Stars: ✭ 13 (-96.71%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-theme-solarized-dark
JupyterLab 2/3 Solarized Dark extension
Stars: ✭ 61 (-84.56%)
Mutual labels:  jupyterlab, jupyterlab-extension
theme-darcula
A handsome Darcula theme for Jupyterlab. The first jlab theme to include dark scrollbars
Stars: ✭ 136 (-65.57%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-credentialstore
A secure way of storing credentials within JupyterLab
Stars: ✭ 19 (-95.19%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-spreadsheet-editor
JupyterLab spreadsheet editor for tabular data (e.g. csv, tsv)
Stars: ✭ 72 (-81.77%)
Mutual labels:  jupyterlab, jupyterlab-extension
Jupyterlab Google Drive
Cloud storage for JupyterLab using Google Drive
Stars: ✭ 332 (-15.95%)
Mutual labels:  jupyterlab, jupyterlab-extension
Notebook As Pdf
Save Jupyter Notebooks as PDF
Stars: ✭ 290 (-26.58%)
Mutual labels:  jupyter-notebook, jupyterlab
Jupyterlab Sql
SQL GUI for JupyterLab
Stars: ✭ 336 (-14.94%)
Mutual labels:  jupyterlab, jupyterlab-extension

Jupyter Renderers

Github Actions Status Binder

This is a monorepo that consists of JupyterLab mimerender extensions for common file and MIME types.

Packages

Name Mime types File extensions Info
fasta-extension application/vnd.fasta.fasta .fasta Version Downloads
geojson-extension application/geo+json .geojson, .geo.json Version Downloads
katex-extension N/A N/A Version Downloads
mathjax3-extension N/A N/A Version Downloads
vega2-extension application/vnd.vega.v2+json, application/vnd.vegalite.v1+json .vg, .vl, .vg.json, .vl.json, .vega, .vegalite Version Downloads
vega3-extension application/vnd.vega.v3+json, application/vnd.vegalite.v2+json .vg, .vl, .vg.json, .vl.json, .vega, .vegalite Version Downloads

Looking for plotly-extension?

@jupyterlab/plotly-extension is being deprecated. Please use the Plotly-supported jupyterlab-plotly. See the plotly.py README for more info.

Install

With JupyterLab 3.0, it is possible to install the prebuilt extensions with pip:

pip install jupyterlab-fasta
pip install jupyterlab-geojson
pip install jupyterlab-katex
pip install jupyterlab-mathjax3
pip install jupyterlab-vega2
pip install jupyterlab-vega3

It is also possible to install the extension from source using the jupyter labextension install command:

  • fasta-extension: jupyter labextension install @jupyterlab/fasta-extension
  • geojson-extension: jupyter labextension install @jupyterlab/geojson-extension
  • katex-extension: jupyter labextension install @jupyterlab/katex-extension
  • mathjax3-extension: jupyter labextension install @jupyterlab/mathjax3-extension
  • vega2-extension: jupyter labextension install @jupyterlab/vega2-extension
  • vega3-extension: jupyter labextension install @jupyterlab/vega3-extension

JupyterLab 2.x only supports installing the extensions with the jupyter labextension install command.

Contributing

If you would like to contribute to the project, please read our contributor documentation.

JupyterLab follows the official Jupyter Code of Conduct.

Requirements

Install

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
git clone https://github.com/jupyterlab/jupyter-renderers.git
cd jupyter-renderers

# install the fasta extension
cd packages/fasta-extension

# Install package in development mode
pip install -e .

# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite

# Rebuild the extensions TypeScript source after making changes
jlpm run build

Rebuilding extensions

After making changes to the source packages, the packages must be rebuilt:

# Rebuild all the extensions at once
jlpm run build

# To rebuilt a particular extension, for example the fasta extension
cd packages/fasta-extension
jlpm run build

You may also watch a particular extension directory for changes and automatically rebuild:

# In one terminal tab, watch the jupyter-fasta directory
cd packages/fasta-extension
jlpm run watch

# Run JupyterLab in another terminal
jupyter lab

Publishing packages

jlpm run publish
# If publishing a package for the first time
npm access public @jupyterlab/<extension name>

Creating icons

To create a JupyterLab icon for a new MIME or file type, you can use the Sketch file in this repo or fork the file on Figma and export your icon as an SVG. See the GeoJSON icon for reference.

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].