Skip to content

Jupyter4Science/nbdev_app_template

Repository files navigation

Scientific Web Application Template - nbdev_app_template

A Python code example for building web apps without writing HTML, CSS. and JavaScript.

python logo altair viz logo
fast ai logo ipywidgets jupyter logo voila logo docker logo

Got a Python project or Jupyter notebook? Want to turn it into a web applilcation?

This repository contains easy-to-modify Python code. It demonstrates using ipywidgets to build an interactive web application. It relies on Jupyter notebook infrasturcture. However, the app looks like a web app, not a notebook. Further, it demonstrates the use of Docker and Voilà to allow the app to be hosted on composable infrastructure. The example code uses pandas for data access and Matplotlib to generate plots.

The template was developed so researchers can quickly and easily put their project on the web without getting bogged down in conventional web developement (AJAX, HTML, CSS, JS, etc.). The example notebook uses global temperature data from NASA to show how users can view, search, download, and plot data using an interactive, web enabled tool.

Opinionated Development Environment

nbdev is a library originally intended to allow developers to develop python libraries from Jupyter Notebooks. The advantage of this approach is that the resulting programming environment is truely literate: all code, tests, and documentation are produced from a narrative-style composition.

Development in Notebooks is often eshewed by programmers who have a prefered IDE or development environment that has useful features such as grammar check, auto-complete, navigating by definitions, or searching code. This is a fair point, though as we will see, many or all of these features can be reclaimed through the use of extensions.

Weighing benefits and drawbacks of the use of notebooks to develop a simple library is not in the scope of this template. However, the development of a user interface in Jupyter built with ipywidgets is more cumbersome. Though the creators of nbdev may not have intended it, this library is also excellent for developing interactive applications build with ipywidgets. Because interactive widgets make heavy use of callback functions, the use of debuggers is difficult. Additionally, the notebook kernel must be restarted to propogate changes made to the codebase. We claim that nbdev is best suited to ameliorate the following tiresome development procedure:

  1. Change a single line of code in a python script
  2. Restart rerun the application notebook
  3. Click through the application to debug and test your changes

This procedure is obviated by the use of nbdev, which allows the developer to develop, interact with, and test a subset of widgets as a single component that can be later integrated into the broader application.

Development

Getting Started

  1. Click the "Use This Template" Button in GitHub to create a copy of this repo of your own.
  2. Install Docker on your workstation. Note that you may need admin access to run Docker commands.
  3. Start a command line (terminal) session.
  4. Make sure Docker is running by entering: docker info.
  5. Run docker-compose up jupyterlab to start the JupyterLab server.
  6. Copy the URL starting with "http://localhost..." into your local browser. This URL ends with long token you will need to access the session.

Developing on a Remote server

If you need to develop your application on a remote server - such as a compute cluster - you will need to use ssh port forwarding in order to access the notebook from the browser on your local machine.

  1. SSH into the remote node using ssh -L 8888:localhost:8888 <username>@<ip-address>
  2. Follow the steps in Getting Started on the remote node you just logged into. Docker may already be installed there. You can check for it by running docker info.

Installing dependecies

Install any dependencies you need by adding them to the environment.yml file in the root directory and rebuilding the docker image.

Upload container

To allow others to run your app, it must be hosted on a publicly available Docker hosting system. There are a wide variety of options available including commercial sites like Amazon's AWS. Some institutions maintain their own Docker hosting systems. Depending on the specific reqirements of the hosting system you select, you'll need to provide either:

Attributions

This template is adapted from @rcpurdue's Notebook Application Template (nbtmpl).