All Projects → jupyterlab → Jupyterlab Google Drive

jupyterlab / Jupyterlab Google Drive

Licence: bsd-3-clause
Cloud storage for JupyterLab using Google Drive

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Jupyterlab Google Drive

theme-darcula
A handsome Darcula theme for Jupyterlab. The first jlab theme to include dark scrollbars
Stars: ✭ 136 (-59.04%)
Mutual labels:  jupyterlab, jupyterlab-extension
Lantern
Data exploration glue
Stars: ✭ 292 (-12.05%)
Mutual labels:  jupyterlab, jupyterlab-extension
jlab-enhanced-cell-toolbar
A cell toolbar for JupyterLab.
Stars: ✭ 28 (-91.57%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-topbar
JupyterLab Top Bar extension
Stars: ✭ 95 (-71.39%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-theme-solarized-dark
JupyterLab 2/3 Solarized Dark extension
Stars: ✭ 61 (-81.63%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-sparkmonitor
JupyterLab extension that enables monitoring launched Apache Spark jobs from within a notebook
Stars: ✭ 78 (-76.51%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-flake8
Jupyterlab python linter for notebooks and text files using flake8
Stars: ✭ 105 (-68.37%)
Mutual labels:  jupyterlab, jupyterlab-extension
spellchecker
Spellchecker for JupyterLab notebook markdown cells and file editor.
Stars: ✭ 162 (-51.2%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-credentialstore
A secure way of storing credentials within JupyterLab
Stars: ✭ 19 (-94.28%)
Mutual labels:  jupyterlab, jupyterlab-extension
pull-requests
A JupyterLab extension for reviewing GitHub pull requests
Stars: ✭ 33 (-90.06%)
Mutual labels:  jupyterlab, jupyterlab-extension
Jupyterlab Github
GitHub integration for JupyterLab
Stars: ✭ 273 (-17.77%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-spreadsheet-editor
JupyterLab spreadsheet editor for tabular data (e.g. csv, tsv)
Stars: ✭ 72 (-78.31%)
Mutual labels:  jupyterlab, jupyterlab-extension
ipyp5
p5.js Jupyter Widget
Stars: ✭ 33 (-90.06%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-python-file
JupyterLab extension to create Python files
Stars: ✭ 50 (-84.94%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyter-archive
A Jupyter/Jupyterlab extension to make, download and extract archive files.
Stars: ✭ 57 (-82.83%)
Mutual labels:  jupyterlab, jupyterlab-extension
ipydagred3
ipywidgets library for drawing directed acyclic graphs in jupyterlab using dagre-d3
Stars: ✭ 38 (-88.55%)
Mutual labels:  jupyterlab, jupyterlab-extension
nbcelltests
Cell-by-cell testing for production Jupyter notebooks in JupyterLab
Stars: ✭ 66 (-80.12%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-h5web
A JupyterLab extension to explore and visualize HDF5 file contents. Based on https://github.com/silx-kit/h5web.
Stars: ✭ 41 (-87.65%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyterlab-heroku
JupyterLab extension to deploy applications to Heroku
Stars: ✭ 20 (-93.98%)
Mutual labels:  jupyterlab, jupyterlab-extension
jupyter-project
Handle project folder, template and file templates in JupyterLab
Stars: ✭ 13 (-96.08%)
Mutual labels:  jupyterlab, jupyterlab-extension

jupyterlab-google-drive

Build Status

Cloud storage for JupyterLab through Google Drive.

NOTE: this is beta software and is rapidly changing.

This extension adds a Google Drive file browser to the left sidebar of JupyterLab. When you are logged into your Google account, you will have the files stored in your GDrive available to JupyterLab.

If you run into trouble, see if the troubleshooting guide has a solution for you.

Prerequisites

  • JupyterLab 1.x / 2.x
  • A Google Drive account

Setting up credentials with Google

To run this extension you need to authenticate your JupyterLab deployment (whether institutional or individual) with Google. In order to identify yourself to Google, you will need to register a web application with their Developers Console. Detailed instructions for setting up your application credentials can be found in setup.md.

Installation

To install this extension into JupyterLab (requires node 6 or later), do the following:

jupyter labextension install @jupyterlab/google-drive

Development

For a development install, do the following in the repository directory:

jlpm install
jlpm run build
jupyter labextension install .

You can then run JupyterLab in watch mode to automatically pick up changes to @jupyterlab/google-drive. Open a terminal in the @jupyterlab/google-drive repository directory and enter

jlpm run watch

Then launch JupyterLab using

jupyter lab --watch

This will automatically recompile @jupyterlab/google-drive upon changes, and JupyterLab will rebuild itself. You should then be able to refresh the page and see your changes.

Getting Started from Scratch

  • Install JupyterLab

    pip install jupyterlab
    
  • Install the jupyterlab-google-drive extension

    jupyter labextension install @jupyterlab/google-drive
    
  • Set up your application credentials according to this guide.

  • Start JupyterLab

    jupyter lab
    
  • Click on the Google Drive tab in the left sidebar in the JupyterLab interface and log in to your Google Drive account.

  • Have someone share a notebook or markdown file with you.

  • You should now see the file in the Shared with Me folder in the file browser. Double-click to open the file and begin editing!

Using Zero to JupyterHub (Z2JH)

When using Zero to JupyterHub to deploy a containerized environment, you can minimize the need to sign into JupyterHub and Google Drive. If you are using Google OAuth to autenticate users for JupyterHub, you can simply add the additional scopes to to the auth block:

auth:
    type: google
    google:
      callbackUrl: "<your-url>/hub/oauth_callback"
    scopes:
      - "openid"
      - "email"
      - "https://www.googleapis.com/auth/drive"
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].