Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | D | 22-Nov-2023 | 852 | 26 | 18 | |
life.py | D | 22-Nov-2023 | 7.2 KiB | 217 | 162 | |
ncurses.py | D | 22-Nov-2023 | 6.5 KiB | 274 | 215 | |
rain.py | D | 22-Nov-2023 | 2.3 KiB | 95 | 66 | |
repeat.py | D | 22-Nov-2023 | 1.5 KiB | 59 | 43 | |
tclock.py | D | 22-Nov-2023 | 3.3 KiB | 148 | 102 | |
xmas.py | D | 22-Nov-2023 | 24.8 KiB | 907 | 681 |
README
1This is a collection of demos and tests for the curses module. 2 3ncurses demos 4============= 5 6These demos are converted from the C versions in the ncurses 7distribution, and were contributed by Thomas Gellekum <tg@FreeBSD.org> 8I didn't strive for a `pythonic' style, but bluntly copied the 9originals. I won't attempt to `beautify' the program anytime soon, but 10I wouldn't mind someone else making an effort in that direction, of 11course. 12 13ncurses.py -- currently only a panels demo 14rain.py -- raindrops keep falling on my desktop 15tclock.py -- ASCII clock, by Howard Jones 16xmas.py -- I'm dreaming of an ASCII christmas 17 18Please submit bugfixes and new contributions to the Python bug tracker. 19 20 21Other demos 22=========== 23 24life.py -- Simple game of Life 25repeat.py -- Repeatedly execute a shell command (like watch(1)) 26