A rich help formatter for argparse
Project description
rich-argparse
Format argparse help output with rich.
Installation
Install from PyPI with pip or your favorite tool.
pip install rich-argparse
Or copy the file rich_argparse.py
to your project provided you have rich
already installed.
Usage
Simply pass formatter_class
to the argument parser
import argparse
from rich_argparse import RichHelpFormatter
parser = argparse.ArgumentParser(..., formatter_class=RichHelpFormatter)
...
RichHelpFormatter
is the equivalent to argparse.HelpFormatter
. rich-argparse also defines
four subclasses of RichHelpFormatter
that are equivalent to the other argparse formatters:
argparse.RawDescriptionHelpFormatter
->RawDescriptionRichHelpFormatter
argparse.RawTextHelpFormatter
->RawTextRichHelpFormatter
argparse.ArgumentDefaultsHelpFormatter
->ArgumentDefaultsRichHelpFormatter
argparse.MetavarTypeHelpFormatter
->MetavarTypeRichHelpFormatter
For more information on what these formatters do, check the argparse documentation.
Output styles
The default styles used by rich-argparse formatters are carefully chosen to work in different light and dark themes. If the these styles don't suit your taste, read below to know how to change them.
Note Any subsequent mention of
RichHelpFormatter
in this section also applies to its subclasses.
Customize the colors
You can customize the colors in the output by modifying the styles
dictionary on the formatter
class. By default, RichHelpFormatter
defines the following styles:
{'argparse.args': 'cyan',
'argparse.groups': 'dark_orange',
'argparse.help': 'default',
'argparse.metavar': 'dark_cyan',
'argparse.syntax': 'bold',
'argparse.text': 'default'}
For example, to make the description and epilog italic, change the argparse.text
style:
RichHelpFormatter.styles["argparse.text"] = "italic"
Customize group name formatting
You can change how the names of the groups (like 'positional arguments'
and 'options'
) are
formatted by setting the RichHelpFormatter.group_name_formatter
function. By default,
RichHelpFormatter
sets the function to str.upper
but any function that takes the group name
as an input and returns a str works. For example, to apply the Title Case format do this:
RichHelpFormatter.group_name_formatter = str.title
Special text highlighting
You can highlight patterns in the help text and the description text of your parser's help output
using regular expressions. By default, RichHelpFormatter
highlights patterns of
--options-with-hyphens
using the argparse.args
style and patterns of back tick quoted text
using the argparse.syntax
style. You can control what patterns get highlighted by modifying the
RichHelpFormatter.highlights
list.
For example, to disable all highlights, you can clear this list using
RichHelpFormatter.highlights.clear()
.
You can also add custom highlight patterns and styles. The following example highlights all
occurrences of pyproject.toml
in green.
# 1dd a style called `pyproject` which applies a green style (any rich style works)
RichHelpFormatter.styles["argparse.pyproject"] = "green"
# Add the highlight regex (the regex group name must match an existing style name)
RichHelpFormatter.highlights.append(r"\b(?P<pyproject>pyproject\.toml)\b")
# Pass the formatter class to argparse
parser = argparse.ArgumentParser(..., formatter_class=RichHelpFormatter)
...
Colors in the usage
RichHelpFormatter
colors the usage generated by the formatter using the same styles to color the
arguments and their metavars. If you use a custom usage
text in the parser, this text will not be
colored.
Working with subparsers
If your code uses argparse's subparsers and you want to format the subparsers' help output with
rich-argparse, you have to explicitly pass formatter_class
to the subparsers since subparsers
do not inherit the formatter class from the parent parser by default. You have two options:
- Create a helper function to set
formatter_class
automatically:subparsers = parser.add_subparsers(...) def add_parser(*args, **kwds): kwds.setdefault("formatter_class", parser.formatter_class) return subparsers.add_parser(*args, **kwds) p1 = add_parser(...) p2 = add_parser(...)
- Set
formatter_class
on each subparser individually:subparsers = parser.add_subparsers(...) p1 = subparsers.add_parser(..., formatter_class=parser.formatter_class) p2 = subparsers.add_parser(..., formatter_class=parser.formatter_class)
Working with third party formatters
RichHelpFormatter
can be used with third party formatters that do not rely on the private
internals of argparse.HelpFormatter
. For example, django
defines a custom help formatter that is used with the built in commands as well as with extension
libraries and user defined commands. To use rich-argparse in your django project, change your
manage.py
file as follows:
diff --git a/my_project/manage.py b/my_project/manage.py
index 7fb6855..5e5d48a 100755
--- a/my_project/manage.py
+++ b/my_project/manage.py
@@ -1,22 +1,38 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'my_project.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
+
+ from django.core.management.base import BaseCommand, DjangoHelpFormatter
+ from rich_argparse import RichHelpFormatter
+
+ class DjangoRichHelpFormatter(DjangoHelpFormatter, RichHelpFormatter): # django first
+ """A rich-based help formatter for django commands."""
+
+ original_create_parser = BaseCommand.create_parser
+
+ def create_parser(*args, **kwargs):
+ parser = original_create_parser(*args, **kwargs)
+ parser.formatter_class = DjangoRichHelpFormatter # set the formatter_class
+ return parser
+
+ BaseCommand.create_parser = create_parser
+
execute_from_command_line(sys.argv)
if __name__ == '__main__':
main()
Now try out some command like: python manage.py runserver --help
. Notice how the special
ordering of the arguments applied by django is respected by the new help formatter.
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 rich_argparse-0.4.0.tar.gz
.
File metadata
- Download URL: rich_argparse-0.4.0.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd085f65a71d3496a3b42542590eb3c18a6a35024cdacd3124ed129e499d09cf |
|
MD5 | 72617f92777eb8dc167da865a82ecb2e |
|
BLAKE2b-256 | ae2fddb5b46405191a5e741ce6f52a40a3847b64d6b6ba956234195caaa45d6e |
File details
Details for the file rich_argparse-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: rich_argparse-0.4.0-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f179ec317375232bdceb2e52900dad4a02f4125b9f9e6a52f045c437fcc9e17 |
|
MD5 | 9a6afdc30dc9483f9176d911c35a5077 |
|
BLAKE2b-256 | 97983f8d5f5d80bc0b6cc3b0d428dd4daa300853f066254d03e350c1cfab6fcd |