Re: [BangPypers] colored o/p

2011-12-22 Thread Senthil Kumaran
Nitin Kumar nitin.n...@gmail.com writes: I am trying to format o/p (colored bold string) on console. say IDLE or python command prompt using python modules. urwid is a library which can handle those for you. Give a try! It is very close to what ncurses can be used for. HTH, Senthil

Re: [BangPypers] colored o/p

2011-12-22 Thread kracekumar ramaraju
Hi I have achieved same using colorma. -- * Thanks Regards Talk is cheap, show me the code -- Linus Torvalds kracekumar www.kracekumar.com * ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

[BangPypers] colored o/p

2011-12-20 Thread Nitin Kumar
Hi All, I am trying to format o/p (colored bold string) on console. say IDLE or python command prompt using python modules. Please help me with an example. -- Nitin K ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] colored o/p

2011-12-20 Thread Noufal Ibrahim
Nitin Kumar nitin.n...@gmail.com writes: Hi All, I am trying to format o/p (colored bold string) on console. say IDLE or python command prompt using python modules. You *can* use curses (or the newly released blessings[1]) library. There are also a few recipes on activestate to do this. I