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.
40 lines
2.1 KiB
40 lines
2.1 KiB
from pyOpenRPA.Tools.RobotRDPActive import Scheduler
|
|
inConfiguration={
|
|
"ActivityTimeCheckLoopSeconds":5, #Количество секунд, между циклами проверки действий
|
|
"ActivityTimeList": [
|
|
{
|
|
"TimeHH:MM": "22:23", #Time [HH:MM] to trigger activity
|
|
"WeekdayList": [1,2,3,4,5,6,7], #List of the weekday index when activity is applicable, Default [1,2,3,4,5,6,7]
|
|
"Activity":{
|
|
"ModulePath": "Session\\SessionDefs.py", # "Session\\SessionDefs.py"
|
|
"DefName":"test", # Function name
|
|
"ArgList":[1,2,3], # Args list
|
|
"ArgDict":{"ttt":1,"222":2,"dsd":3} # Args dictionary
|
|
}
|
|
},
|
|
{
|
|
"TimeHH:MM": "14:17", #Time [HH:MM] to trigger activity
|
|
"WeekdayList": [1, 2, 3], #List of the weekday index when activity is applicable, Default [1,2,3,4,5,6,7]
|
|
"Activity":{
|
|
"ModulePath": "Session\\SessionDefs.py", # "Session\\SessionDefs.py"
|
|
"DefName":"test", # Function name
|
|
"ArgList":[1,2,3], # Args list
|
|
"ArgDict":{"ttt":1,"222":2,"dsd":3} # Args dictionary
|
|
}
|
|
},
|
|
{
|
|
"TimeHH:MMStart": "12:40", #Time [HH:MM] to trigger activity
|
|
"TimeHH:MMStop": "14:36",
|
|
"ActivityIntervalSeconds": 2,
|
|
"WeekdayList": [1, 2, 3, 4, 5, 6, 7], #List of the weekday index when activity is applicable, Default [1,2,3,4,5,6,7]
|
|
"Activity":{
|
|
"ModulePath": "Session\\SessionDefs.py", # "Session\\SessionDefs.py"
|
|
"DefName":"test", # Function name
|
|
"ArgList":[1,2,3], # Args list
|
|
"ArgDict":{"ttt":1,"222":2,"dsd":3} # Args dictionary
|
|
}
|
|
}
|
|
]
|
|
}
|
|
lT = Scheduler.Scheduler(inConfiguration)
|