...
A good practice is to strive to organize the code in modules for maximum reuse.
Note |
---|
Note!Always import your Python Module configurations, Ultra Format configurations, and APL Code configurations from the global scope, i.e. not from within a function. |
Info |
---|
Example - Importing Code to the Python Agent Code Block |
---|
| # Absolute imports
from python.Analytics.PYM_Algorithms import findclu
from ultra.Analytics.UFL_Types import InputData
from apl.Analytics.APL_Helpers import logger
# Relative imports
from .PYM_Algorithms import findclu
from .UFL_Types import InputData
from .APL_Helpers import logger
# Other imports
import numpy as np |
|
...