Importing Objects from Python Scripts
Python allows classes, objects, and functions to be imported from one module into another with the “import” statement, similarly to how other programming languages make use of external libraries.
The fundamental unit of organization of Python code is the module. A module can contain multiple classes and functions, so importing a module can differ somewhat from Java, where classes are the primary unit of organization which are imported into different file. Another property of Python imports is that they are loaded and imported dynamically at compile time, a significant difference from a compiled language.
![]() | Although Iotellect offers the flexibility to interact with the platform via scripting, please note that the recommended way of utilizing the platform is through the use of standard Iotellect plugins, drivers, and low code development tools. |
Create a Script with a Function to Export
Create the following script which will contain a function to be exported. Open the context menu for the Scripts context and click Create. In the Script Properties menu, enter the following values and click OK.
Property | Value |
---|---|
Script Name | utils |
Script Description | Utils |
Language Type | Python |
Python Script Text | def get_string(): |
Launch Automatically Upon Server Startup | False |
Check the scripts/python/
director in your Iotellect installation to find the script. It should have been created as utils_PyScript
.
Importing Functions
The key detail when importing a Python script into another Python script via the Iotellect Scripts context, the module name will be the Iotellect name of the script
concatenated with the string _PyScript
.
The previous script is named utils
, which created a file utils_PyScript
on the server. In order to import the module, the import statement must reference utils_PyScript
.
Property | Value |
---|---|
Script Name | test_import |
Script Description | Test Import |
Language Type | Python |
Python Script Text | # Import pandas for working with the DataFrame class |
Launch Automatically Upon Server Startup | False |
Execute the Script
Open the context menu of the Test Import script and click Execute, or simply click on the script in system tree. The Script Execution Result should display the following table:
0 | 1 |
---|---|
1 | Hello World |
Was this page helpful?