sphinx_gallery.interactive_example#

Binder and Jupyterlite utility functions#

Integration with Binder and Jupyterlite is on an experimental stage. Note that this API may change in the future.

Warning

Binder is still beta technology, so there may be instability in the experience of users who click Binder links.

Functions#

sphinx_gallery.interactive_example.check_binder_conf(binder_conf)[source]#

Check to make sure that the Binder configuration is correct.

sphinx_gallery.interactive_example.check_jupyterlite_conf(jupyterlite_conf, app)[source]#

Return full JupyterLite configuration with defaults

sphinx_gallery.interactive_example.copy_binder_files(app, exception)[source]#

Copy all Binder requirements and notebooks files.

sphinx_gallery.interactive_example.create_jupyterlite_contents(app, exception)[source]#
sphinx_gallery.interactive_example.gen_binder_rst(fpath, binder_conf, gallery_conf)[source]#

Generate the reST + link for the Binder badge.

Parameters:
  • fpath (str) – The path to the .py file for which a Binder badge will be generated.

  • binder_conf (dict or None) –

    If a dictionary it must have the following keys:

    ’binderhub_url’

    The URL of the BinderHub instance that’s running a Binder service.

    ’org’

    The GitHub organization to which the documentation will be pushed.

    ’repo’

    The GitHub repository to which the documentation will be pushed.

    ’branch’

    The Git branch on which the documentation exists (e.g., gh-pages).

    ’dependencies’

    A list of paths to dependency files that match the Binderspec.

  • gallery_conf (dict) – Sphinx-Gallery configuration dictionary.

Returns:

rst – The reStructuredText for the Binder badge that links to this file.

Return type:

str

sphinx_gallery.interactive_example.gen_binder_url(fpath, binder_conf, gallery_conf)[source]#

Generate a Binder URL according to the configuration in conf.py.

Parameters:
  • fpath (str) – The path to the .py file for which a Binder badge will be generated.

  • binder_conf (dict or None) – The Binder configuration dictionary. See gen_binder_rst for details.

Returns:

binder_url – A URL that can be used to direct the user to the live Binder environment.

Return type:

str

sphinx_gallery.interactive_example.gen_jupyterlite_rst(fpath, gallery_conf)[source]#

Generate the reST + link for the Binder badge.

Parameters:
  • fpath (str) – The path to the .py file for which a JupyterLite badge will be generated.

  • gallery_conf (dict) – Sphinx-Gallery configuration dictionary.

Returns:

rst – The reStructuredText for the JupyterLite badge that links to this file.

Return type:

str

sphinx_gallery.interactive_example.post_configure_jupyterlite_sphinx(app, config)[source]#
sphinx_gallery.interactive_example.pre_configure_jupyterlite_sphinx(app, config)[source]#