/Uipath-Invoke-Python-guide

Basic Guide how to invoke python code into uipath

Primary LanguagePythonMIT LicenseMIT

Uipath-Invoke-Python

Basic Guide how to invoke python code into uipath

In this example I made a function in python that receives a text read from a pdf as input and performs various regex to retrieve information using key words like Vendor, "tax amount", "Date", etc to register the values in front of it since the pdf files that I'm reading are unsctructured. So inicially my function in python was returning a dictionary((Key)String,(Value) string) after researching and trying out I found out that you can't return lists, dictionaries or arrays. Only simple data types like int or a string. So If you planning to return one of those you will need to parse the dictionary to json in your python function.

So basically you will need to install the python activities in the manage packages image image.

After that go to your activities panel and you should find those

image.

In order to invoke your code youl need to drag it by this order - python scope->load python script->Invoke python Script->Get python object

image

1st Step is using the python scope - You will define the path for python.exe,your version of python, your target, and the working file that your uipath project is.

image

Here it gets tricky, you don't want to run the python version 3.10 or higher, in my case only the 3.7 and 3.8 are possible to run in uipath, so if you want to invoke python code make sure you installed 3.8 or lower otherwise won't work you can check by typing this in the cmd: image By using where python command you can see the path, you will copy the first one and put in the path property of the python scope, select your version and your target and in the working folder you put the folder you are working on and my advice put the .py file in it.

2nd Step - You are going to Load your python script basically you are bringing the function to the uipath

image

In the file you are going to put the path to the .py file something like this "C:\Users\name\Spot\Documents\UiPath\PythonExample\regexScript.py" And then you create a variable to receive the output of the loaded script in my case is regexScript.

3rd Step - Here you are going to Invoke your function where you will pass the inargument in my case the pdf file that was readed I holded in a var called pdfText

Here you will put the name of the function that you wrote image image

And in the properties

The input parameter is type of IEnumerable object, so in my case I use a string that is holded in the var pdfText you have to use the {pdfText}, for astring {"yourstring"}, int {3}, etc. INSTANCE is the python object that was returned by the load script activity in this case regexScript and then create another variable to hold the output in this case is regexOuput-

image

Final step :D - Just converting the python object to .net

The input arg corresponds to the output of your function from the invoke method in this case regexOuput and the outargument in this case is finalOutput that now you have your return value from python function in the finalOutput variable

image

Since you returned a json from your python function and now you have a json object in the finalOuput you can use this command to convert it to a type you desire in my case I convert it to a dictionary

image

Immediate view

image

You can checkout the .py code and uipath :)