Metadata-Version: 2.0
Name: nbinteract
Version: 0.0.8
Summary: Jupyter subcommand to export interactive HTML pages
Home-page: https://github.com/SamLau95/nbinteract
Author: Sam Lau
Author-email: samlau95@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Keywords: jupyter nbconvert interact
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Jupyter
Requires-Dist: nbconvert
Requires-Dist: traitlets
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

Notebook Interact
=================

Research on creating interactive content using Python.

## Getting Started

```
# Installs the nbconvert exporter
pip install -e .

# To export a notebook to interactive HTML format:
jupyter nbconvert --to interact notebooks/Test.ipynb

pip install -U ipywidgets
jupyter nbextension enable --py --sys-prefix widgetsnbextension

brew install yarn
yarn install
make -j2 serve
```


