Automate and control the mouse and keyboard in Python
PyAutoGUI is a cross-platform GUI automation module for Python. It allows you to control the mouse and keyboard, perform image recognition, and automate repetitive tasks across different applications and operating systems.
Key Features:
Common Use Cases:
pip install pyautogui
import pyautogui
import time
# Get screen resolution
screen_width, screen_height = pyautogui.size()
# Move the mouse to the center of the screen
pyautogui.moveTo(screen_width / 2, screen_height / 2, duration=1)
# Click the mouse
pyautogui.click()
# Enter text
pyautogui.typewrite('Hello, world!', interval=0.1)
# Take a screenshot
screenshot = pyautogui.screenshot()
screenshot.save("screenshot.png")