I was wondering if anyone knows how to set the color of the text that shows up in the shell. I noticed the 'ls' uses a couple different colors when printing out information to the screen (on my Linux box), was wondering if I could take advantage of that in Python.
|
Use Curses or ANSI escape sequences. Before you start spouting escape sequences, you should check that stdout is a tty. You can do this with
|
|||||||||||||||
|
|
All the major color codes are given at https://www.siafoo.net/snippet/88 |
|||||||
|
|
|
|||
|
|
|
have a look at http://www.pixelbeat.org/talks/python/ls.py |
|||
|
|
|
This is so simple to do on a PC: Windows OS: Send the os a command to change the text: import os
|
|||||
|
|
I just described very popular library clint. Which has more features apart of coloring the output on terminal. By the way it support MAC, Linux and Windows terminals. Here is the example of using it: Installing (in Ubuntu)
To add color to some string
Example: Using for color output (django command style)
|
|||
|
|