4. Как использовать?¶
Как запустить?¶
Хотите выполнить запуск Оркестратора?
Для этого достаточно (выбрать одно):
запустить .cmd файл, расположенный в папке pyOpenRPA по адресу: OrchestratorpyOpenRPA.Orchestrator_x64.cmd
в свой .py скрипт добавить следующий код (см. ниже)
if __name__ == "__main__": # New init way - allow run as module -m PyOpenRPA.Orchestrator
from pyOpenRPA import Orchestrator # Import orchestrator main
gSettings = SettingsTemplate.Create(inModeStr="BASIC") # Create GSettings with basic configuration - no more config is available from the box - you can create own
# Call the orchestrator main def
Orchestrator.Orchestrator(inGSettings=gSettings)
Параметры настройки¶
Также вы можете выполнить более тонкую настройку параметров Оркестратора. Ниже пример такой настройки: