Skip to content

Commit

Permalink
Added FORCE_COLOR and NO_COLOR environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jhol committed Jan 29, 2020
1 parent b760506 commit 8e7550b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,16 @@ init(autoreset=False):
init(strip=None):
Pass ``True`` or ``False`` to override whether ansi codes should be
stripped from the output. The default behaviour is to strip if on Windows
or if output is redirected (not a tty).
or if output is redirected (not a tty), and if the ``FORCE_COLOR``
environment variable is not set (with any value) or ``NO_COLOR`` is
set (with any value).

init(convert=None):
Pass ``True`` or ``False`` to override whether to convert ANSI codes in the
output into win32 calls. The default behaviour is to convert if on Windows
and output is to a tty (terminal).
and output is to a tty (terminal), or the ``FORCE_COLOR`` environment
variable is set (with any value) and ``NO_COLOR`` is not set (with any
value).

init(wrap=True):
On Windows, colorama works by replacing ``sys.stdout`` and ``sys.stderr``
Expand Down
9 changes: 8 additions & 1 deletion colorama/ansitowin32.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,21 @@ def __init__(self, wrapped, convert=None, strip=None, autoreset=False):
# to support the ANSI codes.
conversion_supported = on_windows and winapi_test()

# check if this is a TTY or if the FORCE_COLOR environment variable
# has been set and NO_COLOR has not been set.
isatty = not self.stream.closed and self.stream.isatty()
force_color = 'FORCE_COLOR' in os.environ.keys()
no_color = 'NO_COLOR' in os.environ.keys()

# should we strip ANSI sequences from our output?
if strip is None:
strip = conversion_supported or (not self.stream.closed and not self.stream.isatty())
self.strip = strip

# should we should convert ANSI sequences into win32 calls?
if convert is None:
convert = conversion_supported and not self.stream.closed and self.stream.isatty()
convert = (conversion_supported and not self.stream.closed and
(isatty or force_color) and not no_color)
self.convert = convert

# dict of ansi codes to win32 functions and parameters
Expand Down

0 comments on commit 8e7550b

Please sign in to comment.