terminal-emulator/terminal/__main__.py

14 lines
239 B
Python
Raw Normal View History

2023-12-21 08:33:05 -05:00
import keyboard
import time
def main():
while True:
2023-12-21 08:46:59 -05:00
pressed_key = keyboard.read_event()
if pressed_key.event_type == 'down':
print(pressed_key.name.upper(), end='')
2023-12-21 08:33:05 -05:00
if __name__ == '__main__':
main()