Ah, I think this needs clarification indeed!
the SAGA job package is about starting *jobs*, in the sense of
*external programs* (external executables). So you can use it to
start an external application code, but it is not easily able to spawn
out python subroutines. For that purpose, you may want to look into
the python 'multiprocessing' module.
In your code below, the external program you start is '/bin/echo', and
presumably that will run all right. The calculation for loop you
define will though simply run in your python script proper, and will
not be part of the remote execution.
If you don't mind, could you describe your target use case, i.e. what
you are trying to achieve with remote execution? I would be happy to
help mapping that to the SAGA semantics, if suitable.
Best regards,
Andre.
On Wed, Nov 23, 2016 at 10:32 PM, Евгения Вдовина