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?
|
|
|
|
|
|
|
On Windows, a possible solution is to install Python for Windows extensions and use the PyCWnd.HookAllKeyStrokes |
||
|
|
|
|
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 A lower level option in Linux is to read directly from |
||
|
|