pynput icon indicating copy to clipboard operation
pynput copied to clipboard

Sends virtual input commands

Results 174 pynput issues
Sort by recently updated
recently updated
newest added

Hi, I have this issue: Say I register a keyboard listener like this : keyboard = pynput.keyboard.Controller() def on_each_key_press(key): print(key) if(key==Key.enter):#make the pynput type a whenever Enter is pressed keyboard.type("a")...

**Description** How to get Quartz.CGEventKeyboardGetUnicodeString to tell me which **base** character I typed last? **Platform and pynput version** MacOS Catalina 10.15.7 pynput version unknown **To Reproduce** I type a **base**...

Hi, Here's some sample code I ran using version 1.7.6 ```python from pynput import keyboard def onPress(key): print("key:" + key.char) controller.type(key.char) controller = keyboard.Controller() listener = keyboard.Listener(on_press=onPress) listener.start() listener.join() ```...

This optional dict currently checks for an `'any_press' `value and runs all the functions in the provided list. Let me know if this is less cluttered for you. This seems...

**Description** Ah, the listener only runs the pressed callback if it detects a press. That's fine and good, but what if the user presses the key during program startup and...

**Description** I've noticed that if i press the number 5 on my keypad it reads in as null whereas if i press 5 on the numbers above the letters on...

**Description** Placement of the cursor is not aligned with where a new character gets inserted. This seems a different issue than #440 . **Platform and pynput version** MacOS Catalina 10.15.7...

**Description** I don't have windows, so i'm testing on wine, on 'wine cmd' and on wenv. I have a very simple script. In the script the prints or the suppression...

**Description** What is the `darwin_intercept` (= Mac) equivalent of the command key? I want to suppress it. (Or any control keys, as a matter of principle.) **Platform and pynput version**...

I'm getting a crash in very specific circumstances. I've reduced it to the following code: ```python import pynput import time import threading import tkinter as tk import string class Window:...