How do I print out in the standard output coloured lines

2007-02-02 Thread cniharral
Hi, I'm interested in printing out coloured lines of my application and I don't know what to use. Can anybody give me an idea?? Regards. Carlos Niharra López -- http://mail.python.org/mailman/listinfo/python-list

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread rzed
[EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: Hi, I'm interested in printing out coloured lines of my application and I don't know what to use. Can anybody give me an idea?? You could speed up the process if you explain what your application is and what you mean by colored

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread cniharral
On Feb 2, 1:16 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: Hi, I'm interested in printing out coloured lines of my application and I don't know what to use. Can anybody give me an idea?? You could speed up the process if you explain what

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread rzed
[EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: On Feb 2, 1:16 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: Hi, I'm interested in printing out coloured lines of my application and I don't know what to use. Can anybody give me an idea??

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread cniharral
On Feb 2, 1:38 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: On Feb 2, 1:16 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: Hi, I'm interested in printing out coloured lines of my application and

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread Bart Van Loon
It was 2 Feb 2007 04:27:06 -0800, when [EMAIL PROTECTED] wrote: print Hello World!! I want it in red colour. That's all. Use colour escape codes: print \033[1;31mHello World\033[0m That's all. :-) -- groetjes, BBBart Golly, I'd hate to have a kid like me!

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread cniharral
On Feb 2, 2:08 pm, Bart Van Loon [EMAIL PROTECTED] wrote: It was 2 Feb 2007 04:27:06 -0800, when [EMAIL PROTECTED] wrote: print Hello World!! I want it in red colour. That's all. Use colour escape codes: print \033[1;31mHello World\033[0m That's all. :-) -- groetjes, BBBart

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread Neil Cerutti
On 2007-02-02, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: On Feb 2, 1:16 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: Hi, I'm interested in printing out coloured lines of my application and I don't

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread Miki
Hello Carlos, I'm interested in printing out coloured lines of my application and I don't know what to use. Can anybody give me an idea?? I use the following script: #!/usr/bin/env python '''Print message using ANSI terminal codes''' __author__ = Miki Tebeka [EMAIL PROTECTED] # $Id:

Re: How do I print out in the standard output coloured lines

2007-02-02 Thread Geoffrey Clements
[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Feb 2, 1:38 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: On Feb 2, 1:16 pm, rzed [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED]: Hi, I'm interested