Re: VT100 in Python

2009-09-17 Thread Nobody
On Mon, 14 Sep 2009 04:29:57 -0500, Nick Craig-Wood wrote: > At a basic level parsing VT100 is quite easy, so you can get rid of > the VT100 control. They start with ESC, have other characters in the > middle then end with a letter (upper or lowercase), so a regexp will > make short work of them.

Re: VT100 in Python

2009-09-15 Thread Grant Edwards
On 2009-09-14, Wolfgang Rohdewald wrote: > that should be easy using regular expressions And they say irony doesn't work well on Usenet! -- Grant Edwards grante Yow! My nose feels like a at bad Ronald Reagan movie ..

Re: VT100 in Python

2009-09-14 Thread Jerry Hill
On Mon, Sep 14, 2009 at 10:58 PM, bouncy...@gmail.com wrote: > From: >> http://twistedmatrix.com/documents/current/api/twisted.conch.insults.insults.ITerminalTransport.html >> http://twistedmatrix.com/documents/current/api/twisted.conch.insults.insults.ITerminalProtocol.html >> >> http://twisted

Re: VT100 in Python

2009-09-14 Thread bouncy...@gmail.com
I hate to ask but what kind of "device".and what`s with all the `insult` strings? - gimmick? --Original Message-- From: To: Date: Mon, 14 Sep 2009 01:43:11 PM + Subject: Re: VT100 in Python On 09:29 am, n...@craig-wood.com wrote: >Wolfgang Rohdewald wrote: >

Re: VT100 in Python

2009-09-14 Thread exarkun
On 09:29 am, n...@craig-wood.com wrote: Wolfgang Rohdewald wrote: On Sunday 13 September 2009, Nadav Chernin wrote: > I'm writing program that read data from some instrument trough > RS232. This instrument send data in VT100 format. I need only to > extract the text without all other charact

Re: VT100 in Python

2009-09-14 Thread Nick Craig-Wood
Wolfgang Rohdewald wrote: > On Sunday 13 September 2009, Nadav Chernin wrote: > > I'm writing program that read data from some instrument trough > > RS232. This instrument send data in VT100 format. I need only to > > extract the text without all other characters that describe how to > > repre

Re: VT100 in Python

2009-09-14 Thread Wolfgang Rohdewald
On Sunday 13 September 2009, Nadav Chernin wrote: > I'm writing program that read data from some instrument trough > RS232. This instrument send data in VT100 format. I need only to > extract the text without all other characters that describe how to > represent data on the screen. Is there some

VT100 in Python

2009-09-14 Thread Nadav Chernin
Hi, everybody I'm writing program that read data from some instrument trough RS232. This instrument send data in VT100 format. I need only to extract the text without all other characters that describe how to represent data on the screen. Is there some library in python for converting VT100 str