vote up 0 vote down star

I'd like to create a map of the number of presses for every key for a project I'm working on.

I'd like to do this with a Python module. Is it possible to do this in any way?

flag

62% accept rate

2 Answers

vote up 1 vote down check

On Windows, a possible solution is to install Python for Windows extensions and use the PyCWnd.HookAllKeyStrokes

link|flag
vote up 1 vote down

As Nick D points out, on Windows, the PyHook library would work.

On Linux, the Python X Library gives you access to key-presses on the X-server.

A good example of the use of both libraries is pykeylogger. It's open source; see pyxhook.py for example for the relevant X library calls.

A lower level option in Linux is to read directly from /dev/input/*. The evdev module may help you here; I don't know much about it this though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.