Print in terminal with colors using python ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:52:27Z http://stackoverflow.com/feeds/question/287871 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python 17 Print in terminal with colors using python ? aboSamoor 2008-11-13T18:58:10Z 2009-08-13T12:05:41Z <p>I want to print in the terminal with colors ? how can I do that in python ?</p> <p>Another questions what is the best character that when it is printed it look like a box [brick] ?</p> <p>I want to print colored blocks, it is part of game :)</p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/287896#287896 4 Answer by uberjumper for Print in terminal with colors using python ? uberjumper 2008-11-13T19:06:23Z 2008-11-13T19:06:23Z <p>For windows you cannot print to console with colors unless your using the win32api.</p> <p>For linux its as simple as using print, with the escape sequences outlined here:</p> <p><a href="http://www.linuxhowtos.org/Tips%20and%20Tricks/ansi_escape_sequences.htm" rel="nofollow">Colors</a></p> <p>For the characther to print like a box, it really depends on what font you are using for the console window. The pound symbol works well, but it depends on the font:</p> <pre><code># </code></pre> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/287919#287919 5 Answer by daharon for Print in terminal with colors using python ? daharon 2008-11-13T19:13:59Z 2008-11-13T19:13:59Z <p>You can use the Python implementation of the curses library: <a href="http://docs.python.org/library/curses.html" rel="nofollow">http://docs.python.org/library/curses.html</a></p> <p>Also, run this and you'll find your box:</p> <pre><code>for i in range(255): print i, chr(i) </code></pre> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/287934#287934 4 Answer by Bryan Oakley for Print in terminal with colors using python ? Bryan Oakley 2008-11-13T19:22:54Z 2008-11-13T19:22:54Z <p>You want to learn about ANSI escape sequences. Here's a brief example:</p> <pre><code>CSI="\x1B[" reset=CSI+"m" print CSI+"31;40m" + "Colored Text" + CSI + "0m" </code></pre> <p>For more info see <a href="http://en.wikipedia.org/wiki/ANSI_escape_code" rel="nofollow">http://en.wikipedia.org/wiki/ANSI_escape_code</a></p> <p>For a block character, try a unicode character like \u2588:</p> <pre><code>print u"\u2588" </code></pre> <p>Putting it all together:</p> <pre><code>print CSI+"31;40m" + u"\u2588" + CSI + "0m" </code></pre> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/287944#287944 20 Answer by joeld42 for Print in terminal with colors using python ? joeld42 2008-11-13T19:25:07Z 2008-11-13T19:25:07Z <p>This somewhat depends on what platform you are on. The most common way to do this is by printing ANSI escape sequences. For a simple example, here's some python code from the <a href="https://svn.blender.org/svnroot/bf-blender/trunk/blender/tools/bcolors.py" rel="nofollow">blender build scripts</a>:</p> <pre><code>class bcolors: HEADER = '\033[95m' OKBLUE = '\033[94m' OKGREEN = '\033[92m' WARNING = '\033[93m' FAIL = '\033[91m' ENDC = '\033[0m' def disable(self): self.HEADER = '' self.OKBLUE = '' self.OKGREEN = '' self.WARNING = '' self.FAIL = '' self.ENDC = '' </code></pre> <p>To use code like this, you can do something like </p> <pre><code>print bcolors.WARNING + "Warning: No active frommets remain. Continue?" + bcolors.ENDC </code></pre> <p>This will work on unix, linux including macOS, and window (provided you <a href="http://support.microsoft.com/kb/101875" rel="nofollow">enable ansi.sys</a>). There are ansi codes for setting the color, moving the cursor, and more.</p> <p>If you are going to get complicated with this (and it sounds like you are if you are writing a game), you should look into the "curses" module, which handles a lot of the complicated parts of this for you. The <a href="http://www.amk.ca/python/howto/curses/" rel="nofollow" title="Python Curses howto">Python Curses HowTO</a> is a good introduction.</p> <p>If you are not using extended ASCII (i.e. not on a PC), you are stuck with the ascii characters below 127, and '#' or '@' is probably your best bet for a block. If you can ensure your terminal is using a IBM <a href="http://telecom.tbi.net/asc-ibm.html" rel="nofollow">extended ascii character set</a>, you have many more options. Characters 176, 177, 178 and 219 are the "block characters".</p> <p>Some modern text-based programs, such as "Dwarf Fortress", emulate text mode in a graphical mode, and use images of the classic PC font. You can find some of these bitmaps that you can use on the <a href="http://dwarf.lendemaindeveille.com/index.php/Tilesets" rel="nofollow">Dwarf Fortress Wiki</a> see (<a href="http://dwarf.lendemaindeveille.com/index.php/List_of_user_character_sets" rel="nofollow">user-made tilesets</a>).</p> <p>The <a href="http://en.wikipedia.org/wiki/TMDC" rel="nofollow" title="text mode demo contest">Text Mode Demo Contest</a> has more resources for doing graphics in text mode.</p> <p>Hmm.. I think got a little carried away on this answer. I am in the midst of planning an epic text-based adventure game, though. Good luck with your colored text!</p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/287987#287987 3 Answer by suhib-alsisan for Print in terminal with colors using python ? suhib-alsisan 2008-11-13T19:38:57Z 2008-11-13T19:38:57Z <p>If you are programming a game you may would like to change the background color and use spaces only :)</p> <p>you may try something like </p> <p>print " "+ "\033[01;41m" + " " +"\033[01;46m" + " " + "\033[01;42m"</p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/288030#288030 1 Answer by ΤΖΩΤΖΙΟΥ for Print in terminal with colors using python ? ΤΖΩΤΖΙΟΥ 2008-11-13T19:53:03Z 2008-11-13T19:53:03Z <h2>For the characters</h2> <p>Your terminal most probably uses Unicode (typically UTF-8 encoded) characters, so it's only a matter of the appropriate font selection to see your favorite character. Unicode char U+2588, "Full block" is the one I would suggest you use.</p> <p>Try the following:</p> <pre><code>import unicodedata fp= open("character_list", "w") for index in xrange(65536): char= unichr(index) try: its_name= unicodedata.name(char) except ValueError: its_name= "N/A" fp.write("%05d %04x %s %s\n" % (index, index, char.encode("UTF-8"), its_name) fp.close() </code></pre> <p>Examine the file later with your favourite viewer.</p> <h2>For the colors</h2> <p><a href="http://www.python.org/doc/2.5.2/lib/module-curses.html" rel="nofollow">curses</a> is the module you want to use. Check this <a href="http://www.amk.ca/python/howto/curses/" rel="nofollow">tutorial</a>.</p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/288556#288556 3 Answer by orip for Print in terminal with colors using python ? orip 2008-11-13T22:22:30Z 2008-11-13T22:22:30Z <p>On Windows you can use module 'win32console' (available in some Python distributions) or module 'ctypes' (Python 2.5 and up) to access the Win32 API.</p> <p>To see complete code that supports both ways, see the <a href="http://code.google.com/p/testoob/source/browse/trunk/src/testoob/reporting/colored.py" rel="nofollow">color console reporting code</a> from <a href="http://www.testoob.org" rel="nofollow">Testoob</a>.</p> <p>ctypes example:</p> <pre><code>import ctypes # Constants from the Windows API STD_OUTPUT_HANDLE = -11 FOREGROUND_RED = 0x0004 # text color contains red. def get_csbi_attributes(handle): # Based on IPython's winconsole.py, written by Alexander Belchenko import struct csbi = ctypes.create_string_buffer(22) res = ctypes.windll.kernel32.GetConsoleScreenBufferInfo(handle, csbi) assert res (bufx, bufy, curx, cury, wattr, left, top, right, bottom, maxx, maxy) = struct.unpack("hhhhHhhhhhh", csbi.raw) return wattr handle = ctypes.windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE) reset = get_csbi_attributes(handle) ctypes.windll.kernel32.SetConsoleTextAttribute(handle, FOREGROUND_RED) print "Cherry on top" ctypes.windll.kernel32.SetConsoleTextAttribute(handle, reset) </code></pre> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/291431#291431 0 Answer by Tofystedeth for Print in terminal with colors using python ? Tofystedeth 2008-11-14T21:07:53Z 2008-11-14T21:07:53Z <p>There's also a module called WConIO that does much the same thing. Unfortunately the author will probably not be able to build a Python 2.6 version any time soon.</p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/293633#293633 3 Answer by Samat Jain for Print in terminal with colors using python ? Samat Jain 2008-11-16T07:31:39Z 2008-11-16T07:31:39Z <p>I'm surprised no one has mentioned the <a href="http://pypi.python.org/pypi/termcolor" rel="nofollow">Python termcolor module</a>. Usage is pretty simple:</p> <pre><code>from termcolor import colored print colored('hello', 'red'), colored('world', 'green') </code></pre> <p>It may not be sophisticated enough, however, for game programming and the "colored blocks" that you want to do...</p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/810607#810607 -4 Answer by dugres for Print in terminal with colors using python ? dugres 2009-05-01T08:12:33Z 2009-05-01T08:12:33Z <p>How about <a href="http://code.activestate.com/recipes/574451/" rel="nofollow">this</a></p> http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/1073959#1073959 1 Answer by nosklo for Print in terminal with colors using python ? nosklo 2009-07-02T11:59:17Z 2009-08-13T12:05:41Z <p>Here's a curses example:</p> <pre><code>import curses def main(stdscr): stdscr.clear() if curses.has_colors(): for i in xrange(1, curses.COLORS): curses.init_pair(i, i, curses.COLOR_BLACK) stdscr.addstr("COLOR %d! " % i, curses.color_pair(i)) stdscr.addstr("BOLD! ", curses.color_pair(i) | curses.A_BOLD) stdscr.addstr("STANDOUT! ", curses.color_pair(i) | curses.A_STANDOUT) stdscr.addstr("UNDERLINE! ", curses.color_pair(i) | curses.A_UNDERLINE) stdscr.addstr("BLINK! ", curses.color_pair(i) | curses.A_BLINK) stdscr.addstr("DIM! ", curses.color_pair(i) | curses.A_DIM) stdscr.addstr("REVERSE! ", curses.color_pair(i) | curses.A_REVERSE) stdscr.refresh() stdscr.getch() if __name__ == '__main__': print "init..." curses.wrapper(main) </code></pre>