Sphinx And Argparse - Autodocumenting Command Line Scripts?
I'm building a Python package, and using Sphinx to create the docs. Aside from my package code, I also include a lot of command line Python scripts, which use argparse. I was wonde
Solution 1:
Use sphinx-argparse extension:
Solution 2:
You can use sphinxcontrib.programoutput
to include the help messages from the command line in your documentation.
This is not specific to argparse
but can be used to document any script printing help messages to the command line.
Solution 3:
You can use sphinxcontrib.autoprogram
. pip install sphinxcontrib-autoprogram
, then put
extensions += ['sphinxcontrib.autoprogram']
in your conf.py
. To document command cli.py
by importing cli
with the argparse parser
object parser
(which can be a Python expression, like a function get_parser()
), use
.. autoprogram:: cli:parser
:prog: cli.py
Post a Comment for "Sphinx And Argparse - Autodocumenting Command Line Scripts?"