Metadata-Version: 2.1
Name: AutoGUIX
Version: 0.0.1
Summary: AutoGUIX is the extended version of PyAutoGUI. Few features are added with the help of PyGetWindow and PyAutoGUI.
Home-page: https://github.com/4akhilkumar/autoguix
Author: Sai Akhil Kumar Reddy N
Author-email: 4akhilkumar@gmail.com
License: BSD
Keywords: gui automation test testing keyboard click press keystroke control
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

AutoGUIX
========

AutoGUIX is an extended or improved version of PyAutoGUI. Currently, it is only available for Windows Platform.

`pip install pyautogui`

`pip install autoguix`

It uses the PyAutoGUI library. Some of the features of AutoGUIX are listed below:

* You can execute the actions based on the window title till the window is active.
* You can get control over your commands which you want to execute.
* You can send a SIGINT signal in puTTY.
* You can close the applications.
* You can get the window application coordinates.
* You can open the applications via RUN Dialog Box.

There above features are not available in PyAutoGUI. You can use AutoGUIX for automating the tasks in Windows Platform.

Example Usage
=============

```python
from AutoGUIX import AUTOGUIX as agx

# Open the Notepad application using RUN Dialog Box
agx.run_app(app_command = 'notepad', app_window_name_to_wait = 'Untitled - Notepad')

# Type the text in Notepad application
# The 'enter_command' function will also used to type the text in the application
agx.enter_command(command = 'Hello World', execute_command = False)

# Get the Notepad application coordinates
agx.get_position(window_name = 'Untitled - Notepad')

# Close the Notepad application
agx.close_app(window_name = 'Untitled - Notepad', executable_name = 'notepad.exe')

```
