Run Python code blocks and display the output directly within Sphinx documentation
Project description
sphinx-exec-directive
Run Python code blocks and display the output directly within Sphinx documentation.
This is based very strongly on matplotlib's plot_directive
extension, but is used for running code instead of generating plots.
Note: This allows arbitrary code execution using exec()
. Don't do silly things with it.
Installation
Install from PyPI:
pip install sphinx-exec-directive
or manually:
git clone https://github.com/yongrenjie/sphinx-exec-directive
cd sphinx-exec-directive
pip install .
Then, inside your Sphinx conf.py
, add sphinx_exec_directive
to your list of extensions (note: underscores not hyphens).
extensions = [
sphinx_exec_directive,
# other extensions...
]
Example usage
A short example will suffice. Putting
.. exec::
print(1 + 1)
into your RST file will generate two literal blocks, one with the 'input' source code, and one with the captured stdout. It looks pretty basic, but it does the job:
Note that objects must be printed to stdout, or they will not be displayed. This behaviour therefore differs slightly from the functionality in a Jupyter notebook (where the last line is evaluated and the result displayed automatically), or the interactive Python console. If nothing is printed to stdout (or only empty space is) then the output literal block will be omitted.
The context
option
Use this to preserve objects between different exec
directives.
Setting this to true
(or True
or 1
or yes
) will keep any objects in the current exec directive "alive" for the next one.
.. exec::
:context: true
x = 5
print(x)
Some other text goes here... Let's print x again...
.. exec::
print(x)
It will work.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sphinx-exec-directive-0.2.tar.gz
.
File metadata
- Download URL: sphinx-exec-directive-0.2.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb804570572937ee3530a9da5b2bfd525b7cd0b3622d36aa237bb4297c360f30 |
|
MD5 | a4812fc414a37dd21508ecfc41f4acb5 |
|
BLAKE2b-256 | 0f9fc56b834ce187c5a364060b3e9f4ad86aa59b993f7bff8b7cc8a316407fa7 |
File details
Details for the file sphinx_exec_directive-0.2-py3-none-any.whl
.
File metadata
- Download URL: sphinx_exec_directive-0.2-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55ca69bd32ea2ac05469f53770f067487dbc594ca97e02fe604cf6892bca0611 |
|
MD5 | 3f53be1cb1f5431073951ba850f59452 |
|
BLAKE2b-256 | ebaca4d65bfec1fae23e7469edb9dead3e3ef0d3bb08e2074d663af2be0e9027 |