[Edu-sig] Re: a simple UI for python learners

2021-09-22 Thread Wes Turner
On Wed, Sep 22, 2021, 12:11 Wes Turner wrote: > > Presumably some of these apps built with urwid have *automated tests* of > UI functionality; in order to accelerate development progress we write the > program to test the program: the other half - or better - of the actual > program is the

[Edu-sig] Re: a simple UI for python learners

2021-09-22 Thread Wes Turner
Urwid solves a similar problem: > Similar projects > npyscreen > curtsies > Python Prompt Toolkit Src: https://github.com/urwid/urwid Docs: http://urwid.org/tutorial/ There are tests for urwid: https://github.com/urwid/urwid/tree/master/urwid/tests Presumably some of these apps built with

[Edu-sig] Re: a simple UI for python learners

2021-09-22 Thread kirby urner
I did pip install this and get it working without problems. As someone who designs curricula, I'm glad to know about it. Using curses module, not Tk. Kirby On Wed, Sep 15, 2021 at 3:58 AM Kent Tong wrote: > Hi, > I have written a small Python package (https://pypi.org/project/lineui/) > to