I\'ve been looking around but I can\'t find an example of how to use pyhook to respond to key combinations such as Ctrl + C whereas it
Actually Ctrl+C have it's own Ascii code (which is 3). Something like this works for me:
import pyHook,pythoncom def OnKeyboardEvent(event): if event.Ascii == 3: print "Hello, you've just pressed ctrl+c!"