Re: Text based screens without ncurses

2008-11-17 Thread Jorgen Grahn
On Thu, 13 Nov 2008 12:19:53 -0500, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: > On Thu, 13 Nov 2008 20:16:58 +0200, Mirat Can Bayrak <[EMAIL PROTECTED]> > wrote: >>On Thu, 13 Nov 2008 12:14:10 -0500 >>Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: >> >>> Why don't you want to use one of thes

Re: Text based screens without ncurses

2008-11-14 Thread Shawn Milochik
On Thu, Nov 13, 2008 at 2:10 PM, Grant Edwards <[EMAIL PROTECTED]> wrote: > On 2008-11-13, Mirat Can Bayrak <[EMAIL PROTECTED]> wrote: > >> Hi, i'll try to write a editor in python, i want it run under >> terminal (no qt or gtk) but i dont want to use urwid or curses >> modules. >> >> Can i write m

Re: Text based screens without ncurses

2008-11-13 Thread Grant Edwards
On 2008-11-13, Mirat Can Bayrak <[EMAIL PROTECTED]> wrote: > Hi, i'll try to write a editor in python, i want it run under > terminal (no qt or gtk) but i dont want to use urwid or curses > modules. > > Can i write my curses like module in python? Sure. If you don't want to use the ncurses libra

Re: Text based screens without ncurses

2008-11-13 Thread Jean-Paul Calderone
On Thu, 13 Nov 2008 20:16:58 +0200, Mirat Can Bayrak <[EMAIL PROTECTED]> wrote: On Thu, 13 Nov 2008 12:14:10 -0500 Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: Why don't you want to use one of these libraries for doing the thing that you want to do? mmm lets say i want to improve myself wit

Re: Text based screens without ncurses

2008-11-13 Thread Mirat Can Bayrak
On Thu, 13 Nov 2008 12:14:10 -0500 Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: > Why don't you want to use one of these libraries for doing the thing that > you want to do? mmm lets say i want to improve myself with building a curses like module. :) -- Mirat Can Bayrak <[EMAIL PROTECTED]> --

Re: Text based screens without ncurses

2008-11-13 Thread Jean-Paul Calderone
On Thu, 13 Nov 2008 20:11:30 +0200, Mirat Can Bayrak <[EMAIL PROTECTED]> wrote: Hi, i'll try to write a editor in python, i want it run under terminal (no qt or gtk) but i dont want to use urwid or curses modules. Why don't you want to use one of these libraries for doing the thing that you wa

Text based screens without ncurses

2008-11-13 Thread Mirat Can Bayrak
Hi, i'll try to write a editor in python, i want it run under terminal (no qt or gtk) but i dont want to use urwid or curses modules. Can i write my curses like module in python? i googled to find metods that curses uses to write characters,colors etc. on screen but it did not make sense to me.