parent
cf12ffc663
commit
3f6183f268
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.uidesktop:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
2. UIDesktop
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -1,5 +1,7 @@
|
|||||||
|
.. _module.robot.uiweb:
|
||||||
|
|
||||||
####################################
|
####################################
|
||||||
2. Функции
|
3. UIWeb
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
Here you can find the functions description for interaction with desktop GUI applications
|
Here you can find the functions description for interaction with desktop GUI applications
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.keyboard:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
4. Keyboard
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.clipboard:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
5. Clipboard
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.mouse:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
6. Mouse
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.image:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
7. Image
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -1,5 +1,5 @@
|
|||||||
####################################
|
####################################
|
||||||
3. Как использовать?
|
8. Как использовать?
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
The Robot tool is the main module for production process automation. It has no graphic/console interface. All low-level actions to OS are perfoming by the Robot tool in pyOpenRPA.
|
The Robot tool is the main module for production process automation. It has no graphic/console interface. All low-level actions to OS are perfoming by the Robot tool in pyOpenRPA.
|
@ -1,5 +1,5 @@
|
|||||||
####################################
|
####################################
|
||||||
4. Зависимости
|
9. Зависимости
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
Python 3 x32 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
|
Python 3 x32 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.uidesktop:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
2. UIDesktop
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.uiweb:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
3. UIWeb
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.keyboard:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
4. Keyboard
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.clipboard:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
5. Clipboard
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.mouse:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
6. Mouse
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -0,0 +1,38 @@
|
|||||||
|
.. _module.robot.image:
|
||||||
|
|
||||||
|
####################################
|
||||||
|
7. Image
|
||||||
|
####################################
|
||||||
|
|
||||||
|
Here you can find the functions description for interaction with desktop GUI applications
|
||||||
|
|
||||||
|
How to use both x32 and x64 python processes (it can be helpfully, if another app GUI is on another bitness than your app)
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pyOpenRPA.Robot import UIDesktop
|
||||||
|
#Section for robot init
|
||||||
|
lPyOpenRPA_SettingsDict = {
|
||||||
|
"Python32FullPath": "..\\Resources\\WPy32-3720\\python-3.7.2\\python.exe", #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
||||||
|
"Python64FullPath": "..\\Resources\\WPy64-3720\\python-3.7.2.amd64\\python.exe", #Set from user
|
||||||
|
"Python32ProcessName": "pyOpenRPA_UIDesktopX32.exe", #Config set once
|
||||||
|
"Python64ProcessName": "pyOpenRPA_UIDesktopX64.exe" #Config set once
|
||||||
|
}
|
||||||
|
# Init the pyOpenRPA configuration
|
||||||
|
UIDesktop.Utils.ProcessBitness.SettingsInit(lPyOpenRPA_SettingsDict)
|
||||||
|
# Now you can use pyOpenRPA with both bitness.
|
||||||
|
|
||||||
|
|
||||||
|
.. automodule:: pyOpenRPA.Robot.UIDesktop
|
||||||
|
:members:
|
||||||
|
:autosummary:
|
||||||
|
|
||||||
|
|
||||||
|
**********
|
||||||
|
References
|
||||||
|
**********
|
||||||
|
|
||||||
|
`reStructuredText`_
|
||||||
|
|
||||||
|
.. target-notes::
|
||||||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|
@ -1,5 +1,5 @@
|
|||||||
####################################
|
####################################
|
||||||
3. Как использовать?
|
8. Как использовать?
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
The Robot tool is the main module for production process automation. It has no graphic/console interface. All low-level actions to OS are perfoming by the Robot tool in pyOpenRPA.
|
The Robot tool is the main module for production process automation. It has no graphic/console interface. All low-level actions to OS are perfoming by the Robot tool in pyOpenRPA.
|
@ -1,5 +1,5 @@
|
|||||||
####################################
|
####################################
|
||||||
4. Зависимости
|
9. Зависимости
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
Python 3 x32 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
|
Python 3 x32 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
|
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
# 3. Как использовать?
|
# 8. Как использовать?
|
||||||
|
|
||||||
The Robot tool is the main module for production process automation. It has no graphic/console interface. All low-level actions to OS are perfoming by the Robot tool in pyOpenRPA.
|
The Robot tool is the main module for production process automation. It has no graphic/console interface. All low-level actions to OS are perfoming by the Robot tool in pyOpenRPA.
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
# 4. Зависимости
|
# 9. Зависимости
|
||||||
|
|
||||||
Python 3 x32 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
|
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]
|
Python 3 x64 [psutil, pywinauto, wmi, PIL, keyboard, pyautogui, win32api (pywin32), selenium, openCV, tesseract, requests, lxml, PyMuPDF]
|
Loading…
Reference in new issue