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.
34 lines
748 B
34 lines
748 B
####################################
|
|
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:
|
|
:autosummary:
|
|
|
|
|
|
**********
|
|
References
|
|
**********
|
|
|
|
`Python-sphinx`_
|
|
|
|
.. target-notes::
|
|
.. _`reStructuredText`: http://docutils.sourceforge.net/rst.html
|