Pyautogui: Keyboard and Mouse Control
Pyautogui: Keyboard and Mouse Control
Code Issues 385 Pull requests 41 Actions Projects Wiki Security Insights
pyautogui Merge pull request #592 from HarishChandran3304/master last year Readme
tests Implement the hold() function as a context manager. 2 years ago BSD-3-Clause license
7.5k stars
.gitignore Adding the pipfile to the repo, but not adding the lock file since Py… last year
177 watching
AUTHORS.txt Adding folks to the authors file. last year
988 forks
CHANGES.txt Bumping version to 0.9.53. Changing dependency list in setup.py so th… last year
Pipfile Bumping version to 0.9.53. Changing dependency list in setup.py so th… last year
README.md Rolling back the instructions for mac: pyobjc is used now instead of … last year Packages
setup.py Update requirements for pytweening to version 1.0.4 to avoid an insta… last year No packages published
tox.ini Adding tox. Updating unit tests. Adding move(), drag(), and write() n… 4 years ago
Used by 18.7k
README.md
+ 18,648
PyAutoGUI
Contributors 48
PyAutoGUI is a cross-platform GUI automation Python module for human beings. Used to programmatically control
the mouse & keyboard.
Dependencies
PyAutoGUI supports Python 2 and 3. If you are installing PyAutoGUI from PyPI using pip:
macOS needs the pyobjc-core and pyobjc module installed (in that order).
Linux needs the python3-xlib (or python-xlib for Python 2) module installed.
Pillow needs to be installed, and on Linux you may need to install additional libraries to make sure Pillow's PNG/JPEG
works correctly. See:
https://stackoverflow.com/questions/7648200/pip-install-pil-e-tickets-1-no-jpeg-png-support
http://ubuntuforums.org/showthread.php?t=1751455
If you want to do development and contribute to PyAutoGUI, you will need to install these modules from PyPI:
pyscreeze
pymsgbox
pytweening
Example Usage
Currently, PyAutoGUI only works on the primary monitor. PyAutoGUI isn't reliable for the screen of a second monitor
(the mouse functions may or may not work on multi-monitor setups depending on your operating system and
version).
All keyboard presses done by PyAutoGUI are sent to the window that currently has focus, as if you had pressed the
physical keyboard key.
Screenshot Functions
(PyAutoGUI uses Pillow for image-related features.)
On Windows, PyAutoGUI accesses the Windows API (also called the WinAPI or win32 API) through the built-in
ctypes module. The nicewin module at https://github.com/asweigart/nicewin provides a demonstration for
how Windows API calls can be made through Python.
On macOS, PyAutoGUI uses the rubicon-objc module to access the Cocoa API.
On Linux, PyAutoGUI uses the Xlib module to access the X11 or X Window System.
Support
If you find this project helpful and would like to support its development, consider donating to its creator on Patreon.
© 2022 GitHub, Inc. Terms Privacy Security Status Docs Contact GitHub Pricing API Training Blog About