ANSI String Formatter in Python for CLI Color and Style Formatting
This code was originally written for greplica, but I felt it deserved its own, separate library.
The main goals for this project are:
- To provide a simple way to construct a string-like object with embedded ANSI formatting without requiring the developer to know how ANSI formatting works
- Provide a way to further format the object using format string
- Allow for concatenation of the object
Feel free to open a bug report or make a merge request on github.
This project is uploaded to PyPI at https://pypi.org/project/ansi-string
To install, ensure you are connected to the internet and execute: python3 -m pip install ansi-string --upgrade
Refer to the test file for more examples on how to use the AnsiString class.
To begin, import AnsiString from the ansi_string module.
from ansi_string import en_tty_ansi, AnsiFormat, AnsiString
Windows requires ANSI formatting to be enabled before it can be used. This can either be set in the environment or by simply calling the following before printing so that ANSI is enabled locally.
en_tty_ansi()
If this also needs to be enabled for stderr, stderr may also be passed to this method.
import sys
en_tty_ansi(sys.stderr)
For Windows, this returns True if the given IO is a TTY (i.e. not piped to a file) and enabling ANSI was successful. For all other operating systems, this will return True if and only if the given IO is a TTY (i.e. isatty()); no other action is taken.
The AnsiString class contains the following __init__
method.
class AnsiString:
def __init__(self, s:str='', *setting_or_settings:Union[List[str], str, List[int], int, List[AnsiFormat], AnsiFormat]): ...
The first argument, s
, is a string to be formatted. The next 0 to N arguments are formatting setting directives that can be applied to the entire string. These arguments can be in the form of any of the following.
- An AnsiFormat enum (ex:
AnsiFormat.BOLD
) - The result of calling
AnsiFormat.rgb()
,AnsiFormat.fg_rgb()
,AnsiFormat.bg_rgb()
,AnsiFormat.ul_rgb()
, orAnsiFormat.dul_rgb()
- A string color or formatting name (i.e. any name of the AnsiFormat enum in lower or upper case)
- An
rgb(...)
function directive as a string (ex:"rgb(255, 255, 255)"
)-
rgb(...)
orfg_rgb(...)
to adjust text color -
bg_rgb(...)
to adjust background color -
ul_rgb(...)
to enable underline and set the underline color -
dul_rgb(...)
to enable double underline and set the underline color - Value given may be either a 24-bit integer or 3 x 8-bit integers, separated by commas
- Each given value within the parenthesis is treated as hexadecimal if the value starts with "0x", otherwise it is treated as a decimal value
-
A formatting setting may also be any of the following, but it's not advised to specify settings in any of these ways unless there is a specific reason to do so.
- An AnsiSetting object
- A string containing known ANSI directives (ex:
"01;31"
for BOLD and FG_RED)- The string will normally be parsed into separate settings unless the character "[" is the first character of the string (ex:
"[38;5;214"
) - Never specify the reset directive (0) because this is implicitly handled internally
- The string will normally be parsed into separate settings unless the character "[" is the first character of the string (ex:
- A single ANSI directive as an integer
Examples:
# Set foreground to light_sea_green using string directive
# Set background to chocolate using AnsiFormat directive
# Underline in gray using ul_rgb() directive
# Enable italics using explicit string directive ("3")
# Enable bold using explicit integer directive (1)
s = AnsiString("This is an ANSI string", "light_sea_green", AnsiFormat.BG_CHOCOLATE, "ul_rgb(0x808080)", "3", 1)
print(s)
- The static method
AnsiString.join()
is provided to join together 0 to manystr
andAnsiString
values into a singleAnsiString
. - The
+
operator may be used to join anAnsiString
with anotherAnsiString
orstr
into a newAnsiString
- The
+
operator may not be used if the left-hand-side value is astr
and the right-hand-side values is anAnsiString
- The
- The
+=
operator may be used to append anAnsiString
orstr
to anAnsiString
Examples:
s = AnsiString.join("This ", AnsiString("string", AnsiFormat.BOLD))
s += AnsiString(" contains ") + AnsiString("multiple", AnsiFormat.BG_BLUE)
s += AnsiString(" color ", AnsiFormat.FG_ORANGE, AnsiFormat.ITALIC) + "settings accross different ranges"
print(s)
The method AnsiString.apply_formatting()
is provided to append formatting to a previously constructed AnsiString
.
Example:
s = AnsiString("This string contains multiple color settings across different ranges")
s.apply_formatting(AnsiFormat.BOLD, 5, 11)
s.apply_formatting(AnsiFormat.BG_BLUE, 21, 29)
s.apply_formatting([AnsiFormat.FG_ORANGE, AnsiFormat.ITALIC], 21, 35)
print(s)
A format string may be used to format an AnsiString before printing. The format specification string must be in the format "[string_format][:ansi_format]"
where string_format
is the standard string format specifier and ansi_format
contains 0 or more ANSI directives separated by semicolons (;). The ANSI directives may be any of the same string values that can be passed to the AnsiString
constructor. If no string_format
is desired, then it can be set to an empty string.
Examples:
ansi_str = AnsiString("This is an ANSI string")
# Right justify with width of 100, formatted bold and red
print("{:>100:bold;red}".format(ansi_str))
# No justification settings, formatted bold and red
print("{::bold;red}".format(ansi_str))
# No justification settings, formatted bold and red
print("{::bold;rgb(255, 0, 0)}".format(ansi_str))
# No justification settings, formatted bold and red
print(f"{ansi_str::bold;red}")
# Format text, background, and underline with custom colors
fg_color = 0x8A2BE2
bg_colors = [100, 232, 170]
ul_colors = [0xFF, 0x63, 0x47]
print(f"{ansi_str::rgb({fg_color});bg_rgb({bg_colors});ul_rgb({ul_colors})}")
The method AnsiString.format_matching()
and AnsiString.unformat_matching()
are provided to apply or remove formatting of an AnsiString
based on a match specification.
Example:
s = AnsiString("Here is a strING that I will match formatting", AnsiFormat.BOLD)
# This will make the word "formatting" cyan with a pink background
s.format_matching("[A-Za-z]+ing", "cyan", AnsiFormat.BG_PINK, regex=True, match_case=True)
# This will remove BOLD from "strING" and "formatting"
s.unformat_matching("[A-Za-z]+ing", AnsiFormat.BOLD, regex=True)
print(s)
Calling the method AnsiString.clear_formatting()
will clear all formatting applied.
The method AnsiString.assign_str()
may be used to assign the internal string and adjust formatting as necessary.
The attribute AnsiString.base_str
may be used to retrieve the unformatted base string.
The methods AnsiString.ansi_settings_at()
and AnsiString.settings_at()
may be used to retrieve the settings applied over a single character.
Many other methods that are found in the str
class such as replace()
are available in AnsiString
which manipulate the string while applying formatting where necessary.
- capitalize
- casefold
- center
- count
- encode
- endswith
- expandtabs
- find
- index
- isalnum
- isalpha
- isascii
- isdecimal
- isdigit
- isidentifier
- islower
- isnumeric
- isprintable
- isspace
- istitle
- isupper
- ljust
- lower
- lstrip
- partition
- removeprefix
- removesuffix
- replace
- rfind
- rindex
- rjust
- rpartition
- rsplit
- rstrip
- split
- splitlines
- strip
- swapcase
- title
- upper
- zfill