Re: curses library

2007-08-25 Thread Ben Finney
Ghirai <[EMAIL PROTECTED]> writes: > Are there any wrappers around curses/ncurses? Python has its own 'curses' module in the standard library of course. http://docs.python.org/lib/module-curses> That's if you want to work directly with the curses functionality, which is rather low-level. >

Re: curses library

2007-08-25 Thread Laurent Pointal
Ghirai wrote: > Hello list, > > I need to write a console application. > > Are there any wrappers around curses/ncurses? > Or any other similar libraries? > > Thanks. I have some links here: http://www.limsi.fr/Individu/pointal/python.html#liens-graph-curses A+ Laurent. -- http://mail.pyth

Re: curses library

2007-08-25 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, Ghirai wrote: > I need to write a console application. Why not just use VT100 escape sequences directly? Terminal emulators don't support anything else. -- http://mail.python.org/mailman/listinfo/python-list

Re: curses library

2007-08-15 Thread Michael Bentley
On Aug 14, 2007, at 11:10 AM, Ghirai wrote: > I need to write a console application. > > Are there any wrappers around curses/ncurses? > Or any other similar libraries? It looks like Curses Tk still exists: http://www.schwartzcomputer.com/ tcl-tk/tcl-tk.html It probably requires a recompile of

Re: curses library

2007-08-14 Thread Jean-Paul Calderone
On Tue, 14 Aug 2007 21:45:51 +0300, Ghirai <[EMAIL PROTECTED]> wrote: >On Tue, 14 Aug 2007 18:27:16 GMT >Neil Cerutti <[EMAIL PROTECTED]> wrote: > >> On 2007-08-14, Ghirai <[EMAIL PROTECTED]> wrote: >> > I need to write a console application. >> > >> > Are there any wrappers around curses/ncurses?

Re: curses library

2007-08-14 Thread Shawn Milochik
You should try Google -- you'll get results faster: http://www.amk.ca/python/howto/curses/ http://docs.python.org/lib/module-curses.html On 8/14/07, Ghirai <[EMAIL PROTECTED]> wrote: > Hello list, > > I need to write a console application. > > Are there any wrappers around curses/ncurses? >

Re: curses library

2007-08-14 Thread Ghirai
On Tue, 14 Aug 2007 18:27:16 GMT Neil Cerutti <[EMAIL PROTECTED]> wrote: > On 2007-08-14, Ghirai <[EMAIL PROTECTED]> wrote: > > I need to write a console application. > > > > Are there any wrappers around curses/ncurses? > > Or any other similar libraries? > > The answer depends on your chosen pl

Re: curses library

2007-08-14 Thread Neil Cerutti
On 2007-08-14, Ghirai <[EMAIL PROTECTED]> wrote: > I need to write a console application. > > Are there any wrappers around curses/ncurses? > Or any other similar libraries? The answer depends on your chosen platform. Python hasn't got a cross-platform console library as one of its included batter