A cross-platform module to control and obtain GUI information on application's windows.
Project description
First off, my most sincere thanks and acknowledgement to macdeport (https://github.com/macdeport) and holychowders (https://github.com/holychowders) for their help and moral boost.
PyWinCtl
This is a fork from asweigart's PyGetWindow module (https://github.com/asweigart/PyGetWindow), intended to obtain GUI information on and control application's windows.
This fork adds Linux and macOS experimental support to the MS Windows-only original module, in the hope others can use it, test it or contribute
Window Features
All these functions are available at the moment, in all three platforms (Windows, Linux and macOS):
General, independent functions: | Window class methods: | Window class properties: |
---|---|---|
getActiveWindow | close | title |
getActiveWindowTitle | minimize | isMinimized |
getAllWindows | maximize | isMaximized |
getAllTitles | restore | isActive |
getWindowsWithTitle | hide | isVisible |
getWindowsAt | show | |
cursor (mouse position) | activate | |
resolution (screen size) | resize / resizeRel | |
resizeTo | ||
move / moveRel | ||
moveTo | ||
alwaysOnTop | ||
alwaysOnBottom | ||
lowerWindow | ||
raiseWindow | ||
sendBehind |
IMPORTANT macOS NOTICE:
macOS doesn't "like" controlling windows from other apps, so there are two separate classes you can use:
- To control your own application's windows: MacOSNSWindow() is based on NSWindow Objects (you have to pass the NSApp() Object reference).
- To control other applications' windows: MacOSWindow() is based on Apple Script, so it is slower and, in some cases, tricky (uses window name as reference), but it's working fine in most cases. You will likely need to grant permissions on Settings->Security&Privacy->Accessibility.
Menu Features
Available in: MS-Windows and macOS Apple Script version (MacOSWindow() class)
Menu info and control functions (from asweigart's original ideas), accessible through 'menu' submodule. E.g.:
subprocess.Popen('notepad')
windows = pywinctl.getWindowsWithTitle('Untitled - Notepad')
if windows:
win = windows[0]
menu = win.menu.getMenu()
ret = win.menu.clickMenuItem(["File", "Exit"]) # Exit program
if not ret:
print("Option not found")
else:
print("Window not found")
Menu dictionary (returned by getMenu() method) will likely contain all you may need to handle application menu:
Key: item title
Values:
"parent": parent sub-menu handle
"hSubMenu": item handle (!= 0 for sub-menu items only)
"wID": item ID (required for other actions, e.g. clickMenuItem())
"rect": Rect struct of the menu item. (Windows: It is relative to window position, so it won't likely change if window is moved or resized)
"item_info": [Optional] Python dictionary (macOS) / MENUITEMINFO struct (Windows)
"shortcut": shortcut to menu item, if any (macOS: only if item_info is included)
"entries": sub-items within the sub-menu (if any)
Functions included in this subclass:
Menu sub-module functions: |
---|
getMenu |
getMenuInfo |
getMenuItemCount |
getMenuItemInfo |
getMenuItemRect |
clickMenuItem |
Note not all windows/applications will have a menu accessible by these methods.
INSTALL
To install this module on your system, you can use pip:
python3 -m pip install pywinctl
Alternatively, you can download the wheel file (.whl) located in "dist" folder, and run this (don't forget to replace 'x.x.xx' with proper version number):
python3 -m pip install PyWinCtl-x.x.xx-py3-none-any.whl
You may want to add '--force-reinstall' option to be sure you are installing the right dependencies version.
Then, you can use it on your own projects just importing it:
import pywinctl
USING THIS CODE
If you want to use this code or contribute, you can either:
- Create a fork of this repository, or
- Download the repository, uncompress, and open it on your IDE of choice (e.g. PyCharm)
Be sure you install all dependencies described on "docs/requirements.txt" by using pip
In case you have any issues, comments or suggestions, do not hesitate to open an issue, or contact me (palookjones@gmail.com)
TEST
To test this module on your own system, cd to "tests" folder and run:
pytest -vv test_pywinctl.py
or, in case you get an import error, try this:
python3 -m pytest -vv test_pywinctl.py
MacOSNSWindow class and methods can be tested by running this, also on "tests" folder:
python3 test_MacNSWindow.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file PyWinCtl-0.0.12.tar.gz
.
File metadata
- Download URL: PyWinCtl-0.0.12.tar.gz
- Upload date:
- Size: 73.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67e8b1b1876e843b50bec5b911609040473a08ba1afcc1406402ff704506d4db |
|
MD5 | d06f9cb133d9b9c4f47422d505e08b6d |
|
BLAKE2b-256 | 9e42fa802b5e5f7654d5dc4c4c01cbcdeb95f1acdf3af61979c17b8fa2bddd0e |