diff --git a/Utils/GITBranch_devIvan_master.cmd b/Git/Branch_devIvan_master.cmd old mode 100755 new mode 100644 similarity index 100% rename from Utils/GITBranch_devIvan_master.cmd rename to Git/Branch_devIvan_master.cmd diff --git a/GITClean.cmd b/Git/Clean.cmd old mode 100755 new mode 100644 similarity index 100% rename from GITClean.cmd rename to Git/Clean.cmd diff --git a/GITPull.cmd b/Git/Pull.cmd old mode 100755 new mode 100644 similarity index 100% rename from GITPull.cmd rename to Git/Pull.cmd diff --git a/Utils/GITRevisionLastUpdate.cmd b/Git/RevisionLastUpdate.cmd old mode 100755 new mode 100644 similarity index 100% rename from Utils/GITRevisionLastUpdate.cmd rename to Git/RevisionLastUpdate.cmd diff --git a/Resources/PyPackages/jupyter_contrib_core-0.3.3-py2.py3-none-any.whl b/Resources/PyPackages/jupyter_contrib_core-0.3.3-py2.py3-none-any.whl new file mode 100644 index 00000000..755dc617 Binary files /dev/null and b/Resources/PyPackages/jupyter_contrib_core-0.3.3-py2.py3-none-any.whl differ diff --git a/Resources/PyPackages/jupyter_core-4.6.3-py2.py3-none-any.whl b/Resources/PyPackages/jupyter_core-4.6.3-py2.py3-none-any.whl new file mode 100644 index 00000000..7c33bd9f Binary files /dev/null and b/Resources/PyPackages/jupyter_core-4.6.3-py2.py3-none-any.whl differ diff --git a/Robot/Quickstart/init-jupyter-nbextension.cmd b/Robot/Quickstart/init-jupyter-nbextension.cmd new file mode 100644 index 00000000..9c77902c --- /dev/null +++ b/Robot/Quickstart/init-jupyter-nbextension.cmd @@ -0,0 +1,8 @@ +init-python-env.cmd +pip uninstall jupyter-core +pip uninstall jupyter-contrib-core +pip install "..\..\Resources\PyPackages\jupyter_core-4.6.3-py2.py3-none-any.whl" +pip install "..\..\Resources\PyPackages\jupyter_contrib_core-0.3.3-py2.py3-none-any.whl" +jupyter contrib nbextension install --user +jupyter nbextension enable Hinterland +jupyter nbextension enable highlighter \ No newline at end of file diff --git a/Robot/Quickstart/init-python-env.cmd b/Robot/Quickstart/init-python-env.cmd new file mode 100644 index 00000000..bfd7b7d3 --- /dev/null +++ b/Robot/Quickstart/init-python-env.cmd @@ -0,0 +1,7 @@ +chcp 65001 +SET CD_PREV = %cd% +cd /d "%~dp0..\..\Resources\WPy64-3720\python-3.7.2.amd64" +set PATH=%cd%;%cd%\Scripts;%PATH% +cd %CD_PREV% +echo %~dp2 +cmd \ No newline at end of file diff --git a/Utils/Jupyter-notebooks/Keyboard.ipynb b/Robot/Quickstart/robot.ipynb old mode 100755 new mode 100644 similarity index 100% rename from Utils/Jupyter-notebooks/Keyboard.ipynb rename to Robot/Quickstart/robot.ipynb diff --git a/Utils/Jupyter-notebooks/start.cmd b/Robot/Quickstart/start-jupyter.cmd old mode 100755 new mode 100644 similarity index 100% rename from Utils/Jupyter-notebooks/start.cmd rename to Robot/Quickstart/start-jupyter.cmd diff --git a/Utils/Jupyter-notebooks/start.sh b/Robot/Quickstart/start-jupyter.sh old mode 100755 new mode 100644 similarity index 100% rename from Utils/Jupyter-notebooks/start.sh rename to Robot/Quickstart/start-jupyter.sh diff --git a/Utils/AutoLogon(ProtectedPassword).zip b/Tools/AutoLogon(ProtectedPassword).zip similarity index 100% rename from Utils/AutoLogon(ProtectedPassword).zip rename to Tools/AutoLogon(ProtectedPassword).zip diff --git a/Utils/Configure/ubuntu-kde/add_robot.sh b/Tools/Configure/ubuntu-kde/add_robot.sh similarity index 100% rename from Utils/Configure/ubuntu-kde/add_robot.sh rename to Tools/Configure/ubuntu-kde/add_robot.sh diff --git a/Utils/Configure/ubuntu-kde/configure.sh b/Tools/Configure/ubuntu-kde/configure.sh similarity index 100% rename from Utils/Configure/ubuntu-kde/configure.sh rename to Tools/Configure/ubuntu-kde/configure.sh diff --git a/Utils/Configure/ubuntu-kde/sshd_config b/Tools/Configure/ubuntu-kde/sshd_config similarity index 100% rename from Utils/Configure/ubuntu-kde/sshd_config rename to Tools/Configure/ubuntu-kde/sshd_config diff --git a/Utils/Jupyter-notebooks/Clipboard.ipynb b/Tools/Jupyter-notebooks/Clipboard.ipynb similarity index 100% rename from Utils/Jupyter-notebooks/Clipboard.ipynb rename to Tools/Jupyter-notebooks/Clipboard.ipynb diff --git a/Tools/Jupyter-notebooks/Keyboard.ipynb b/Tools/Jupyter-notebooks/Keyboard.ipynb new file mode 100755 index 00000000..a34f75bd --- /dev/null +++ b/Tools/Jupyter-notebooks/Keyboard.ipynb @@ -0,0 +1,470 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Тест функций pyOpenRPA.Robot.Keyboard" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "import os\n", + "#sys.path.insert(0, os.path.abspath(\"..\\\\..\\\\Sources\")) # FOR WINDOWS\n", + "sys.path.insert(0, os.path.abspath(\"../../Sources\")) # FOR LINUX\n", + "import time\n", + "from pyOpenRPA.Robot import Keyboard" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "done\n" + ] + } + ], + "source": [ + "\n", + "time.sleep(3)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_CTRL_LEFT,Keyboard.KEY_ENG_A)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_CTRL_LEFT,Keyboard.KEY_ENG_C)\n", + "print(\"done\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'ei' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [5]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 5\u001b[0m Keyboard\u001b[38;5;241m.\u001b[39mSend(Keyboard\u001b[38;5;241m.\u001b[39mKEY_ENG_E)\n\u001b[1;32m 6\u001b[0m Keyboard\u001b[38;5;241m.\u001b[39mSend(Keyboard\u001b[38;5;241m.\u001b[39mKEY_RUS_Ш)\n\u001b[0;32m----> 7\u001b[0m \u001b[43mei\u001b[49m\n", + "\u001b[0;31mNameError\u001b[0m: name 'ei' is not defined" + ] + } + ], + "source": [ + "# Keyboard: Взаимодействие с клавиатурой\n", + "from pyOpenRPA.Robot import Keyboard\n", + "import time\n", + "time.sleep(2)\n", + "Keyboard.Send(Keyboard.KEY_ENG_E)\n", + "Keyboard.Send(Keyboard.KEY_RUS_Ш)\n", + "ei" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "time.sleep(2)\n", + "Keyboard.press(Keyboard.KEY_HOT_SHIFT_LEFT)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "time.sleep(2)\n", + "Keyboard.HotkeyCtrlA_CtrlC()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "time.sleep(2)\n", + "Keyboard.send(Keyboard.KEY_HOT_CONTEXT_MENU)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "Keyboard.wait(Keyboard.KEY_ENG_B)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "done\n" + ] + } + ], + "source": [ + "\n", + "time.sleep(1)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_CTRL_LEFT,Keyboard.KEY_ENG_A)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_CTRL_LEFT,Keyboard.KEY_ENG_C)\n", + "print(\"done\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "time.sleep(3)\n", + "\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.Write(\"cmd\")\n", + "Keyboard.Send(Keyboard.KEY_HOT_ENTER, inWaitAfterSecFloat=0.6)\n", + "Keyboard.Write(\"echo %time%\")\n", + "Keyboard.Send(Keyboard.KEY_HOT_ENTER)\n", + "Keyboard.Write(\"Привет мир!\")\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_CTRL_LEFT, Keyboard.KEY_ENG_A, inWaitAfterSecFloat=0.6)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_CTRL_LEFT, Keyboard.KEY_ENG_C, inWaitAfterSecFloat=0.6)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "57435" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Keyboard.KEY_HOT_WIN_LEFT" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "29" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Keyboard.KEY_HOT_CTRL_LEFT" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(19,)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Keyboard.key_to_scan_codes(\"win\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "Keyboard.HotkeyCombination(57435,19)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)\n", + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "Keyboard.HotkeyCombination(Keyboard.KEY_HOT_WIN_LEFT,Keyboard.KEY_ENG_R)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "time.sleep(3)\n", + "Keyboard.is_pressed(Keyboard.KEY_HOT_CTRL_LEFT)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "TT=9\n", + "def k(hh=TT):\n", + " print(hh)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9\n" + ] + } + ], + "source": [ + "k()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"KEY_RUS_А\" in dir(Keyboard)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "module 'pyOpenRPA.Robot.Keyboard' has no attribute 'KEY_RUS_'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [6]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;43mgetattr\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mKeyboard\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKEY_RUS_\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "\u001b[0;31mAttributeError\u001b[0m: module 'pyOpenRPA.Robot.Keyboard' has no attribute 'KEY_RUS_'" + ] + } + ], + "source": [ + "getattr(Keyboard, \"KEY_RUS_\")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "time.sleep(3)\n", + "Keyboard.Write(Keyboard.KEY_ENG_B, inDelayFloat=0.001)b" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "HelloПривет!йцукенгшщзхъфывапролджэячсмитьбю.ёЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ,Hi anybody" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "HelloПривет!йцукенгшщзхъфывапролджэячсмитьбю.ёЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ,Hi anybody" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.5" + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/Utils/Jupyter-notebooks/Mouse.ipynb b/Tools/Jupyter-notebooks/Mouse.ipynb similarity index 100% rename from Utils/Jupyter-notebooks/Mouse.ipynb rename to Tools/Jupyter-notebooks/Mouse.ipynb diff --git a/Utils/Jupyter-notebooks/Sandbox.ipynb b/Tools/Jupyter-notebooks/Sandbox.ipynb similarity index 100% rename from Utils/Jupyter-notebooks/Sandbox.ipynb rename to Tools/Jupyter-notebooks/Sandbox.ipynb diff --git a/Utils/Jupyter-notebooks/Screen.ipynb b/Tools/Jupyter-notebooks/Screen.ipynb similarity index 100% rename from Utils/Jupyter-notebooks/Screen.ipynb rename to Tools/Jupyter-notebooks/Screen.ipynb diff --git a/Utils/Jupyter-notebooks/Untitled.ipynb b/Tools/Jupyter-notebooks/Untitled.ipynb similarity index 100% rename from Utils/Jupyter-notebooks/Untitled.ipynb rename to Tools/Jupyter-notebooks/Untitled.ipynb diff --git a/Utils/Jupyter-notebooks/Web.ipynb b/Tools/Jupyter-notebooks/Web.ipynb similarity index 100% rename from Utils/Jupyter-notebooks/Web.ipynb rename to Tools/Jupyter-notebooks/Web.ipynb diff --git a/Tools/Jupyter-notebooks/init-nbextension.cmd b/Tools/Jupyter-notebooks/init-nbextension.cmd new file mode 100644 index 00000000..9c77902c --- /dev/null +++ b/Tools/Jupyter-notebooks/init-nbextension.cmd @@ -0,0 +1,8 @@ +init-python-env.cmd +pip uninstall jupyter-core +pip uninstall jupyter-contrib-core +pip install "..\..\Resources\PyPackages\jupyter_core-4.6.3-py2.py3-none-any.whl" +pip install "..\..\Resources\PyPackages\jupyter_contrib_core-0.3.3-py2.py3-none-any.whl" +jupyter contrib nbextension install --user +jupyter nbextension enable Hinterland +jupyter nbextension enable highlighter \ No newline at end of file diff --git a/Tools/Jupyter-notebooks/init-python-env.cmd b/Tools/Jupyter-notebooks/init-python-env.cmd new file mode 100644 index 00000000..210b5da7 --- /dev/null +++ b/Tools/Jupyter-notebooks/init-python-env.cmd @@ -0,0 +1,6 @@ +chcp 65001 +CD_PREV = %cd% +cd /d "%~dp0..\..\Resources\WPy64-3720\python-3.7.2.amd64" +set PATH=%cd%;%cd%\Scripts;%PATH% +cd %CD_PREV% +cmd \ No newline at end of file diff --git a/Tools/Jupyter-notebooks/start.cmd b/Tools/Jupyter-notebooks/start.cmd new file mode 100755 index 00000000..28273b84 --- /dev/null +++ b/Tools/Jupyter-notebooks/start.cmd @@ -0,0 +1,4 @@ +chcp 65001 +cd /d "%~dp0..\..\Resources\WPy64-3720\python-3.7.2.amd64" +copy /Y python.exe jupyter-notebook.exe +jupyter-notebook.exe -m notebook --notebook-dir=%~dp0 \ No newline at end of file diff --git a/Tools/Jupyter-notebooks/start.sh b/Tools/Jupyter-notebooks/start.sh new file mode 100755 index 00000000..8765ab70 --- /dev/null +++ b/Tools/Jupyter-notebooks/start.sh @@ -0,0 +1,2 @@ +#!/bin/bash +./../../Resources/LPy64-3105/bin/python3.10 -m notebook --notebook-dir=$PWD diff --git a/Utils/Logout.txt b/Tools/Logout.txt similarity index 100% rename from Utils/Logout.txt rename to Tools/Logout.txt diff --git a/Utils/PythonDebug_64.cmd b/Tools/PythonDebug_64.cmd similarity index 100% rename from Utils/PythonDebug_64.cmd rename to Tools/PythonDebug_64.cmd diff --git a/Utils/RobotDB/AccessUser_ND.py b/Tools/RobotDB/AccessUser_ND.py similarity index 100% rename from Utils/RobotDB/AccessUser_ND.py rename to Tools/RobotDB/AccessUser_ND.py diff --git a/Utils/RobotDB/AccessUser_SuperToken.py b/Tools/RobotDB/AccessUser_SuperToken.py similarity index 100% rename from Utils/RobotDB/AccessUser_SuperToken.py rename to Tools/RobotDB/AccessUser_SuperToken.py diff --git a/Utils/RobotDB/DB.db b/Tools/RobotDB/DB.db similarity index 100% rename from Utils/RobotDB/DB.db rename to Tools/RobotDB/DB.db diff --git a/Utils/RobotDB/DBBlank.db b/Tools/RobotDB/DBBlank.db similarity index 100% rename from Utils/RobotDB/DBBlank.db rename to Tools/RobotDB/DBBlank.db diff --git a/Utils/RobotDB/SettingsExample.py b/Tools/RobotDB/SettingsExample.py similarity index 100% rename from Utils/RobotDB/SettingsExample.py rename to Tools/RobotDB/SettingsExample.py diff --git a/Utils/RobotDB/Test.xlsx b/Tools/RobotDB/Test.xlsx similarity index 100% rename from Utils/RobotDB/Test.xlsx rename to Tools/RobotDB/Test.xlsx diff --git a/Utils/RobotDB/pyOpenRPA.Tools.RobotDB_x64.cmd b/Tools/RobotDB/pyOpenRPA.Tools.RobotDB_x64.cmd similarity index 100% rename from Utils/RobotDB/pyOpenRPA.Tools.RobotDB_x64.cmd rename to Tools/RobotDB/pyOpenRPA.Tools.RobotDB_x64.cmd diff --git a/Utils/RobotLogout.bat b/Tools/RobotLogout.bat similarity index 100% rename from Utils/RobotLogout.bat rename to Tools/RobotLogout.bat diff --git a/Utils/RobotRDPActive/CheckAutoLogon.txt b/Tools/RobotRDPActive/CheckAutoLogon.txt similarity index 100% rename from Utils/RobotRDPActive/CheckAutoLogon.txt rename to Tools/RobotRDPActive/CheckAutoLogon.txt diff --git a/Utils/RobotRDPActive/SettingsRobotRDPActiveExample.py b/Tools/RobotRDPActive/SettingsRobotRDPActiveExample.py similarity index 100% rename from Utils/RobotRDPActive/SettingsRobotRDPActiveExample.py rename to Tools/RobotRDPActive/SettingsRobotRDPActiveExample.py diff --git a/Utils/RobotRDPActive/pyOpenRPA.Tools.RobotRDPActive_x64.cmd b/Tools/RobotRDPActive/pyOpenRPA.Tools.RobotRDPActive_x64.cmd similarity index 100% rename from Utils/RobotRDPActive/pyOpenRPA.Tools.RobotRDPActive_x64.cmd rename to Tools/RobotRDPActive/pyOpenRPA.Tools.RobotRDPActive_x64.cmd diff --git a/Utils/RobotScreenActive/pyOpenRPA.Tools.RobotScreenActive_x64.cmd b/Tools/RobotScreenActive/pyOpenRPA.Tools.RobotScreenActive_x64.cmd similarity index 100% rename from Utils/RobotScreenActive/pyOpenRPA.Tools.RobotScreenActive_x64.cmd rename to Tools/RobotScreenActive/pyOpenRPA.Tools.RobotScreenActive_x64.cmd diff --git a/Utils/RobotScreenSpy/TechScreenSpy.py b/Tools/RobotScreenSpy/TechScreenSpy.py similarity index 100% rename from Utils/RobotScreenSpy/TechScreenSpy.py rename to Tools/RobotScreenSpy/TechScreenSpy.py diff --git a/Utils/RobotScreenSpy/TechScreenSpyPython.cmd b/Tools/RobotScreenSpy/TechScreenSpyPython.cmd similarity index 100% rename from Utils/RobotScreenSpy/TechScreenSpyPython.cmd rename to Tools/RobotScreenSpy/TechScreenSpyPython.cmd diff --git a/Utils/RobotScreenSpy/TechScreenSpyPythonw.cmd b/Tools/RobotScreenSpy/TechScreenSpyPythonw.cmd similarity index 100% rename from Utils/RobotScreenSpy/TechScreenSpyPythonw.cmd rename to Tools/RobotScreenSpy/TechScreenSpyPythonw.cmd diff --git a/Utils/SafeSource/DistrCreate_x64.cmd b/Tools/SafeSource/DistrCreate_x64.cmd similarity index 100% rename from Utils/SafeSource/DistrCreate_x64.cmd rename to Tools/SafeSource/DistrCreate_x64.cmd diff --git a/Utils/SafeSource/pyRobotName_Safe.py b/Tools/SafeSource/pyRobotName_Safe.py similarity index 100% rename from Utils/SafeSource/pyRobotName_Safe.py rename to Tools/SafeSource/pyRobotName_Safe.py diff --git a/Utils/SafeSource/pyRobotName_Safe_x64_Run.cmd b/Tools/SafeSource/pyRobotName_Safe_x64_Run.cmd similarity index 100% rename from Utils/SafeSource/pyRobotName_Safe_x64_Run.cmd rename to Tools/SafeSource/pyRobotName_Safe_x64_Run.cmd diff --git a/Utils/TestSendRequest/Main.py b/Tools/TestSendRequest/Main.py similarity index 100% rename from Utils/TestSendRequest/Main.py rename to Tools/TestSendRequest/Main.py diff --git a/Utils/TestSendRequest/SendRequest.cmd b/Tools/TestSendRequest/SendRequest.cmd similarity index 100% rename from Utils/TestSendRequest/SendRequest.cmd rename to Tools/TestSendRequest/SendRequest.cmd diff --git a/Utils/TestSendRequest/Settings.py b/Tools/TestSendRequest/Settings.py similarity index 100% rename from Utils/TestSendRequest/Settings.py rename to Tools/TestSendRequest/Settings.py diff --git a/Utils/ToolScreenScrapRecognize/Main.py b/Tools/ToolScreenScrapRecognize/Main.py similarity index 100% rename from Utils/ToolScreenScrapRecognize/Main.py rename to Tools/ToolScreenScrapRecognize/Main.py diff --git a/Utils/ToolScreenScrapRecognize/ToolScreenScrapRecognize_x64.cmd b/Tools/ToolScreenScrapRecognize/ToolScreenScrapRecognize_x64.cmd similarity index 100% rename from Utils/ToolScreenScrapRecognize/ToolScreenScrapRecognize_x64.cmd rename to Tools/ToolScreenScrapRecognize/ToolScreenScrapRecognize_x64.cmd diff --git a/Utils/Usage.py b/Tools/Usage.py similarity index 100% rename from Utils/Usage.py rename to Tools/Usage.py diff --git a/Utils/WebTest.py b/Tools/WebTest.py similarity index 100% rename from Utils/WebTest.py rename to Tools/WebTest.py diff --git a/Utils/Jupyter-notebooks/test.txt b/Utils/Jupyter-notebooks/test.txt deleted file mode 100755 index ee123887..00000000 --- a/Utils/Jupyter-notebooks/test.txt +++ /dev/null @@ -1,8 +0,0 @@ - Hello my control panel! - You can use any def from Orchestrator module here in Jinja2 HTML template: - Example: OrchestratorModule.OSCMD(inCMDStr="notepad") - {{Const}} - {% if Const=="ND" %} - YES - IT IS ND - {% endif %} -{% include 'test2.txt' %} \ No newline at end of file diff --git a/Utils/PythonDebug_32.cmd b/Utils/PythonDebug_32.cmd deleted file mode 100755 index 1b4786ad..00000000 --- a/Utils/PythonDebug_32.cmd +++ /dev/null @@ -1,3 +0,0 @@ -cd %~dp0..\Sources -.\..\Resources\WPy32-3720\python-3.7.2\python.exe -pause >nul \ No newline at end of file diff --git a/Utils/pyOpenRPA.Robot_x32.cmd b/Utils/pyOpenRPA.Robot_x32.cmd deleted file mode 100755 index 75f72e99..00000000 --- a/Utils/pyOpenRPA.Robot_x32.cmd +++ /dev/null @@ -1,3 +0,0 @@ -cd %~dp0\..\Sources -.\..\Resources\WPy32-3720\python-3.7.2\python.exe -m pyOpenRPA.Robot -pause >nul \ No newline at end of file