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.
62 lines
2.5 KiB
62 lines
2.5 KiB
import logging
|
|
import datetime
|
|
from pyOpenRPA.Robot import OrchestratorConnector
|
|
#Robot settings
|
|
def Settings():
|
|
import os
|
|
mDict = {
|
|
"Logger": logging.getLogger("Robot"),
|
|
"Storage": {
|
|
"Robot_R01_help": "Robot data storage in orchestrator env",
|
|
"Robot_R01": {}
|
|
},
|
|
"ProcessBitness": {
|
|
"Python32FullPath": None, #Set from user: "..\\Resources\\WPy32-3720\\python-3.7.2\\OpenRPARobotGUIx32.exe"
|
|
"Python64FullPath": None, #Set from user
|
|
"Python32ProcessName": "OpenRPAUIDesktopX32.exe", #Config set once
|
|
"Python64ProcessName": "OpenRPAUIDesktopX64.exe" #Config set once
|
|
},
|
|
"OrchestratorConnector": {
|
|
#Fill below
|
|
}
|
|
}
|
|
######################
|
|
#OrchestratorConnector
|
|
######################
|
|
mDict["OrchestratorConnector"]={
|
|
"IntervalDataSendResetAsync": [
|
|
{
|
|
"Interval": 2,
|
|
"RobotStorage": mGlobal["Storage"],
|
|
"RobotStorageKey": "R01_OrchestratorToRobot",
|
|
"RobotResetValue": {"Test": "Test"},
|
|
"OrchestratorKeyList": ["Storage", "R01_OrchestratorToRobot"],
|
|
"OrchestratorProtocol": "http",
|
|
"OrchestratorHost": "localhost",
|
|
"OrchestratorPort": 8081,
|
|
"OrchestratorAuthToken": "1992-04-03-0643-ru-b4ff-openrpa52zzz"
|
|
}
|
|
]
|
|
}
|
|
#Turn off many warnings from orchestrator connector logger
|
|
OrchestratorConnector.LoggerSetLevelError()
|
|
#Run OrchestratorConnector initialization
|
|
OrchestratorConnector.ConfigurationInit(mDict["OrchestratorConnector"])
|
|
#########################
|
|
#Создать файл логирования
|
|
# add filemode="w" to overwrite
|
|
if not os.path.exists("Reports"):
|
|
os.makedirs("Reports")
|
|
##########################
|
|
#Подготовка логгера Robot
|
|
#########################
|
|
mRobotLogger=mDict["Logger"]
|
|
mRobotLogger.setLevel(logging.INFO)
|
|
# create the logging file handler
|
|
mRobotLoggerFH = logging.FileHandler("Reports\ReportRobot_"+datetime.datetime.now().strftime("%Y_%m_%d")+".log")
|
|
mRobotLoggerFormatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
|
mRobotLoggerFH.setFormatter(mRobotLoggerFormatter)
|
|
# add handler to logger object
|
|
mRobotLogger.addHandler(mRobotLoggerFH)
|
|
############################################
|
|
return mDict |