0

I am wanting to create a pseudo psychological program with Python3, where I need to record the keystrokes of users and when they were pressed to compare how quickly they completed each task. Any suggestions as to how I could proceed?

1 Answers1

1

Here are some options of modules for getting key events from the keyboard:

  1. Pygame (Or this)
  2. Pykeylogger
  3. Tkinter

The one you'll use depends on your individual needs.

Community
  • 1
  • 1
HarryCBurn
  • 755
  • 1
  • 8
  • 17