#!/usr/bin/env python3 from kb import write_str from time import sleep from getch import _Getch get = _Getch(); while True: input_key = get() print(input_key) #if input_key == "?": # break if ord(input_key) == 27: break write_str(input_key)