sachin235 / bitcommit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bitcommit

bitcommit is a jupyter notebook extension enabling users push ipython notebooks to a Bitbucket repo. The bitbucket button gets displayed in the notebook toolbar. After saving any notebook the user can push notebook to the pre-specified Bitbucket repository. There are few environment variables that must be exported. Feel free to use the extension and open issue if you face any problems, or wish to add some utility to the extension.

Installation

You can currently install this directly from git. Use the following commands to install the extension.

pip install git+https://github.com/sachin235/bitcommit.git
jupyter serverextension enable --py bitcommit
jupyter nbextension install --py bitcommit --user

To enable this extension for all notebooks:

jupyter nbextension enable bitcommit --user --py 

Steps

  • Install package using the above commands
  • Create Bitnucket repo (eg. gitjupyter) where notebooks will be pushed if not already exists and clone it in your GIT_PARENT_DIR
  • Clone this repo as well in your GIT_PARENT_DIR directory
  • GIT_PARENT_DIR refers to the home directory of your system
  • Replace the values in env.sh present in this repo itself (as shown in the example below)
  • Run the command source ~/bitcommit/env.sh
  • Configure ssh key (present in ~/.ssh/id_rsa.pub or specified location) in the Bitbucket account
  • Run jupyter notebook from within your repo directory (eg. gitjupyter here)

Example git configuration

export GIT_PARENT_DIR=~
export GIT_REPO_NAME=gitjupyter
export GIT_BRANCH_NAME=<Branch name>
export GIT_USER=<your Bitbucket username>
export GIT_EMAIL=<your email linked with Bitbucket account>
export BITBUCKET_APP_PASSWORD=<app-password generated from Bitbucket user settings>
export GIT_USER_UPSTREAM=<your Bitbucket username>

Working Demo

Bitbucket Extension

About


Languages

Language:Python 45.6%Language:JavaScript 41.0%Language:Shell 13.4%