Metadata-Version: 2.1
Name: nbtools
Version: 21.2
Summary: A framework for user-friendly widgets and tools in Jupyter Notebook.
Home-page: https://github.com/genepattern/nbtools
Author: Thorin Tabor
Author-email: tmtabor@cloud.ucsd.edu
License: BSD
Download-URL: https://github.com/genepattern/nbtools/archive/21.02.tar.gz
Description: [![Binder](https://beta.mybinder.org/badge.svg)](https://mybinder.org/v2/gh/genepattern/nbtools/master)
        
        # nbtools
        **nbtools** is a package for creating user-friendly Jupyter notebooks that are accessible to both programming and non-programming users. The package provides:
        
        * A 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 WYSIWYG editor for markdown cells (provided as part of the accompanying `juptyter-wyswyg` package).
        
        **nbtools** was developed as part of the [GenePattern Notebook](http://genepattern-notebook.org) environment. This environment also serves as an example of how nbtools can be extended and applied to a specific domain: in its case, bioinformatics.
        
        ### **Looking for JupyterLab support?**
        **JupyterLab support in is currently in beta. You can find it in its own branch. [Just click here!](https://github.com/genepattern/nbtools/tree/lab)**
        
        ## Installation
        
        **nbtools** is available through [PIP](https://pypi.org/) and [conda](https://anaconda.org). 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 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. Go ahead and install nbtools, launch
        Jupyter and open a new, blank notebook.
        
        Once that's completed, let's write a basic function. The function below accepts a string and prints a brief message. By default, the message addresses the world. For good measure we will also add a docstring to document the function.
        
        ```python
        def say_hello(to_whom='World'):
            """Say hello to the world or whomever."""
            print('Hello ' + to_whom)
        ```
        
        This is pretty basic Python and hopefully everything so far is familiar. Next, we will turn this function into an interactive widget with just an import statement and one line of code. Update your code to what is shown below and execute the cell.
        
        ```python
        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 docstring will also appear as a description near the top of the widget. Go ahead and change the `to_whom` value, then click the "Run" button. This will execute the function and print the results below. Meanwhile, the form will also collapse, making more room on your screen.
        
        With the push of a button, you've run the `say_hello` function!
        
        This is exciting, but it is far from the only feature of the nbtools package. 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
        
        * [UI Builder](doc/uibuilder.md)
        * [UI Output](doc/uioutput.md)
        * [Tool Manager API](doc/toolmanager.md)
        * [WYSWYG Editor](doc/wysiwyg.md)
        
Keywords: genepattern,ipython,jupyter,nbextensions
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Jupyter
Description-Content-Type: text/markdown
