Skip to content

Instantly share code, notes, and snippets.

@melkael
Created January 30, 2019 09:20
Show Gist options
  • Save melkael/00a3e1796269db0b3a0292c6c39b4f5d to your computer and use it in GitHub Desktop.
Save melkael/00a3e1796269db0b3a0292c6c39b4f5d to your computer and use it in GitHub Desktop.
import pyxhook
def OnKeyPress(event):
print (event.Key)
hm = pyxhook.HookManager()
hm.KeyDown = OnKeyPress
hm.HookKeyboard()
hm.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment