Sphinx "runcmd" extension
Project description
SphinxContrib RunCmd
Sphinx RunCmd aims to allow you to place the output of arbitrary commands in your rst files, while also giving you greater flexibility in how the output is formatted.
Installation
sphinxcontrib-runcmd is available on PyPI. To install:
$ pip install sphinxcontrib-runcmd
Add runcmd to your Project
First you'll want to add sphinxcontrib.runcmd
to your conf.py
file in your docs folder:
extensions = ["sphinxcontrib.runcmd"]
From there, all you need to do is use runcmd
as a directive in your documentation files.
.. runcmd:: python script.py -h
:syntax: bash
:prompt:
Options
This directive is basically a sub-directive of code-block
, so it has all of code blocks directives such as:
- linenos
- dedent
- lineno-start
- emphasize-lines
- caption
- class
- name
This directive builds upon that and adds the following:
- syntax: str
- Since we're using the arguments section for a command we can't actually pass the syntax we want to the
code-block
in the arguments. Therefore you can set it in the options which will then get passed into thecode-block
to colorize your commands output. - replace: str
- Takes in a comma separated list of regex
pattern/replace,pattern/replace
and applies it to the output in that order. - prompt: bool
- Display the command prompt in the output
- dedent-output: int
- Will dedent the output only by the int value you specify. Will not dedent the prompt if specified. Be careful, because the
code-block
dedent will be applied on top of this dedent if both are set in the options.
Replace Option
The replace
option uses the CSV
package to parse the string, thus you can wrap your replacements in double quotes if you want to use commas and whatnot.
You also need to double escape any forward slashes, but you can single escape quotes.
.. runcmd:: python test.py -h
:replace: "this\\/is\\/a\\/path/now\\/its\\/another\\/path","\"/'"
The first replacement will replace this/is/a/path
with now/its/another/path
.
The second replacement will replace "
with '
.
License
sphinxcontrib-runcmd is provided under an MIT License.
Project details
Release history Release notifications | RSS feed
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 sphinxcontrib-runcmd-0.1.3.tar.gz
.
File metadata
- Download URL: sphinxcontrib-runcmd-0.1.3.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 479f008fd15727d15415464788ef394f0c1b2e8c9b0e14b524463e93ffde965b |
|
MD5 | b6a48e77f25dacf83d84d71724c06778 |
|
BLAKE2b-256 | eda9f20c6c93b6a33d35f777e8a7b508f7c3d0ccfaf1cfc76378b7298a74ea26 |
File details
Details for the file sphinxcontrib_runcmd-0.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: sphinxcontrib_runcmd-0.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1be6c42474c9d1ad1dbd679d26583351e1b226c6a29a16c334707768b436e2f6 |
|
MD5 | f308c7d81ac322126ee377456df9478c |
|
BLAKE2b-256 | d51941962469f2a528ada17d2d26fc0a3bbc4ef26aacc7776ca55247e82a81dc |