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?
            Asked
            
        
        
            Active
            
        
            Viewed 87 times
        
    1 Answers
1
            
            
        Here are some options of modules for getting key events from the keyboard:
- Pygame (Or this)
- Pykeylogger
- Tkinter
The one you'll use depends on your individual needs.
 
    
    
        Community
        
- 1
- 1
 
    
    
        HarryCBurn
        
- 755
- 1
- 8
- 17
- 
                    Thanks, I'll have a look at them. – Alan Rowans Oct 28 '14 at 23:25
