“Python Pynput Harkeys” Código de respuesta

pynput.keyboard.key

# here are all the attrebutes of pynput.keyboard.Key 
[
    'alt', 'backspace', 'cmd', 'ctrl', 'delete', 'down', 'end', 'enter',
    'esc', 'f1', 'f10', 'f11', 'f12', 'f13', 'f14', 'f15', 'f16', 'f17', 'f18',
    'f19', 'f2', 'f20', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'home',
    'insert','left', 'menu', 'pause', 'right', 'shift', 'space', 'tab', 'up'
    ]
Cloudy Cat

Python Pynput Harkeys

from pynput import keyboard

def on_activate_h():
    print('<ctrl>+<alt>+h pressed')

def on_activate_i():
    print('<ctrl>+<alt>+i pressed')

with keyboard.GlobalHotKeys({
        '<ctrl>+<alt>+h': on_activate_h,
        '<ctrl>+<alt>+i': on_activate_i}) as h:
    h.join()
Friendly Fly

Respuestas similares a “Python Pynput Harkeys”

Preguntas similares a “Python Pynput Harkeys”

Más respuestas relacionadas con “Python Pynput Harkeys” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código