0

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

Neo- Ex
  • 13
  • 2

2 Answers2

1

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

0

You could try to register changes to clipboard to trigger your event.

Take a look at this stack overflow question: link

Community
  • 1
  • 1
Ultcyber
  • 396
  • 1
  • 6