I used to use the keyboard library to track hotkeys - quickly and conveniently. But I ran into the problem that tracking doesn't work if any other key is pressed.

Advise an alternative, or tell me how to make hot key tracking if other keys are pressed on this library?

    1 answer 1

    Here is how I solved this problem xD

     keyboard.add_hotkey('R', start) keyboard.add_hotkey('R + W', start) keyboard.add_hotkey('R + A', start) keyboard.add_hotkey('R + S', start) keyboard.add_hotkey('R + D', start) keyboard.wait('Ctrl + Q')