Cross-Platform toolkit to get info on and control windows on screen
Project description
PyWinCtl
Cross-Platform module to get info on and control windows on screen.
This module is a Python 3 fork from asweigart's PyGetWindow module, which adds Linux and macOS experimental support to the MS Windows-only original module, in the hope others can use it, test it or contribute.
With PyWinCtl you can retrieve info or control windows from other open applications, as well as use it as a cross-platform toolkit to manipulate your own application windows.
My most sincere thanks and acknowledgement to macdeport and holychowders for their help and moral boost.
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 | |
getAllAppsTitles | activate | |
getAllAppsWindowsTitles | resize / resizeRel | |
getMousePos | resizeTo | |
getScreenSize | move / moveRel | |
getWorkArea | moveTo | |
version | raiseWindow | |
lowerWindow | ||
alwaysOnTop | ||
alwaysOnBottom | ||
getAppName | ||
getHandle | ||
getParent | ||
getChildren | ||
isParent | ||
isChild |
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, which may change or be duplicate), 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:
pip install pywinctl
Alternatively, you can download the wheel file (.whl) available in the Donwnload page and the dist folder, and run this (don't forget to replace 'x.x.xx' with proper version number):
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
SUPPORT
In case you have a problem, comments or suggestions, do not hesitate to open issues on the project homepage
USING THIS CODE
If you want to use this code or contribute, you can either:
- Create a fork of the 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
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 Distributions
Built Distribution
File details
Details for the file PyWinCtl-0.0.24-py3-none-any.whl
.
File metadata
- Download URL: PyWinCtl-0.0.24-py3-none-any.whl
- Upload date:
- Size: 38.6 kB
- Tags: Python 3
- 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 | fcae181d83eabd295cee423cba3e5c9d6c1b151782595d25853470a8fe34c758 |
|
MD5 | e490dda5c121b44addb1f51f46495ff2 |
|
BLAKE2b-256 | 01628ddc5c8de45c64aedb2c2e7b72f92f826772482820834d37e4dc3e6af2e6 |