PyUserInput icon indicating copy to clipboard operation
PyUserInput copied to clipboard

A module for cross-platform control of the mouse and keyboard in python that is simple to install and use.

Results 76 PyUserInput issues
Sort by recently updated
recently updated
newest added

I am attempting to use this to start up a firmware, save results to a file, then parse the file, although the way this works is the firmware always starts...

Currently this script moves the mouse to the top left corner of my screen. I am trying to write a script that continuously sends left mouse clicks at the current...

https://github.com/SavinaRoja/PyUserInput/blob/master/pymouse/x11.py ``` def button_code_to_scroll_direction(button): # scrollup=4, scrolldown=5, scrollleft=6, scrollright=7 return { 4: (1, 0), 5: (-1, 0), 6: (0, 1), 7: (0, -1), }[button] ``` is this better? only asking...

I'm getting this error, ```ImportError: cannot import name 'PyKeyboard' from 'pykeyboard' ```, but I checked and I do have pykeyboard installed. Any advice on how to fix?

#!/usr/bin/python # -*- coding: UTF-8 -*- from pykeyboard.mac import PyKeyboard from pymouse import PyMouse import time m = PyMouse() k =PyKeyboard() print(m.position()) time.sleep(1) m.click(766,1375) time.sleep(0.1) m.click(1138,39) time.sleep(0.1) k.type_string("www.google.com") k.tap_key(k.enter_key) mac.py...

This is a linux machine. This was working 3/4 years ago when I wrote it and now it's buggy. ``` from pymouse import PyMouse from pymouse import PyMouseEvent from pykeyboard...

Looks like this project is no longer under maintain for 3 years.. anyone knows?

I am following the readme and getting this error. ``` >>> from pykeyboard import PyKeyboard >>> k = PyKeyboard() >>> k.tap_key(k.left_key); Traceback (most recent call last): File "", line 1,...

hi i work on raspbian (raspberry) i installed pyuserinput and start with a little program like this: from pymouse import PyMouse m=PyMouse() i received that error ModuleNotFoundError: No module named...