Python module to enable ANSI colors for stdout on Windows?

12,906

Solution 1

There are two python modules that are able to do this colorama and tendo.ansiterm module, which was originally written for waf.

By initial tests indicate that colorama is more mature, even if it requires two lines of code instead of one.

import sys
try:
   import colorama
   colorama.init()
except:
   try:
       import tendo.ansiterm
   except:
       pass

sys.stdout.write"\033[33mYellow Submarine"
sys.stderr.write"\033[31mred, red , wine!"

Now, both will work normally but if you try to redirect only one of the stderr or stdout, ansiterm will output ANSI codes to screen and redirected output.

I'm not sure but I suspect that the correct behavior is to strip ANSI codes when the output si not a tty, you don't want to see ANSI escapes in log files.

Solution 2

Your best bet is probably to use the colorama module.

In fact, I believe that the Windows console does not support ANSI colors natively. colorama solves this difficulty by intercepting ANSI sequences and performing the appropriate Windows color change calls. This way, your code can be quite portable, as it can print colors in the same way both on Windows and in ANSI-compliant terminals.

Solution 3

You can also use colorful which use colorama for portability.

Share:
12,906

Related videos on Youtube

sorin
Author by

sorin

Another geek still trying to decipher the meaning of “42”. It seems that amount his main interest are: online communities of practice and the way they evolve in time product design, simplicity in design and accessibility productivity and the way the IT solutions are impacting it

Updated on June 04, 2022

Comments

  • sorin
    sorin almost 2 years

    I am looking for a Python module that would add ANSI support under Windows.

    This means that after importing the module, if you output ANSI escaped strings, they will appear accordingly.

  • Bruno Feroleto
    Bruno Feroleto over 12 years
    ANSI escapes in log files are fine, I believe; for instance, the less Unix pager correctly displays text with ANSI color sequences.