PyWinCtl


NamePyWinCtl JSON
Version 0.3 PyPI version JSON
download
home_pagehttps://github.com/Kalmat/PyWinCtl
SummaryCross-Platform toolkit to get info on and control windows on screen
upload_time2023-09-20 10:56:53
maintainer
docs_urlNone
authorKalmat
requires_python
licenseBSD 3
keywords gui window control menu title name geometry size position move resize minimize maximize restore hide show activate raise lower close screen-size mouse-position
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyWinCtl <a name="pywinctl"></a>
[![Type Checking](https://github.com/Kalmat/PyWinCtl/actions/workflows/type-checking.yml/badge.svg?branch=dev)](https://github.com/Kalmat/PyWinCtl/actions/workflows/type-checking.yml)
[![PyPI version](https://badge.fury.io/py/PyWinCtl.svg)](https://badge.fury.io/py/PyWinCtl)

Cross-Platform module to get info on and control windows on screen.

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.

This module is a Python 3 evolution from [asweigart's PyGetWindow module](https://github.com/asweigart/PyGetWindow), which adds Linux/X11 and macOS support to the MS Windows-only original module, multi-monitor support, and many additional features; in the hope others can use it, test it or contribute.

My most sincere thanks and acknowledgement. amongst many others (see AUTHORS.txt), to [MestreLion](https://github.com/MestreLion), [super-ibby](https://github.com/super-ibby), [Avasam](https://github.com/Avasam), [macdeport](https://github.com/macdeport) and [holychowders](https://github.com/holychowders) for their help and moral boost.

1. [Window Features](#window-features)
   1. [Important macOS notice](#macos-notice)
   2. [Important Linux notice](#linux-notice)
2. [Window Change Notifications](#watchdog])
   1. [Important comments](#watchdog-comments)
   2. [Important macOS Apple Script version notice](#watchdog-macos-comments)
3. [Menu Features](#menu-features)
4. [Install](#install)
5. [Support](#support)
6. [Using this code](#using)
7. [Test](#test)

## Window Features <a name="window-features"></a>

You need a Window object to manipulate/control the target window on screen. It's possible to get a Window object by using any of the general methods (e.g. getActiveWidow() or getWindowsWithTitle()). You can also use windows id, as returned by PyQt's self.winId() or tkinter's root.frame(), which is very handy to get the Window object for your own application.

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        | updatedTitle (MacOSWindow only) |
|          getAllWindows          |       maximize        |           isMaximized           |
|          getAllTitles           |        restore        |           isMinimized           |
|       getWindowsWithTitle       |         hide          |            isActive             |
|         getAllAppsNames         |         show          |            isVisible            |
|         getAppsWithName         |       activate        |             isAlive             |
|     getAllAppsWindowsTitles     |  resize / resizeRel   |                                 |
|          getWindowsAt           |       resizeTo        |                                 |
|         getTopWindowAt          |    move / moveRel     |                                 |
|    displayWindowsUnderMouse     |        moveTo         |                                 |
|             version             |      raiseWindow      |                                 |
|  checkPermissions (macOS only)  |      lowerWindow      |                                 |
|                                 |      alwaysOnTop      |                                 |
|                                 |    alwaysOnBottom     |                                 |
|                                 |      sendBehind       |                                 |
|                                 |      acceptInput      |                                 |
|                                 |      getAppName       |                                 |
|                                 |       getHandle       |                                 |
|                                 |       getParent       |                                 |
|                                 |       setParent       |                                 |
|                                 |      getChildren      |                                 |
|                                 |       isParent        |                                 |
|                                 |        isChild        |                                 |
|                                 |      getDisplay       |                                 |
|                                 |     getExtraFrame     |                                 |
|                                 |    getClientFrame     |                                 |

***Important macOS notice <a name="macos-notice"></a>***

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() and the NSWindow() objects reference).
- To control other applications' windows: MacOSWindow() is based on Apple Script, so it is non-standard, 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. ***Notice some applications will have limited Apple Script support or no support at all, so some or even all methods may fail!***

***Important Linux notice <a name="linux-notice"></a>***

The enormous variety of Linux distributions, Desktop Environments, Window Managers, and their combinations, make it impossible to test in all scenarios.

This module has been tested OK in some X11 setups: Ubuntu/Gnome, Ubuntu/KDE, Ubuntu/Unity, Mint/Cinnamon and Raspbian/LXDE. Except for Mint/Cinnamon and Ubuntu 22.04+, `sendBehind()` method doesn't properly work!

In Wayland (the new GNOME protocol for Ubuntu 22.04+), it is not possible to retrieve the active window nor the list 
of open windows, so `getActiveWindow()` and `getAllWindows()` will not likely work even though unsafe-mode is  
enabled (built-in and "official" applications do not populate their Xid nor their X-Window object, so it may work for
other applications like Chrome or your own application windows)

In case you find problems in other configs, please [open an issue](https://github.com/Kalmat/PyWinCtl/issues). Furthermore, if you have knowledge in these other configs, do not hesitate to contribute!

## Window Change Notifications <a name="watchdog"></a>

Window watchdog sub-class, running in a separate Thread, will allow to define hooks and its callbacks to be notified when some window states change. Accessible through 'watchdog' submodule.

The watchdog will automatically stop when window doesn't exist anymore or main program quits.

    isAliveCB:      callback to invoke when window is not alive anymore. Set to None to not to watch this
                    Passes the new alive status value (False)
    
    isActiveCB:     callback to invoke if window changes its active status. Set to None to not to watch this
                    Passes the new active status value (True/False)
    
    isVisibleCB:    callback to invoke if window changes its visible status. Set to None to not to watch this
                    Passes the new visible status value (True/False)

    isMinimizedCB:  callback to invoke if window changes its minimized status. Set to None to not to watch this
                    Passes the new minimized status value (True/False)

    isMaximizedCB:  callback to invoke if window changes its maximized status. Set to None to not to watch this
                    Passes the new maximized status value (True/False)
    
    resizedCB:      callback to invoke if window changes its size. Set to None to not to watch this
                    Passes the new size (width, height)
    
    movedCB:        callback to invoke if window changes its position. Set to None to not to watch this
                    Passes the new position (x, y)
    
    changedTitleCB: callback to invoke if window changes its title. Set to None to not to watch this
                    Passes the new title (as string)
                    IMPORTANT: In MacOS AppScript version, if title changes, watchdog will stop unless using setTryToFind(True)

    changedDisplayCB: callback to invoke if window changes display. Set to None to not to watch this
                      Passes the new display name (as string)

| watchdog sub-module methods: |
|:----------------------------:|
|            start             |
|       updateCallbacks        |
|        updateInterval        |
|         setTryToFind         |
|           isAlive            |
|             stop             |

Example:

    import pywinctl as pwc
    import time

    def activeCB(active):
        print("NEW ACTIVE STATUS", active)

    def movedCB(pos):
        print("NEW POS", pos)

    npw = pwc.getActiveWindow()
    npw.watchdog.start(isActiveCB=activeCB)
    npw.watchdog.setTryToFind(True)
    print("Toggle focus and move active window")
    print("Press Ctl-C to Quit")
    i = 0
    while True:
        try:
            if i == 50:
                npw.watchdog.updateCallbacks(isActiveCB=activeCB, movedCB=movedCB)
            if i == 100:
                npw.watchdog.updateInterval(0.1)
                npw.watchdog.setTryToFind(False)
            time.sleep(0.1)
        except KeyboardInterrupt:
            break
        i += 1
    npw.watchdog.stop()


***Important comments <a name="watchdog-comments"></a>***

- The callbacks definition MUST MATCH their invocation params (boolean, string or (int, int))
- The watchdog is asynchronous, so notifications won't be immediate (adjust interval value to your needs). Use window object properties instead (e.g. isAlive)
- Position and size notifications will trigger several times between initial and final values
- When updating callbacks, remember to set ALL desired callbacks. Non-present (None) callbacks will be deactivated

***Important macOS Apple Script version notice <a name="watchdog-macos-comments"></a>***

- Might be very slow and resource-consuming
- It uses the title to identify the window, so if it changes, the watchdog will consider it is not available anymore and will stop
- To avoid this, use ''tryToFind(True)'' method to try to find the new title (not fully guaranteed since it uses a similarity check, so the new title might not be found or correspond to a different window)


## Menu Features <a name="menu-features"></a>

#### Available in: MS-Windows and macOS Apple Script version (Win32Window() and MacOSWindow() classes)

menu sub-class for Menu info and control methods, accessible through 'menu' submodule.

| menu sub-module methods: |
|:------------------------:|
|         getMenu          |
|       getMenuInfo        |
|     getMenuItemCount     |
|     getMenuItemInfo      |
|     getMenuItemRect      |
|      clickMenuItem       |

MS-Windows example (notice it is language-dependent):

    import pywinctl as pwc
    import subprocess
    # import json

    subprocess.Popen('notepad')
    windows = pwc.getWindowsWithTitle('notepad', condition=pwc.Re.CONTAINS, flags=pwc.Re.IGNORECASE)
    if windows:
        win = windows[0]
        menu = win.menu.getMenu()
        # print(json.dumps(menu, indent=4, ensure_ascii=False))  # Prints menu dict in legible format
        ret = win.menu.clickMenuItem(["File", "Exit"])           # Exit program
        if not ret:
            print("Option not found. Check option path and language")
    else:
        print("Window not found. Check application name and language")

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-menus 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 (or not present otherwise)
                    these sub-items will have this very same format, in a nested struct.

Note not all windows/applications will have a menu accessible by these methods.

## INSTALL <a name="install"></a>

To install this module on your system, you can use pip: 

    pip3 install pywinctl

or

    python3 -m pip install pywinctl

Alternatively, you can download the wheel file (.whl) available in the [Download page](https://pypi.org/project/PyWinCtl/#files) and the [dist folder](https://github.com/Kalmat/PyWinCtl/tree/master/dist), 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 as pwc

## SUPPORT <a name="support"></a>

In case you have a problem, comments or suggestions, do not hesitate to [open issues](https://github.com/Kalmat/PyWinCtl/issues) on the [project homepage](https://github.com/Kalmat/PyWinCtl)

## USING THIS CODE <a name="using"></a>

If you want to use this code or contribute, you can either:

* Create a fork of the [repository](https://github.com/Kalmat/PyWinCtl), or 
* [Download the repository](https://github.com/Kalmat/PyWinCtl/archive/refs/heads/master.zip), uncompress, and open it on your IDE of choice (e.g. PyCharm)

Be sure you install all dependencies described on "requirements.txt" by using pip

## TEST <a name="test"></a>

To test this module on your own system, cd to "tests" folder and run:

    python3 test_pywinctl.py

MacOSNSWindow class and methods can be tested by running this, also on "tests" folder:

    python3 test_MacNSWindow.py

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Kalmat/PyWinCtl",
    "name": "PyWinCtl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "gui window control menu title name geometry size position move resize minimize maximize restore hide show activate raise lower close screen-size mouse-position",
    "author": "Kalmat",
    "author_email": "palookjones@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "# PyWinCtl <a name=\"pywinctl\"></a>\r\n[![Type Checking](https://github.com/Kalmat/PyWinCtl/actions/workflows/type-checking.yml/badge.svg?branch=dev)](https://github.com/Kalmat/PyWinCtl/actions/workflows/type-checking.yml)\r\n[![PyPI version](https://badge.fury.io/py/PyWinCtl.svg)](https://badge.fury.io/py/PyWinCtl)\r\n\r\nCross-Platform module to get info on and control windows on screen.\r\n\r\nWith 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.\r\n\r\nThis module is a Python 3 evolution from [asweigart's PyGetWindow module](https://github.com/asweigart/PyGetWindow), which adds Linux/X11 and macOS support to the MS Windows-only original module, multi-monitor support, and many additional features; in the hope others can use it, test it or contribute.\r\n\r\nMy most sincere thanks and acknowledgement. amongst many others (see AUTHORS.txt), to [MestreLion](https://github.com/MestreLion), [super-ibby](https://github.com/super-ibby), [Avasam](https://github.com/Avasam), [macdeport](https://github.com/macdeport) and [holychowders](https://github.com/holychowders) for their help and moral boost.\r\n\r\n1. [Window Features](#window-features)\r\n   1. [Important macOS notice](#macos-notice)\r\n   2. [Important Linux notice](#linux-notice)\r\n2. [Window Change Notifications](#watchdog])\r\n   1. [Important comments](#watchdog-comments)\r\n   2. [Important macOS Apple Script version notice](#watchdog-macos-comments)\r\n3. [Menu Features](#menu-features)\r\n4. [Install](#install)\r\n5. [Support](#support)\r\n6. [Using this code](#using)\r\n7. [Test](#test)\r\n\r\n## Window Features <a name=\"window-features\"></a>\r\n\r\nYou need a Window object to manipulate/control the target window on screen. It's possible to get a Window object by using any of the general methods (e.g. getActiveWidow() or getWindowsWithTitle()). You can also use windows id, as returned by PyQt's self.winId() or tkinter's root.frame(), which is very handy to get the Window object for your own application.\r\n\r\nThese functions are available at the moment, in all three platforms (Windows, Linux and macOS):\r\n\r\n| General, independent functions: | Window class methods: |    Window class properties:     |\r\n|:-------------------------------:|:---------------------:|:-------------------------------:|\r\n|         getActiveWindow         |         close         |              title              |\r\n|      getActiveWindowTitle       |       minimize        | updatedTitle (MacOSWindow only) |\r\n|          getAllWindows          |       maximize        |           isMaximized           |\r\n|          getAllTitles           |        restore        |           isMinimized           |\r\n|       getWindowsWithTitle       |         hide          |            isActive             |\r\n|         getAllAppsNames         |         show          |            isVisible            |\r\n|         getAppsWithName         |       activate        |             isAlive             |\r\n|     getAllAppsWindowsTitles     |  resize / resizeRel   |                                 |\r\n|          getWindowsAt           |       resizeTo        |                                 |\r\n|         getTopWindowAt          |    move / moveRel     |                                 |\r\n|    displayWindowsUnderMouse     |        moveTo         |                                 |\r\n|             version             |      raiseWindow      |                                 |\r\n|  checkPermissions (macOS only)  |      lowerWindow      |                                 |\r\n|                                 |      alwaysOnTop      |                                 |\r\n|                                 |    alwaysOnBottom     |                                 |\r\n|                                 |      sendBehind       |                                 |\r\n|                                 |      acceptInput      |                                 |\r\n|                                 |      getAppName       |                                 |\r\n|                                 |       getHandle       |                                 |\r\n|                                 |       getParent       |                                 |\r\n|                                 |       setParent       |                                 |\r\n|                                 |      getChildren      |                                 |\r\n|                                 |       isParent        |                                 |\r\n|                                 |        isChild        |                                 |\r\n|                                 |      getDisplay       |                                 |\r\n|                                 |     getExtraFrame     |                                 |\r\n|                                 |    getClientFrame     |                                 |\r\n\r\n***Important macOS notice <a name=\"macos-notice\"></a>***\r\n\r\nmacOS doesn't \"like\" controlling windows from other apps, so there are two separate classes you can use:\r\n- To control your own application's windows: MacOSNSWindow() is based on NSWindow Objects (you have to pass the NSApp() and the NSWindow() objects reference).\r\n- To control other applications' windows: MacOSWindow() is based on Apple Script, so it is non-standard, 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. ***Notice some applications will have limited Apple Script support or no support at all, so some or even all methods may fail!***\r\n\r\n***Important Linux notice <a name=\"linux-notice\"></a>***\r\n\r\nThe enormous variety of Linux distributions, Desktop Environments, Window Managers, and their combinations, make it impossible to test in all scenarios.\r\n\r\nThis module has been tested OK in some X11 setups: Ubuntu/Gnome, Ubuntu/KDE, Ubuntu/Unity, Mint/Cinnamon and Raspbian/LXDE. Except for Mint/Cinnamon and Ubuntu 22.04+, `sendBehind()` method doesn't properly work!\r\n\r\nIn Wayland (the new GNOME protocol for Ubuntu 22.04+), it is not possible to retrieve the active window nor the list \r\nof open windows, so `getActiveWindow()` and `getAllWindows()` will not likely work even though unsafe-mode is  \r\nenabled (built-in and \"official\" applications do not populate their Xid nor their X-Window object, so it may work for\r\nother applications like Chrome or your own application windows)\r\n\r\nIn case you find problems in other configs, please [open an issue](https://github.com/Kalmat/PyWinCtl/issues). Furthermore, if you have knowledge in these other configs, do not hesitate to contribute!\r\n\r\n## Window Change Notifications <a name=\"watchdog\"></a>\r\n\r\nWindow watchdog sub-class, running in a separate Thread, will allow to define hooks and its callbacks to be notified when some window states change. Accessible through 'watchdog' submodule.\r\n\r\nThe watchdog will automatically stop when window doesn't exist anymore or main program quits.\r\n\r\n    isAliveCB:      callback to invoke when window is not alive anymore. Set to None to not to watch this\r\n                    Passes the new alive status value (False)\r\n    \r\n    isActiveCB:     callback to invoke if window changes its active status. Set to None to not to watch this\r\n                    Passes the new active status value (True/False)\r\n    \r\n    isVisibleCB:    callback to invoke if window changes its visible status. Set to None to not to watch this\r\n                    Passes the new visible status value (True/False)\r\n\r\n    isMinimizedCB:  callback to invoke if window changes its minimized status. Set to None to not to watch this\r\n                    Passes the new minimized status value (True/False)\r\n\r\n    isMaximizedCB:  callback to invoke if window changes its maximized status. Set to None to not to watch this\r\n                    Passes the new maximized status value (True/False)\r\n    \r\n    resizedCB:      callback to invoke if window changes its size. Set to None to not to watch this\r\n                    Passes the new size (width, height)\r\n    \r\n    movedCB:        callback to invoke if window changes its position. Set to None to not to watch this\r\n                    Passes the new position (x, y)\r\n    \r\n    changedTitleCB: callback to invoke if window changes its title. Set to None to not to watch this\r\n                    Passes the new title (as string)\r\n                    IMPORTANT: In MacOS AppScript version, if title changes, watchdog will stop unless using setTryToFind(True)\r\n\r\n    changedDisplayCB: callback to invoke if window changes display. Set to None to not to watch this\r\n                      Passes the new display name (as string)\r\n\r\n| watchdog sub-module methods: |\r\n|:----------------------------:|\r\n|            start             |\r\n|       updateCallbacks        |\r\n|        updateInterval        |\r\n|         setTryToFind         |\r\n|           isAlive            |\r\n|             stop             |\r\n\r\nExample:\r\n\r\n    import pywinctl as pwc\r\n    import time\r\n\r\n    def activeCB(active):\r\n        print(\"NEW ACTIVE STATUS\", active)\r\n\r\n    def movedCB(pos):\r\n        print(\"NEW POS\", pos)\r\n\r\n    npw = pwc.getActiveWindow()\r\n    npw.watchdog.start(isActiveCB=activeCB)\r\n    npw.watchdog.setTryToFind(True)\r\n    print(\"Toggle focus and move active window\")\r\n    print(\"Press Ctl-C to Quit\")\r\n    i = 0\r\n    while True:\r\n        try:\r\n            if i == 50:\r\n                npw.watchdog.updateCallbacks(isActiveCB=activeCB, movedCB=movedCB)\r\n            if i == 100:\r\n                npw.watchdog.updateInterval(0.1)\r\n                npw.watchdog.setTryToFind(False)\r\n            time.sleep(0.1)\r\n        except KeyboardInterrupt:\r\n            break\r\n        i += 1\r\n    npw.watchdog.stop()\r\n\r\n\r\n***Important comments <a name=\"watchdog-comments\"></a>***\r\n\r\n- The callbacks definition MUST MATCH their invocation params (boolean, string or (int, int))\r\n- The watchdog is asynchronous, so notifications won't be immediate (adjust interval value to your needs). Use window object properties instead (e.g. isAlive)\r\n- Position and size notifications will trigger several times between initial and final values\r\n- When updating callbacks, remember to set ALL desired callbacks. Non-present (None) callbacks will be deactivated\r\n\r\n***Important macOS Apple Script version notice <a name=\"watchdog-macos-comments\"></a>***\r\n\r\n- Might be very slow and resource-consuming\r\n- It uses the title to identify the window, so if it changes, the watchdog will consider it is not available anymore and will stop\r\n- To avoid this, use ''tryToFind(True)'' method to try to find the new title (not fully guaranteed since it uses a similarity check, so the new title might not be found or correspond to a different window)\r\n\r\n\r\n## Menu Features <a name=\"menu-features\"></a>\r\n\r\n#### Available in: MS-Windows and macOS Apple Script version (Win32Window() and MacOSWindow() classes)\r\n\r\nmenu sub-class for Menu info and control methods, accessible through 'menu' submodule.\r\n\r\n| menu sub-module methods: |\r\n|:------------------------:|\r\n|         getMenu          |\r\n|       getMenuInfo        |\r\n|     getMenuItemCount     |\r\n|     getMenuItemInfo      |\r\n|     getMenuItemRect      |\r\n|      clickMenuItem       |\r\n\r\nMS-Windows example (notice it is language-dependent):\r\n\r\n    import pywinctl as pwc\r\n    import subprocess\r\n    # import json\r\n\r\n    subprocess.Popen('notepad')\r\n    windows = pwc.getWindowsWithTitle('notepad', condition=pwc.Re.CONTAINS, flags=pwc.Re.IGNORECASE)\r\n    if windows:\r\n        win = windows[0]\r\n        menu = win.menu.getMenu()\r\n        # print(json.dumps(menu, indent=4, ensure_ascii=False))  # Prints menu dict in legible format\r\n        ret = win.menu.clickMenuItem([\"File\", \"Exit\"])           # Exit program\r\n        if not ret:\r\n            print(\"Option not found. Check option path and language\")\r\n    else:\r\n        print(\"Window not found. Check application name and language\")\r\n\r\nMenu dictionary (returned by getMenu() method) will likely contain all you may need to handle application menu:\r\n\r\n    Key:            item title\r\n    Values:\r\n      \"parent\":     parent sub-menu handle\r\n      \"hSubMenu\":   item handle (!= 0 for sub-menus only)\r\n      \"wID\":        item ID (required for other actions, e.g. clickMenuItem())\r\n      \"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)\r\n      \"item_info\":  [Optional] Python dictionary (macOS) / MENUITEMINFO struct (Windows)\r\n      \"shortcut\":   shortcut to menu item, if any (macOS: only if item_info is included)\r\n      \"entries\":    sub-items within the sub-menu (or not present otherwise)\r\n                    these sub-items will have this very same format, in a nested struct.\r\n\r\nNote not all windows/applications will have a menu accessible by these methods.\r\n\r\n## INSTALL <a name=\"install\"></a>\r\n\r\nTo install this module on your system, you can use pip: \r\n\r\n    pip3 install pywinctl\r\n\r\nor\r\n\r\n    python3 -m pip install pywinctl\r\n\r\nAlternatively, you can download the wheel file (.whl) available in the [Download page](https://pypi.org/project/PyWinCtl/#files) and the [dist folder](https://github.com/Kalmat/PyWinCtl/tree/master/dist), and run this (don't forget to replace 'x.x.xx' with proper version number):\r\n\r\n    pip install PyWinCtl-x.x.xx-py3-none-any.whl\r\n\r\nYou may want to add `--force-reinstall` option to be sure you are installing the right dependencies version.\r\n\r\nThen, you can use it on your own projects just importing it:\r\n\r\n    import pywinctl as pwc\r\n\r\n## SUPPORT <a name=\"support\"></a>\r\n\r\nIn case you have a problem, comments or suggestions, do not hesitate to [open issues](https://github.com/Kalmat/PyWinCtl/issues) on the [project homepage](https://github.com/Kalmat/PyWinCtl)\r\n\r\n## USING THIS CODE <a name=\"using\"></a>\r\n\r\nIf you want to use this code or contribute, you can either:\r\n\r\n* Create a fork of the [repository](https://github.com/Kalmat/PyWinCtl), or \r\n* [Download the repository](https://github.com/Kalmat/PyWinCtl/archive/refs/heads/master.zip), uncompress, and open it on your IDE of choice (e.g. PyCharm)\r\n\r\nBe sure you install all dependencies described on \"requirements.txt\" by using pip\r\n\r\n## TEST <a name=\"test\"></a>\r\n\r\nTo test this module on your own system, cd to \"tests\" folder and run:\r\n\r\n    python3 test_pywinctl.py\r\n\r\nMacOSNSWindow class and methods can be tested by running this, also on \"tests\" folder:\r\n\r\n    python3 test_MacNSWindow.py\r\n",
    "bugtrack_url": null,
    "license": "BSD 3",
    "summary": "Cross-Platform toolkit to get info on and control windows on screen",
    "version": "0.3",
    "project_urls": {
        "Homepage": "https://github.com/Kalmat/PyWinCtl"
    },
    "split_keywords": [
        "gui",
        "window",
        "control",
        "menu",
        "title",
        "name",
        "geometry",
        "size",
        "position",
        "move",
        "resize",
        "minimize",
        "maximize",
        "restore",
        "hide",
        "show",
        "activate",
        "raise",
        "lower",
        "close",
        "screen-size",
        "mouse-position"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38cadff69bf0aa18b88e8ec470a14c972bc765d140db247c76a5f8905726af17",
                "md5": "e25a67ebfd5e9c1898eb8c08fcd5596a",
                "sha256": "3603981c87b0c64987e7be857d89450f98792b01f49006a17dac758e11141dd7"
            },
            "downloads": -1,
            "filename": "PyWinCtl-0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e25a67ebfd5e9c1898eb8c08fcd5596a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 101690,
            "upload_time": "2023-09-20T10:56:53",
            "upload_time_iso_8601": "2023-09-20T10:56:53.780962Z",
            "url": "https://files.pythonhosted.org/packages/38/ca/dff69bf0aa18b88e8ec470a14c972bc765d140db247c76a5f8905726af17/PyWinCtl-0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-20 10:56:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Kalmat",
    "github_project": "PyWinCtl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pywinctl"
}
        
Elapsed time: 0.16397s