This project implements a basic keylogger in Python using the pynput library.
It captures and records keystrokes to a local file for learning and ethical monitoring purposes.
- Records all keystrokes (including special keys like
Enter,Shift, etc.) - Saves logs to a customizable file (
keylogs.txtby default) - Simple and beginner-friendly Python structure
- Real-time key capture using
pynput.keyboard.Listener
- Python 3.6 or higher
pynputlibrary
Install dependencies via pip:
pip install pynput