https://github.com/codigo100cera/rpapy
RPAPY is a open source easy tool for automating boring stuffs on any screen with robotframework, pyautogui, pywinauto and others.
https://github.com/codigo100cera/rpapy
automations robotframework rpa tools
Last synced: 4 months ago
JSON representation
RPAPY is a open source easy tool for automating boring stuffs on any screen with robotframework, pyautogui, pywinauto and others.
- Host: GitHub
- URL: https://github.com/codigo100cera/rpapy
- Owner: codigo100cera
- License: mit
- Created: 2020-12-14T02:35:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-03T19:17:00.000Z (about 1 year ago)
- Last Synced: 2024-09-26T20:53:09.239Z (9 months ago)
- Topics: automations, robotframework, rpa, tools
- Language: Python
- Homepage:
- Size: 1.02 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# RPAPY - Open Source Tool for Robotic Process Automatition
[Medium](https://medium.com/@codigo100cera) | [Linkedin](https://www.linkedin.com/in/mcsilva-csc/) | [Youtube](https://www.youtube.com/channel/UCbrw7-reRWpQD1JBubCl4QQ?view_as=subscriber) | [Telegram](https://t.me/joinchat/C_ECNVWoSae_ebzcjfM33w)__RPAPY__ is a open source easy tool for automating boring stuffs on any screen with robotframework, pyautogui, pywinauto and others.
_"Creating __automations__ for __GUI__ has never been more __fun__ than now."_

## Get started
### Windows
The easiest way to install RPAPY is by using __pip install__
- Download and install [Python >=3.10, <3.13 ](https://www.python.org)
- Install the latest version RPAPY on your machine:
```
pip install rpapy
```However, it is advisable to use a virtual environment for an isolated installation of all requirements, this avoids conflicts with the python interpreter installed on the host machine:
```
pip install virtualenv
mkdir
cd
virtualenv create rpapy-venv
activate rpapy-venv
pip install rpapy
```The construction of the project structure is accomplished by executing the following command in the terminal:
```
rpapy
```The hotkeys menu to be used will be displayed after executing the above command.
```
***TURN ON AGENTPY***
****************HOTKEYS MENU****************
++P: Capture image or ocr
++R: Change file name
++B: Switch between backends
+I: Inspect UI element
++C: View current configuration
++E: Load sample implementation
++X: Turn off agent
********************************************
```To run the sample implementation, perform the following steps:
- Configure the .env file in the root directory of the project.
```
###VARIAVEIS DE AMBIENTE PYTHON-DOTENV#RESOURCES_DIR_NAME=resources
#RESOURCES_KEYWORDS_FILE_NAME=keywords.robot
#IMAGES_DIR_NAME=images
#IMAGES_ERROR_DIR_NAME=images_error
#TASKS_DIR_NAME=tasks
#MAX_WAIT_MANUTENCAO=5
#VERIFICAR_MODO=True
#FAILSAFE_OFF=True
#ARQUIVO_TEMPORARIO_ATIVO=False
#NOME_ARQUIVO_TEMPORARIO=temp.txt
```- Run the following command on the terminal:
```
robot -d log tasks
```- In the dialog box, which will be displayed, choose the option YES and make changes to the images as required by RPAPY.
- After the update cycle of the UI images in which the actions will be performed by the robot, interrupt the execution.
- Repet the command on the terminal:
```
robot -d log tasks
```- select the option no in the dialog box to choose the maintenance mode off.
## Credits
Under the hood, RPAPY is built on some of the greatest open source libraries. Within RPAPY, the following libraries are currently included:
- [Keyring](https://pypi.org/project/keyring/)
- [Mouse](https://github.com/boppreh/mouse)
- [Numpy](https://pypi.org/project/numpy/)
- [OpencvPython](https://pypi.org/project/opencv-python/)
- [Pillow](https://pillow.readthedocs.io/en/stable/)
- [PyAutoGUI](https://github.com/asweigart/pyautogui)
- [Pynput](https://pypi.org/project/pynput/)
- [Pyperclip](https://pypi.org/project/pyperclip/)
- [PySide6](https://pypi.org/project/PySide2/)
- [PySimpleGUI](https://pypi.org/project/PySimpleGUI/)
- [Pytesseract](https://pypi.org/project/pytesseract/)
- [PythonDotenv](https://pypi.org/project/python-dotenv/)
- [Pwinauto](https://pypi.org/project/pywinauto/)
- [RobotFramework](https://pypi.org/project/robotframework/)