Configuration#

Directive options#

You may choose to hide the code of a cell, but keep its output visible using :hide-code::

.. jupyter-execute::
    :hide-code:

    print("this code is invisible")

produces:

print("this code is invisible")
this code is invisible

this option is particularly useful if you want to embed correctness checks in building your documentation:

.. jupyter-execute::
    :hide-code:

    assert everything_works, "There's a bug somewhere"

This way even though the code won’t make it into the documentation, the build will fail if running the code fails.

Similarly, outputs are hidden with :hide-output::

.. jupyter-execute::
    :hide-output:

    print("this output is invisible")

produces:

print("this output is invisible")

You may also display the code below the output with :code-below::

.. jupyter-execute::
    :code-below:

    print("this code is below the output")

produces:

this code is below the output
print("this code is below the output")

You may also add line numbers to the source code with :linenos::

.. jupyter-execute::
   :linenos:

   print("A")
   print("B")
   print("C")

produces:

1print("A")
2print("B")
3print("C")
A
B
C

To add line numbers from a specific line to the source code, use the lineno-start directive:

.. jupyter-execute::
   :lineno-start: 7

   print("A")
   print("B")
   print("C")

produces:

7print("A")
8print("B")
9print("C")
A
B
C

You may also emphasize particular lines in the source code with :emphasize-lines::

.. jupyter-execute::
    :emphasize-lines: 2,5-6

    d = {
        "a": 1,
        "b": 2,
        "c": 3,
        "d": 4,
        "e": 5,
    }

produces:

2d = {
3    "a": 1,
4    "b": 2,
5    "c": 3,
6    "d": 4,
7    "e": 5,
8}

Controlling exceptions#

The default behaviour when jupyter-sphinx encounters an error in the embedded code is just to stop execution of the document and display a stack trace. However, there are many cases where it may be illustrative for execution to continue and for a stack trace to be shown as output of the cell. This behaviour can be enabled by using the raises option:

.. jupyter-execute::
    :raises:

    1 / 0

produces:

1 / 0
---------------------------------------------------------------------------
ZeroDivisionError                         Traceback (most recent call last)
Cell In[7], line 1
----> 1 1 / 0

ZeroDivisionError: division by zero

Note that when given no arguments, raises will catch all errors. It is also possible to give raises a list of error types; if an error is raised that is not in the list then execution stops as usual:

.. jupyter-execute::
    :raises: KeyError, ValueError

    a = {"hello": "world!"}
    a["jello"]

produces:

a = {"hello": "world!"}
a["jello"]
---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
Cell In[8], line 2
      1 a = {"hello": "world!"}
----> 2 a["jello"]

KeyError: 'jello'

Additionally, any output sent to the stderr stream of a cell will result in jupyter-sphinx producing a warning. This behaviour can be suppressed (and the stderr stream printed as regular output) by providing the stderr option:

.. jupyter-execute::
    :stderr:

    import sys

    print("hello, world!", file=sys.stderr)

produces:

import sys

print("hello, world!", file=sys.stderr)
hello, world!

Manually forming Jupyter cells#

When showing code samples that are computationally expensive, access restricted resources, or have non-deterministic output, it can be preferable to not have them run every time you build. You can simply embed input code without executing it using the jupyter-input directive expected output with jupyter-output:

.. jupyter-input::
    :linenos:

    import time

    def slow_print(str):
        time.sleep(4000)    # Simulate an expensive process
        print(str)

    slow_print("hello, world!")

.. jupyter-output::

    hello, world!

produces:

1import time
2
3def slow_print(str):
4    time.sleep(4000)    # Simulate an expensive process
5    print(str)
6
7slow_print("hello, world!")
hello, world!

Controlling the execution environment#

The execution environment can be controlled by using the jupyter-kernel directive. This directive takes the name of the Jupyter kernel in which all future cells (until the next jupyter-kernel directive) should be run:

.. jupyter-kernel:: python3
    :id: a_unique_name

jupyter-kernel can also take a directive option :id: that names the Jupyter session; it is used in conjunction with the jupyter-download roles described in the next section.

Note that putting a jupyter-kernel directive starts a new kernel, so any variables and functions declared in cells before a jupyter-kernel directive will not be available in future cells.

Note that we are also not limited to working with Python: Jupyter Sphinx supports kernels for any programming language, and we even get proper syntax highlighting thanks to the power of Pygments.

Downloading the code as a script#

Jupyter Sphinx includes 2 roles that can be used to download the code embedded in a document: :jupyter-download-script: (for a raw script file) and :jupyter-download-notebook: or :jupyter-download-nb: (for a Jupyter notebook).

These roles are equivalent to the standard sphinx download role, except the extension of the file should not be given. For example, to download all the code from this document as a script we would use:

:jupyter-download-script:`click to download <index>`

Which produces a link like this: click to download. The target that the role is applied to (index in this case) is the name of the document for which you wish to download the code. If a document contains jupyter-kernel directives with :id: specified, then the name provided to :id: can be used to get the code for the cells belonging to the that Jupyter session.

Styling options#

The CSS (Cascading Style Sheet) class structure of jupyter-sphinx is the following:

- jupyter_container, jupyter_cell
  - cell_input
  - cell_output
    - stderr
    - output

If a code cell is not displayed, the output is provided without the jupyter_container. If you want to adjust the styles, add a new stylesheet, e.g. custom.css, and adjust your conf.py to load it. How you do so depends on the theme you are using.

Here is a sample custom.css file overriding the stderr background color:

.jupyter_container .stderr {
    background-color: #7FFF00;
}

Alternatively, you can also completely overwrite the CSS and JS files that are added by Jupyter Sphinx by providing a full copy of a jupyter-sphinx.css (which can be empty) file in your _static folder. This is also possible with the thebelab CSS and JS that is added.

Configuration options#

Typically you will be using Sphinx to build documentation for a software package.

If you are building documentation for a Python package you should add the following lines to your sphinx conf.py:

import os

package_path = os.path.abspath('../..')
os.environ['PYTHONPATH'] = ':'.join((package_path, os.environ.get('PYTHONPATH', '')))

This will ensure that your package is importable by any IPython kernels, as they will inherit the environment variables from the main Sphinx process.

Here is a list of all the configuration options available to the Jupyter Sphinx extension:

Configuration options#

name

description

jupyter_execute_default_kernel

The default kernel to launch when executing code in jupyter-execute directives. Default to python3.

render_priority_html

The priority of different output mimetypes for displaying in HTML output. Mimetypes earlier in the data priority list are preferred over later ones. This is relevant if a code cell produces an output that has several possible representations (e.g. description text or an image). Please open an issue if you find a mimetype that isn’t supported, but should be. Default to ['application/vnd.jupyter.widget-view+json', 'text/html', 'image/svg+xml', 'image/png', 'image/jpeg', 'text/latex', 'text/plain'].

render_priority_latex

Same as render_priority_html, but for latex. The default is ['image/svg+xml', 'image/png', 'image/jpeg', 'text/latex', 'text/plain'].

jupyter_execute_kwargs

Keyword arguments to pass to nbconvert.preprocessors.execute.executenb, which controls how code cells are executed. The default is {'timeout':-1, 'allow_errors': True).

jupyter_sphinx_linenos

Whether to show line numbering in all jupyter-execute sources.

jupyter_sphinx_continue_linenos

Whether to continue line numbering from previous cell in all jupyter-execute sources.