@vitor
thanks, actually, I can't figure it out. It might not be I must say the gentlest learning curve for "advanced" workflows.
How do I pass multiple arguments from a python script back to Alfred? I understand that what I "print" becomes the output of the workflow cell, but can I maybe pass actual variables, so I can pass more than one, saving myself from parsing those values back and forth?
Example use case:
var1 = 5
var2 = "a_path"
# code to pass those two variables to the next cell
(bash script)
# code to receive two variables
cd $var2
mv … $var1 …
Finally, is there a simple workflow implemented in python only (as for external scripts go) so I can look at how things are done usually?