runnb.py is a script to run jupyter notebooks from the command-line.
It is a nbconvert API wrapper.
Notes on executing notebooks can be found here.
You may also want to see the format specification of jupyter notebooks nbformat.
Current version of runnb.py is implemented and tested under python 2 and jupyter 4.3.0.
runnb.py [options] <path/to/notebook.ipynb>- -h --help Display help message.
- -e --allow-error Allow error during single cell and continue running.
- -n --no-stdio Don't recover STDIO to command line. (You may not see printed messages.)
- -a --allow-not-trusted Run the notebook even not trusted.
- -t --to=<path/to/notebook.out.ipynb> Save the executed notebook to a specific file.
Assume we have a notebook test.ipynb.
Simply run the notebook from command-line:
runnb.py test.ipynbIf we want to run the notebook not being break by possible error in some cell, pass the --allow-error flag:
runnb.py --allow-error test.ipynbOr do it with the shortcut -e:
runnb.py -e test.ipynbIf we wanted to export the executed notebook, use --to:
runnb.py --to=test.out.ipynb test.ipynbor using its shortcut -t:
runnb.py --ttest.out.ipynb test.ipynbBy default, we recover the output of notebook to the command-line by boardcasting the input/output/error stream. This is done by adding a small snippet of code handling sys.stdin, sys.stdout, and sys.stderr. A tiny Tee Class is used to support such behavior. Make sure tee.py is in our python search path. If doing this is not preferable in certain scenario, we can turn it off by passing --no-stdio flag:
runnb.py --no-stdio test.ipynbor using its shortcut -n:
runnb.py -n test.ipynbHowever, this could mean we may not see output from the execution on the command-line. It could be a good idea to save those outputs to a output notebook by using --to flag:
runnb.py --no-stdio --to test.out.ipynb test.ipynbThe most (no exaggeration) dangerous thing we can try here is to run a not trusted notebook. By default, running a not-trusted notebook leads to a DeprecationWarning that stop it from running. However, if one insists to, we can pass --allow-not-trusted flag to allow running.
runnb.py --allow-not-trusted not_trusted.ipynbDeprecation message will be displayed but it would not block running. The executed not-trusted notebook could also be saved by using --to. We will unsign the outcome of not-trusted notebook and mark it not trusted. However, the best practice is do not run not trusted notebooks. At least we should review the notebook first, and sign it trusted if it is safe. Make sure we understand what is happenning and what we are doing.
runnb(nb_path, allow_errors=False, no_stdio=False, to_file=None)
Run a notebook from current path.
Parameters:
nb_path(str) - path to a notebook.allow_errors(bool) - Wheither to allow error during single cell and continue running. When set toTrue, the notebook will continue running following cells if error presents in some cell. DefaultFalse.no_stdio(bool) - Wheither to stop recovering STDIO to default. When set toTrue, default STDIO (usually command-line) will not be recovered. Results can be found only in the output notebook. DefaultFalse.to_file(str) - Path to which file the executed notebook will be saved to. The notebook will not be save if set toNoneor empty string. DefaultNone.
Raises:
DeprecationWarning- Raise if the notebook is not trusted and the warning is not filtered withwarningsmodule.
- Implement
setup.pyto allow installing.