rich-argparse
Format argparse and optparse help using rich.
rich-argparse improves the look and readability of argparse's help while requiring minimal
changes to the code.
Table of contents
Installation
Usage
Output styles
Colors
Group names
Highlighting patterns
"usage"
--version
Subparsers
Third party formatters (ft. django)
Optparse (experimental)
Legacy Windows
Installation
Install from PyPI with pip or your favorite tool.
pip install rich-argparse
Usage
Simply pass formatter_class to the argument parser
import argparse
from rich_argparse import RichHelpFormatter
parser = argparse.ArgumentParser(..., formatter_class=RichHelpFormatter)
...
rich-argparse defines equivalents to argparse's built-in formatters:
rich_argparse formatter
equivalent in argparse
RichHelpFormatter
HelpFormatter
RawDescriptionRichHelpFormatter
RawDescriptionHelpFormatter
RawTextRichHelpFormatter
RawTextHelpFormatter
ArgumentDefaultsRichHelpFormatter
ArgumentDefaultsHelpFormatter
|