PyAutoGUI


NamePyAutoGUI JSON
Version 0.9.54 PyPI version JSON
download
home_pagehttps://github.com/asweigart/pyautogui
SummaryPyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks. For Windows, macOS, and Linux, on Python 3 and 2.
upload_time2023-05-24 20:11:32
maintainer
docs_urlNone
authorAl Sweigart
requires_python
licenseBSD
keywords gui automation test testing keyboard mouse cursor click press keystroke control
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PyAutoGUI
=========

PyAutoGUI is a  cross-platform GUI automation Python module for human beings. Used to programmatically control the mouse & keyboard.

`pip install pyautogui`

Full documentation available at https://pyautogui.readthedocs.org

Simplified Chinese documentation available at https://github.com/asweigart/pyautogui/blob/master/docs/simplified-chinese.ipynb

Source code available at https://github.com/asweigart/pyautogui

If you need help installing Python, visit https://installpython3.com/

Dependencies
============

PyAutoGUI supports Python 2 and 3. If you are installing PyAutoGUI from PyPI using pip:

Windows has no dependencies. The Win32 extensions do not need to be installed.

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
=============

Keyboard and Mouse Control
--------------------------

The x, y coordinates used by PyAutoGUI has the 0, 0 origin coordinates in the top left corner of the screen. The x coordinates increase going to the right (just as in mathematics) but the y coordinates increase going down (the opposite of mathematics). On a screen that is 1920 x 1080 pixels in size, coordinates 0, 0 are for the top left while 1919, 1079 is for the bottom right.

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.

```python
    >>> import pyautogui
    >>> screenWidth, screenHeight = pyautogui.size() # Returns two integers, the width and height of the screen. (The primary monitor, in multi-monitor setups.)
    >>> currentMouseX, currentMouseY = pyautogui.position() # Returns two integers, the x and y of the mouse cursor's current position.
    >>> pyautogui.moveTo(100, 150) # Move the mouse to the x, y coordinates 100, 150.
    >>> pyautogui.click() # Click the mouse at its current location.
    >>> pyautogui.click(200, 220) # Click the mouse at the x, y coordinates 200, 220.
    >>> pyautogui.move(None, 10)  # Move mouse 10 pixels down, that is, move the mouse relative to its current position.
    >>> pyautogui.doubleClick() # Double click the mouse at the
    >>> pyautogui.moveTo(500, 500, duration=2, tween=pyautogui.easeInOutQuad) # Use tweening/easing function to move mouse over 2 seconds.
    >>> pyautogui.write('Hello world!', interval=0.25)  # Type with quarter-second pause in between each key.
    >>> pyautogui.press('esc') # Simulate pressing the Escape key.
    >>> pyautogui.keyDown('shift')
    >>> pyautogui.write(['left', 'left', 'left', 'left', 'left', 'left'])
    >>> pyautogui.keyUp('shift')
    >>> pyautogui.hotkey('ctrl', 'c')
```

Display Message Boxes
---------------------
```python
    >>> import pyautogui
    >>> pyautogui.alert('This is an alert box.')
    'OK'
    >>> pyautogui.confirm('Shall I proceed?')
    'Cancel'
    >>> pyautogui.confirm('Enter option.', buttons=['A', 'B', 'C'])
    'B'
    >>> pyautogui.prompt('What is your name?')
    'Al'
    >>> pyautogui.password('Enter password (text will be hidden)')
    'swordfish'
```

Screenshot Functions
--------------------

(PyAutoGUI uses Pillow for image-related features.)
```python
    >>> import pyautogui
    >>> im1 = pyautogui.screenshot()
    >>> im1.save('my_screenshot.png')
    >>> im2 = pyautogui.screenshot('my_screenshot2.png')
```
You can also locate where an image is on the screen:
```python
    >>> import pyautogui
    >>> button7location = pyautogui.locateOnScreen('button.png') # returns (left, top, width, height) of matching region
    >>> button7location
    (1416, 562, 50, 41)
    >>> buttonx, buttony = pyautogui.center(button7location)
    >>> buttonx, buttony
    (1441, 582)
    >>> pyautogui.click(buttonx, buttony)  # clicks the center of where the button was found
```
The locateCenterOnScreen() function returns the center of this match region:
```python
    >>> import pyautogui
    >>> buttonx, buttony = pyautogui.locateCenterOnScreen('button.png') # returns (x, y) of matching region
    >>> buttonx, buttony
    (1441, 582)
    >>> pyautogui.click(buttonx, buttony)  # clicks the center of where the button was found
```

How Does PyAutoGUI Work?
========================

The three major operating systems (Windows, macOS, and Linux) each have different ways to programmatically control the mouse and keyboard. This can often involve confusing, obscure, and deeply technical details. The job of PyAutoGUI is to hide all of this complexity behind a simple API.

* 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](https://www.patreon.com/AlSweigart).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/asweigart/pyautogui",
    "name": "PyAutoGUI",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "gui automation test testing keyboard mouse cursor click press keystroke control",
    "author": "Al Sweigart",
    "author_email": "al@inventwithpython.com",
    "download_url": "https://files.pythonhosted.org/packages/65/ff/cdae0a8c2118a0de74b6cf4cbcdcaf8fd25857e6c3f205ce4b1794b27814/PyAutoGUI-0.9.54.tar.gz",
    "platform": null,
    "description": "PyAutoGUI\r\n=========\r\n\r\nPyAutoGUI is a  cross-platform GUI automation Python module for human beings. Used to programmatically control the mouse & keyboard.\r\n\r\n`pip install pyautogui`\r\n\r\nFull documentation available at https://pyautogui.readthedocs.org\r\n\r\nSimplified Chinese documentation available at https://github.com/asweigart/pyautogui/blob/master/docs/simplified-chinese.ipynb\r\n\r\nSource code available at https://github.com/asweigart/pyautogui\r\n\r\nIf you need help installing Python, visit https://installpython3.com/\r\n\r\nDependencies\r\n============\r\n\r\nPyAutoGUI supports Python 2 and 3. If you are installing PyAutoGUI from PyPI using pip:\r\n\r\nWindows has no dependencies. The Win32 extensions do not need to be installed.\r\n\r\nmacOS needs the pyobjc-core and pyobjc module installed (in that order).\r\n\r\nLinux needs the python3-xlib (or python-xlib for Python 2) module installed.\r\n\r\nPillow needs to be installed, and on Linux you may need to install additional libraries to make sure Pillow's PNG/JPEG works correctly. See:\r\n\r\n    https://stackoverflow.com/questions/7648200/pip-install-pil-e-tickets-1-no-jpeg-png-support\r\n\r\n    http://ubuntuforums.org/showthread.php?t=1751455\r\n\r\nIf you want to do development and contribute to PyAutoGUI, you will need to install these modules from PyPI:\r\n\r\n* pyscreeze\r\n* pymsgbox\r\n* pytweening\r\n\r\nExample Usage\r\n=============\r\n\r\nKeyboard and Mouse Control\r\n--------------------------\r\n\r\nThe x, y coordinates used by PyAutoGUI has the 0, 0 origin coordinates in the top left corner of the screen. The x coordinates increase going to the right (just as in mathematics) but the y coordinates increase going down (the opposite of mathematics). On a screen that is 1920 x 1080 pixels in size, coordinates 0, 0 are for the top left while 1919, 1079 is for the bottom right.\r\n\r\nCurrently, 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).\r\n\r\nAll keyboard presses done by PyAutoGUI are sent to the window that currently has focus, as if you had pressed the physical keyboard key.\r\n\r\n```python\r\n    >>> import pyautogui\r\n    >>> screenWidth, screenHeight = pyautogui.size() # Returns two integers, the width and height of the screen. (The primary monitor, in multi-monitor setups.)\r\n    >>> currentMouseX, currentMouseY = pyautogui.position() # Returns two integers, the x and y of the mouse cursor's current position.\r\n    >>> pyautogui.moveTo(100, 150) # Move the mouse to the x, y coordinates 100, 150.\r\n    >>> pyautogui.click() # Click the mouse at its current location.\r\n    >>> pyautogui.click(200, 220) # Click the mouse at the x, y coordinates 200, 220.\r\n    >>> pyautogui.move(None, 10)  # Move mouse 10 pixels down, that is, move the mouse relative to its current position.\r\n    >>> pyautogui.doubleClick() # Double click the mouse at the\r\n    >>> pyautogui.moveTo(500, 500, duration=2, tween=pyautogui.easeInOutQuad) # Use tweening/easing function to move mouse over 2 seconds.\r\n    >>> pyautogui.write('Hello world!', interval=0.25)  # Type with quarter-second pause in between each key.\r\n    >>> pyautogui.press('esc') # Simulate pressing the Escape key.\r\n    >>> pyautogui.keyDown('shift')\r\n    >>> pyautogui.write(['left', 'left', 'left', 'left', 'left', 'left'])\r\n    >>> pyautogui.keyUp('shift')\r\n    >>> pyautogui.hotkey('ctrl', 'c')\r\n```\r\n\r\nDisplay Message Boxes\r\n---------------------\r\n```python\r\n    >>> import pyautogui\r\n    >>> pyautogui.alert('This is an alert box.')\r\n    'OK'\r\n    >>> pyautogui.confirm('Shall I proceed?')\r\n    'Cancel'\r\n    >>> pyautogui.confirm('Enter option.', buttons=['A', 'B', 'C'])\r\n    'B'\r\n    >>> pyautogui.prompt('What is your name?')\r\n    'Al'\r\n    >>> pyautogui.password('Enter password (text will be hidden)')\r\n    'swordfish'\r\n```\r\n\r\nScreenshot Functions\r\n--------------------\r\n\r\n(PyAutoGUI uses Pillow for image-related features.)\r\n```python\r\n    >>> import pyautogui\r\n    >>> im1 = pyautogui.screenshot()\r\n    >>> im1.save('my_screenshot.png')\r\n    >>> im2 = pyautogui.screenshot('my_screenshot2.png')\r\n```\r\nYou can also locate where an image is on the screen:\r\n```python\r\n    >>> import pyautogui\r\n    >>> button7location = pyautogui.locateOnScreen('button.png') # returns (left, top, width, height) of matching region\r\n    >>> button7location\r\n    (1416, 562, 50, 41)\r\n    >>> buttonx, buttony = pyautogui.center(button7location)\r\n    >>> buttonx, buttony\r\n    (1441, 582)\r\n    >>> pyautogui.click(buttonx, buttony)  # clicks the center of where the button was found\r\n```\r\nThe locateCenterOnScreen() function returns the center of this match region:\r\n```python\r\n    >>> import pyautogui\r\n    >>> buttonx, buttony = pyautogui.locateCenterOnScreen('button.png') # returns (x, y) of matching region\r\n    >>> buttonx, buttony\r\n    (1441, 582)\r\n    >>> pyautogui.click(buttonx, buttony)  # clicks the center of where the button was found\r\n```\r\n\r\nHow Does PyAutoGUI Work?\r\n========================\r\n\r\nThe three major operating systems (Windows, macOS, and Linux) each have different ways to programmatically control the mouse and keyboard. This can often involve confusing, obscure, and deeply technical details. The job of PyAutoGUI is to hide all of this complexity behind a simple API.\r\n\r\n* 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.\r\n\r\n* On macOS, PyAutoGUI uses the `rubicon-objc` module to access the Cocoa API.\r\n\r\n* On Linux, PyAutoGUI uses the `Xlib` module to access the X11 or X Window System.\r\n\r\n\r\nSupport\r\n-------\r\n\r\nIf you find this project helpful and would like to support its development, [consider donating to its creator on Patreon](https://www.patreon.com/AlSweigart).\r\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "PyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks. For Windows, macOS, and Linux, on Python 3 and 2.",
    "version": "0.9.54",
    "project_urls": {
        "Homepage": "https://github.com/asweigart/pyautogui"
    },
    "split_keywords": [
        "gui",
        "automation",
        "test",
        "testing",
        "keyboard",
        "mouse",
        "cursor",
        "click",
        "press",
        "keystroke",
        "control"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65ffcdae0a8c2118a0de74b6cf4cbcdcaf8fd25857e6c3f205ce4b1794b27814",
                "md5": "42c4ffb0e978c311dd307ca332419387",
                "sha256": "dd1d29e8fd118941cb193f74df57e5c6ff8e9253b99c7b04f39cfc69f3ae04b2"
            },
            "downloads": -1,
            "filename": "PyAutoGUI-0.9.54.tar.gz",
            "has_sig": false,
            "md5_digest": "42c4ffb0e978c311dd307ca332419387",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 61236,
            "upload_time": "2023-05-24T20:11:32",
            "upload_time_iso_8601": "2023-05-24T20:11:32.972010Z",
            "url": "https://files.pythonhosted.org/packages/65/ff/cdae0a8c2118a0de74b6cf4cbcdcaf8fd25857e6c3f205ce4b1794b27814/PyAutoGUI-0.9.54.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-24 20:11:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "asweigart",
    "github_project": "pyautogui",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "pyautogui"
}
        
Elapsed time: 0.07297s