A framework for user-friendly widgets and tools in Jupyter Notebook.
Project description
NBTools
NBTools is a framework for creating user-friendly Jupyter notebooks that are assessible to both programming and non-programming users alike. The framework provides:
- A widget and decorator which can transform any Python function into an interactive user interface.
- A toolbox interface for encapsulating and adding new computational steps to a notebook.
- Flexible theming and APIs to extend the NBTools functionality.
- A WYSWYG editor for markdown cells (provided as part of the accompanying
juptyter-wyswyg
package).
NBTools was developed as part of the GenePattern Notebook environment. GenePattern Notebook also serves as an example of how NBTools can be extended and applied to a specific domain: in its case, bioinformatics.
Installation
NBTools is available through PIP and conda. Just run one of the following commands.
pip install nbtools
or
conda install -c genepattern nbtools
If using Jupyter Notebook version <= 5.2, you will need to execute to additional commands to install and enable the nbextension. This is not necessary in Jupyter 5.3+.
jupyter nbextension install --py nbtools
jupyter nbextension enable --py nbtools
Getting Started
Let's start by writing a simple Hello World function and turning it into an interactive widget inside a Jupyter notebook. Go ahead and install NBTools, launch Jupyter and open a new, blank notebook.
Next, let's write the function. The function below accepts a string and prints a brief hello message. By default, the message addresses the world. For good measure we will also add a docstring to document the function.
def say_hello(to_whom='World'):
"""Say hello to the world or whomever."""
print('Hello ' + to_whom)
This is pretty basic Python and hopefully so far everything is familiar. Next we will turn this function into an interactive widget with just an import statement and one line of code. Update the code to what is shown below and execute the cell.
import nbtools
@nbtools.build_ui
def say_hello(to_whom='World'):
"""Say hello to the world or whomever."""
print('Hello ' + to_whom)
You should now see a widget containing a web form. This form will prompt for the value of the to_whom
parameter. The docstrong will also appear as a
description near the top of the widget. Go ahead and change the to_whom
value or just leave it as "World," then click the "Run" button. This will execute the
function and print the results below the widget. Meanwhile, the form will also collapse, making more room on your screen.
With the push of a button, you've ran the say_hello
function!
This is exciting, but it is far from the only feature of the NBTools framework. You can edit markdown cells using a WYSIWYG editor, customize how your function
displays, chain together multiple related functions, make widgets from existing third-party methods, create a library of interactive tools (just click the Tools
button on the toolbar and you will see say_hello
has already added itself) and more! Just see the documentation links below.
Features
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nbtools-19.7.3.tar.gz
.
File metadata
- Download URL: nbtools-19.7.3.tar.gz
- Upload date:
- Size: 58.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47dbf332257230176ea43d5257057c20e5a037f15751f26b271e2de1829b4cc6 |
|
MD5 | e5dfcfbd4a0502c595d7f6635e4d73c7 |
|
BLAKE2b-256 | b2f6cc340cb8d8d1b62937e8d1d15732915661fda02ff39d94aabfccad6e4328 |
File details
Details for the file nbtools-19.7.3-py3-none-any.whl
.
File metadata
- Download URL: nbtools-19.7.3-py3-none-any.whl
- Upload date:
- Size: 118.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab4b369f8e8752181d8993fb3b2b39c7a3e50e8d1929db5b18c345f61c1adfc7 |
|
MD5 | c516fa71f88afb6b58b245aa34eaf421 |
|
BLAKE2b-256 | 6f3349c8ce269f9395d576c5381d691a159f4bb1456bb2cf2b604989ed846dca |