├── .gitignore ├── AUTHORS.txt ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── calc7key.png ├── calculator.png ├── cheatsheet.rst ├── conf.py ├── cookbook.rst ├── general.rst ├── index.rst ├── install.rst ├── introduction.rst ├── keyboard.rst ├── make.bat ├── mouse.rst ├── msgbox.rst ├── roadmap.rst ├── screenshot.rst ├── sorcerers_apprentice_brooms.png ├── square_spiral.png └── tests.rst ├── pyautogui ├── __init__.py ├── __main__.py ├── _pyautogui_java.py ├── _pyautogui_osx.py ├── _pyautogui_win.py ├── _pyautogui_x11.py ├── screenshotUtil.py ├── tweens.py └── window.py ├── setup.py └── tests └── basicTests.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | _build 3 | *.pyc 4 | __pycache__ 5 | PyAutoGUI.egg-info -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/calc7key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/calc7key.png -------------------------------------------------------------------------------- /docs/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/calculator.png -------------------------------------------------------------------------------- /docs/cheatsheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/cheatsheet.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/cookbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/cookbook.rst -------------------------------------------------------------------------------- /docs/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/general.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/keyboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/keyboard.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mouse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/mouse.rst -------------------------------------------------------------------------------- /docs/msgbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/msgbox.rst -------------------------------------------------------------------------------- /docs/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/roadmap.rst -------------------------------------------------------------------------------- /docs/screenshot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/screenshot.rst -------------------------------------------------------------------------------- /docs/sorcerers_apprentice_brooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/sorcerers_apprentice_brooms.png -------------------------------------------------------------------------------- /docs/square_spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/square_spiral.png -------------------------------------------------------------------------------- /docs/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/docs/tests.rst -------------------------------------------------------------------------------- /pyautogui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/__init__.py -------------------------------------------------------------------------------- /pyautogui/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/__main__.py -------------------------------------------------------------------------------- /pyautogui/_pyautogui_java.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyautogui/_pyautogui_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/_pyautogui_osx.py -------------------------------------------------------------------------------- /pyautogui/_pyautogui_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/_pyautogui_win.py -------------------------------------------------------------------------------- /pyautogui/_pyautogui_x11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/_pyautogui_x11.py -------------------------------------------------------------------------------- /pyautogui/screenshotUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/screenshotUtil.py -------------------------------------------------------------------------------- /pyautogui/tweens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/tweens.py -------------------------------------------------------------------------------- /pyautogui/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/pyautogui/window.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/setup.py -------------------------------------------------------------------------------- /tests/basicTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/pyautogui/HEAD/tests/basicTests.py --------------------------------------------------------------------------------