nboard/getkey.py

14 lines
149 B
Python
Executable file

#!/usr/bin/env python3
import curses
def main(stdscr):
while True:
k = stdscr.getkey()
print(repr(k))
curses.wrapper(main)