To automate interactions with other applications, PyAutoGUI allows your Python scripts to control the mouse and keyboard. The API is intended to be straightforward. PyAutoGUI runs on Python 2 and 3 and is compatible with Windows, macOS, and Linux.
To install with pip, run pip install pyautogui. See the Installation page for more details.
PyAutoGUI has several features:
Éxample
import pyautogui
import time
while True:
  time.sleep(1)
  pyautogui.typewrite('tos')
  pyautogui.press('enter')
Please Watching My Video is Below
No comments:
Post a Comment