# pyOpenRPA
Powerfull OpenSource RPA tool for business (based on python 3). Best perfomance and absolutely free!
# Donate
pyOpenRPA is absolutely non-commercial project. [If this project is important you can donate some money for futher development ](https://money.yandex.ru/to/4100115560661986 )
## Content
In wiki you can find:
- [About OpenRPA, library dependencies and licensing ](Wiki/01.-About-OpenRPA,-library-dependencies-and-licensing.md )
- [Architecture (Studio, Robot, Orchestrator) ](Wiki/02.-Architecture-(Studio,-Robot,-Orchestrator ).md)
- [How to install (system requirements) ](Wiki/03.-How-to-install-(system-requirements ).md)
- [Tool Studio: How to use ](Wiki/04.1.-Tool-Studio.-How-to-use.md )
- [Tool Robot: How to use ](Wiki/04.2.-Tool-Robot.-How-to-use.md )
- Tool Orchestrator: How to use
- [Theory & practice: Web app access (Chrome, Firefox, Opera) ](Wiki/05.1.-Theory-&-practice.-Web-app-access-(Chrome,-Firefox,-Opera ).md)
- [Theory & practice: Desktop app UI access (win32 and UI automation dlls) ](Wiki/05.2.-Theory-&-practice.-Desktop-app-UI-access-(win32-and-UI-automation-dlls ).md)
- Theory & practice: Keyboard & mouse manipulation
- Theory & practice: Screen capture & image recognition
# How to run
Studio
Double click to Studio\StudioRun_32.cmd or Studio\StudioRun_64.cmd
# Robot how to debug
Robot\PythonDebug_64.cmd
import RobotConnector
RobotConnector.ActivityRun(
{
ModuleName: < "UIDesktop"|..., str>,
ActivityName: < Function or procedure name in module , str > ,
ArgumentList: [< Argument 1 , any type > , ...] - optional,
ArgumentDict: {< Argument 1 name , str > :< Argument 1 value , any type > , ...} - optional
}
)
OR
from pyOpenRPA.Robot import UIDesktop
UIDesktop.< ActivityName > (< args > )
# Robot example script:
Robot\Examples\GetFolderList\Python_32_Script_Run.cmd
# Python 32 bit
Resources\WPy32-3720\python-3.7.2\python.exe
# Python 64 bit
Resources\WPy64-3720\python-3.7.2.amd64\python.exe
# Module UIDesktop activity List:
############################
Новая версия
############################
Получить список элементов, который удовлетворяет условиям через расширенный движок поиска
[
{
"index":< index in parent ui object > ,
"depth_start" - search start depth (default is 1)
"depth_end" - search stop depth (по умолчанию 1)
"class_name" - class name attribute for search in ui objects
"title" - title attribute of the ui object
"rich_text" - attribute os the ui object rich_text
}
]
#Dependencies
* Python 3 x32 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
* Python 3 x64 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
* pywinauto (Windows GUI automation)
* Semantic UI CSS framework
* JsRender by https://www.jsviews.com (switch to Handlebars)
* Handlebars
Created by Ivan Maslov (Russia)