tests/curses_getkey.py
author Radek Brich <radek.brich@devl.cz>
Sat, 21 Feb 2015 12:01:57 +0100
changeset 118 8c7970520632
parent 110 cf3d49cdd6e2
permissions -rwxr-xr-x
Add mouse events, event demo.

#!/usr/bin/python3

import curses
import locale

locale.setlocale(locale.LC_ALL, "")

def doStuff(stdscr):
  message = "Press 'q' to quit.\n"
  stdscr.addstr(0, 0, message, 0)
  while True:
    c = stdscr.getkey() # pauses until a key's hit
    if c == 'q':
      break
    stdscr.addstr('%s %r\n' % (c, c))

curses.wrapper(doStuff)