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

curses library

2007-08-14 Thread Ghirai
Hello list, I need to write a console application. Are there any wrappers around curses/ncurses? Or any other similar libraries? Thanks. -- Regards, Ghirai. -- http://mail.python.org/mailman/listinfo/python-list

Re: a newbi problem: can't find complete python curses library

2006-11-03 Thread Fredrik Lundh
krishnakant Mane wrote: > does python possess a complete wrapper to ncurses and its related > libraries like menu, panel and form? > if yes then where can I find documentation? if you want to have good documentation and save a lot of time and energy, I recommend building on top of Urwid rather t

Re: a newbi problem: can't find complete python curses library

2006-11-02 Thread Bill Pursell
krishnakant Mane wrote: > I will like to use the curses or ncurses library for the menus and the > input forms with add, save, delete, update and cancel buttens. > I also need to create drop down menus with a top level menu bar. > I read a few articles about python wrapping curses but can't find

Re: a newbi problem: can't find complete python curses library

2006-11-02 Thread Rainy
krishnakant Mane wrote: > hello, > I am a new member to this list. > I am Krishnakant from India, Mumbai. > I have been coding in python for quite some time and now I am at the > intermediate level of programming as far as python is concerned. > I am going to develop a accounting software that can

a newbi problem: can't find complete python curses library

2006-11-02 Thread krishnakant Mane
hello, I am a new member to this list. I am Krishnakant from India, Mumbai. I have been coding in python for quite some time and now I am at the intermediate level of programming as far as python is concerned. I am going to develop a accounting software that can work on the console and accessed thr

button design in curses library

2005-10-12 Thread Sinan Nalkaya
hi, im using curses library in my program, i need a button. but i cannot find anything about it. should i do the button via newwin function with bold characters ? any help will be appreciated thanks. -- http://mail.python.org/mailman/listinfo/python-list