How to capture the return/output of a python script executed from slicer's python interpreter

Hey,
I am trying to develop a script that is independent of slicer’s main execution process. I want to launch this python script using the built-in python interpreter (this way the user does not need to have an independent python installation), perform a task, then return the data back to the slicer python extension that executed it. From the Script Repository and Launcher Wikis I saw there is the option to start a script this way:

Slicer.exe --python-script “[path to script]\myScript.py --script_argument” --testing --no-splash --no-main-window

I can pass some data to myScript.py via setting up command argument input like you do in the terminal but what would be the best way to capture the return data once this script has completed execution?
Essentially I just want to use the supplied python interpreter Slicer comes with to run python script then return the data back to the extension for further processing.

Thanks!

This is what Python CLI modules are developed for. If you have a Python script that you can launch from the command-line, then you can launch it from Slicer, too. But it gets much better: you get a nice GUI so that users that are not familiar with the command line can use the module, and Slicer can launch the processing in the background and automatically writes input nodes to files and reads outputs from files when the processing is completed.

All you need to do is to create an XML file that describes the input and output arguments of your Python script.

See a complete example and explanation here: https://github.com/lassoan/SlicerPythonCLIExample

A bit more complicated example, showing how to parse more complicated command lines and add automatic testing: https://github.com/SlicerDMRI/SlicerDMRI/tree/master/Modules/CLI/ExtractDWIShells