I am currently using pyhook to capture keys using the hook manager's KeyDown
event. This allows me to capture all single keys pressed on the keyboard.
However, I haven't been able to find a way to capture key combinations. For example, the event where Ctrl
, Alt
and 5
are all pressed at the same time, or [
and ]
at the same time, and so on.
Is there a way to do this with pyhook that doesn't involve additional modules? For example, I've found pyhk which seems like it would do the job, but would rather have as few dependencies as possible.
(This question is a more generic version (not a duplicate) of this one, for which the accepted answer only seems to deal with virtual key modifiers like Ctrl
.)
I know that this is quite old, however I do something like this using the window key-release event:
I did not use pyhook for this.