Python Crash With Pyhook.hookmanager() On Keydown [ctrl]+[c]
I am creating a python script to record the keys that I press across my system (keylogger) and call home with information on what my typing habits are. I am new to python and I am
Solution 1:
In python, Ctrl+C throws a KeyboardInterrupt exception.
http://docs.python.org/2/library/exceptions.html#exceptions.KeyboardInterrupt
Post a Comment for "Python Crash With Pyhook.hookmanager() On Keydown [ctrl]+[c]"