I have always thought that there is no possible formatting on the command line, as everything I have read says.
However, I recently discovered that pywikipedia (a python bot framework for automatically editing wikipedia-style wikis) can output text to the command line (the normal windows cmd.exe
) in different colours!
This is the python syntax:
import wikipedia
wikipedia.output(u"\03{lightpurple}"+s+"\03{default}")
You have to use wikipedia.output()
(or pywikibot.output()
) but not just print
.
The online pywikipedia repository (around line 7990) gives a short explanation:
text can contain special sequences to create colored output. These
consist of the escape character \03 and the color name in curly braces,
e. g. \03{lightpurple}. \03{default} resets the color.
I think it is probably to do with this line:
ui.output(text, toStdout = toStdout)
But I can't find any reference to a ui
class.
So how does Pywikipedia manage it?
How does Pywikibot manage colors on the command line
Indeed this is tricky.
You have found the color codes already like \03{lightblue} an \03{default}; all of them can be found here. There is also a function
color_format()
which automatically handles the escape sequence. TheUI
class has the private_print()
method which handles all color stuff and delegates the hardware sequence to theencounter_color()
method. There are implementations for Windows and Linux yet.But you are right, there is no direct reference to terminal interface UI class.
There is a function
set_interface()
inbot
module which assigns theUI
class to theui
userinterface used by Pywikibot. The'terminal'
module foruserinterfaces_terminal_interface
is set insideconfig.py
which is the Pywikibot configuarion file which can be overridden by auser_config.py
. There is also abuffer_interface
mostly used by tests. Other interfaces from older branch likecgi
,tkinter
,wxpython
aren't supported currently.