activities
latest
false
- Overview
- Cryptography
- Database
- Java
- Python
- WebAPI
Load Python Script
Developer Activities
Last updated Oct 22, 2024
Load Python Script
UiPath.Python.Activities.LoadScript
Enables you to store the handlers of a Python script in a
PythonObject
variable.
You can use the resulting variable to invoke the methods within the code. If there is inline code besides the methods present in the script, the code is also executed at runtime.
It can only be used inside the Python Scope activity.
Due to a software limitation, this activity uses, by default, the installation location of the Python activity package as the run directory for the script.
To be able to use relative paths inside the script, you can add the following code to the loaded script as a workaround:
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(<em>file</em>)))
import <your module here>
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(<em>file</em>)))
import <your module here>
Common
- DisplayName - The display
name of the activity. This field supports only
String
variables.
Input
- Code - The Python code that you want to load. This field supports only String variables.
- File - The path to the file which contains the Python code that you want to load. This field supports only String variables.
Misc
- Private - If selected, the values of variables and arguments are no longer logged at Verbose level.
Output
- Result - The handlers for
the specified Python script, stored in a
PythonObject
variable.