0
Hello guys I’m using python and the pynput.Keyboard module to check keystrokes until then everything ok, but I would like to know when two keys were pressed at the same time: example Shift+L or any other combination.
the current code is:
from pynput.keyboard import Listener, Key
def press(key):
print(key)
with Listener(on_press=press, on_release=release, on_pressed=pressed) as listener:
listener.join()