├── .gitignore ├── AUTHORS.txt ├── CHANGES.txt ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── pyproject.toml ├── random_notes.txt ├── setup.py ├── src └── pygetwindow │ ├── __init__.py │ ├── _pygetwindow_macos.py │ └── _pygetwindow_win.py ├── tests └── test_pygetwindow.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | pygetwindow -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /random_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/random_notes.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/setup.py -------------------------------------------------------------------------------- /src/pygetwindow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/src/pygetwindow/__init__.py -------------------------------------------------------------------------------- /src/pygetwindow/_pygetwindow_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/src/pygetwindow/_pygetwindow_macos.py -------------------------------------------------------------------------------- /src/pygetwindow/_pygetwindow_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/src/pygetwindow/_pygetwindow_win.py -------------------------------------------------------------------------------- /tests/test_pygetwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/tests/test_pygetwindow.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/PyGetWindow/HEAD/tox.ini --------------------------------------------------------------------------------