Metadata-Version: 2.1
Name: aai-engine
Version: 0.0.17
Summary: Ad Astra Industries RPA engine
Home-page: https://github.com/pypa/sampleproject
Author: Toto De Brant
Author-email: toto@adastraindustries.com
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# AAI Engine

The AAI Engine is a computer vision based automation python library, enabling easy desktop automation with legacy applications, citrix environments, webapps and regualar desktop apps.

## Installation
### Local
```python -m pip install -e c:\<>\<>\aai_engine```

or if that does not work (permission issue):

```python3 -m pip install --no-build-isolation -e /media/toto/Samsung_T5/AdAstraIndustries/aai_engine```

If on macos with an m1, create a conda environment to be able to use opencv.

brew install miniforge
conda init zsh
conda create -n aai python=3.8.6
conda activate aai
conda install -c conda-forge opencv


## Usage
TODO: fill with example paths
Make sure there is an img/ folder in the spec
### Take a screenshot
```python ./take_screenshot.py '/Users/toto/Documents/dev/aai_engine_example_app/rpa_challenge_1'```

### Edit a screenshot
```python ./take_screenshot.py '/Users/toto/Documents/dev/aai_engine_example_app/rpa_challenge_1' '/Users/toto/Documents/dev/aai_engine_example_app/rpa_challenge_1/img/last_name.png'```
