BotCity Maestro SDK is available as a Python package on PyPI.
You can install it with:
pip install botcity-maestro-sdk
BotCity Maestro SDK is available as a Java dependency in the Nexus repository.
The dependency will be installed automatically after being added to your pom.xml:
<repositories><repository><id>nexus-botcity-public</id><url>https://devtools.botcity.dev:8081/repository/botcity-public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories><dependencies><!-- Your other dependencies --><dependency><groupId>dev.botcity</groupId><artifactId>maestro-sdk</artifactId><version>2.0.3</version></dependency></dependencies>
BotCity Maestro SDK is available as Javascript Package on NPM.
You can install it with:
npm i @botcity/botcity-maestro-sdk
BotCity Maestro SDK is available as Javascript Package on NPM.
You can install it with:
npm i @botcity/botcity-maestro-sdk
BotCity Maestro SDK is available as a C# package on NuGet.
Another way to authenticate an instance of the Maestro SDK is through the arguments passed by the Runner when executing a task.
This way, when we run our automation through Runner, we will already have an authenticated instance of the SDK in the code.
Tip
If you are using BotCity project templates to develop automation, you will probably already have this code snippet included in the project.
# Getting the arguments passed by Runnermaestro=BotMaestroSDK.from_sys_args()
Info
By default, the BotExecution object is already configured in the BotCity Java project template.
publicvoidaction(BotExecutionbotExecution){try{// Instantiating the Maestro SDK// The BotExecution object contains the information that is passed by the RunnerBotMaestroSDKmaestro=newBotMaestroSDK();maestro.login(botExecution);...
// Not yet implemented
// Not yet implemented
// Getting the arguments passed by RunnerBotMaestroSDKmaestro=BotMaestroSDK.FromSysArgs();
After instantiating the Maestro SDK, we can obtain the reference of the current task being executed by Runner.
This way, we can more easily access information about this execution during the code, such as the task ID and parameters.
# Instantiating the Maestro SDKmaestro=BotMaestroSDK.from_sys_args()# Getting the details of the current task being executedexecution=maestro.get_execution()# Information about the task being executedprint(f"Task ID is: {execution.task_id}")print(f"Task Parameters are: {execution.parameters}")
Info
By default, the BotExecution object is already configured in the BotCity Java project template.
publicvoidaction(BotExecutionbotExecution){try{// Instantiating the Maestro SDK// The BotExecution object contains the information that is passed by the RunnerBotMaestroSDKmaestro=newBotMaestroSDK();maestro.login(botExecution);// Information about the task being executedSystem.out.println(botExecution.getTaskId());...
// Getting the arguments passed by Runnerconstargs=process.argv.slice(2)const[server,taskid,token]=args// Instantiating the Maestro SDKconstmaestro=newBotMaestroSdk()maestro.login("https://developers.botcity.dev","<LOGIN>","<KEY>")// Getting the details of the current task being executedconstexecutionTask=awaitmaestro.getTask(taskid)
// Getting the arguments passed by Runnerconstargs=process.argv.slice(2)const[server,taskid,token]=args// Instantiating the Maestro SDKconstmaestro:BotMaestroSdk=newBotMaestroSdk()maestro.login("https://developers.botcity.dev","<LOGIN>","<KEY>")// Getting the details of the current task being executedconstexecutionTask:Task=awaitmaestro.getTask(taskid)
usingDev.BotCity.MaestroSdk.Model.Execution;// Getting the arguments passed by RunnerBotMaestroSDKmaestro=BotMaestroSDK.FromSysArgs();// Getting the details of the current task being executedExecutionexecution=awaitmaestro.GetExecutionAsync(maestro.GetTaskId());// Information about the task being executedConsole.WriteLine("Task ID is: "+execution.TaskId);Console.WriteLine("Task Parameters are: "+string.Join(", ",execution.Parameters));