Search code examples
pythoncopypastecut

Python copy, cut and paste detection


I am new to python, I am currently designing a program that runs in the background and i want it to detect if any copy, cut or paste operation is performed on a PC. Or is there a way i can detect when control c, control v or control x is pressed by a user Thanks


Solution

  • You can try a key logger to detect key stroke like this one. Other than that you can use key hooking using system calls.