views:

1543

answers:

3

I need to know which key is being pressed right now. I'm not looking to capture some specific keys to trigger an event or anything like that,

I want to know which keys are pressed now and display a list of them.

I also need to capture special keys like F1 ... F12, shift, alt, home, windows, etc. Basically all keys on the keyboard.

How do I do this in python? How do I capture keyboard events?

Related

EDIT

Just so you know I'm not trying to make a keylogger. I'm trying to make a diagnoses tool (I split water on my laptop and the keyboard is starting to get crazy sometime!!)

+2  A: 

PyKeylogger mentioned in the related question might do the job.

J.F. Sebastian
Thanks for the link to the related question. That keylogger is an overkill for me though :)
hasen j
+2  A: 

I found the answer using a link in a related question to pyHook:

pyHook tutorial: capturing keypress events

hasen j
PyHook works only on Windows.
J.F. Sebastian
Yeah well, I'm working on windows :)
hasen j
+1  A: 

The easiest way to do something like this, if you're not too fussy, is to bring in a GUI toolkit such as pygame or wxPython. For example, run the wxPython Demo, then go to the demo for KeyEvents.

John Fouhy