You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
730 B
33 lines
730 B
4 years ago
|
####################################
|
||
|
2. Defs
|
||
|
####################################
|
||
|
|
||
|
**************************************************
|
||
|
pyOpenRPA.Orchestrator.__Orchestrator__
|
||
|
**************************************************
|
||
|
|
||
|
.. code-block:: python
|
||
|
|
||
|
# EXAMPLE 1
|
||
|
from pyOpenRPA import Orchestrator
|
||
|
Orchestrator.OSCMD(inCMDStr = "git status", inRunAsyncBool=True)
|
||
|
|
||
|
# EXAMPLE 2
|
||
|
from pyOpenRPA.Orchestrator import __Orchestrator__
|
||
|
__Orchestrator__.OSCMD(inCMDStr = "git status", inRunAsyncBool=True)
|
||
|
|
||
|
|
||
|
|
||
|
.. automodule:: pyOpenRPA.Orchestrator.__Orchestrator__
|
||
|
:members:
|
||
|
|
||
|
|
||
|
**********
|
||
|
References
|
||
|
**********
|
||
|
|
||
|
`Python-sphinx`_
|
||
|
|
||
|
.. target-notes::
|
||
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|