sphinx_gallery.binder¶
Binder utility functions¶
Integration with Binder 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.binder.check_binder_conf(binder_conf)[source]¶
Check to make sure that the Binder configuration is correct.
- sphinx_gallery.binder.copy_binder_files(app, exception)[source]¶
Copy all Binder requirements and notebooks files.
- sphinx_gallery.binder.gen_binder_rst(fpath, binder_conf, gallery_conf)[source]¶
Generate the RST + 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