Hi,
Python node has the option to pass data formats other than table with object port, however it cannot pass neither
- a function ( ex: " def my_function(x): return x*x " ) or
- a code object ( ex: my_function.code )
Object port provides the option to divide a single long python code into smaller parts, however without function passing it is hard to divide the whole code. Thus, some parts still remain long
There are some solutions that apply to regular python interfaces according to the forum
i. one claims using import dill as pickle
solves
ii. another one claims In modern Python you can pickle functions, and many variants
If there is a way to perform function pass, can you help me or if there is not a method can you add that ability to the python node?