Posted by jug here.
To run this script, assuming it is a file called script.py , you run the jug execute script.py (not python script.py ).
You can simply run several of them in parallel. If you are using a Unix-like shell, the following should work very well in order to use two processors:
jug execute script.py & jug execute script.py &
Different processes will interact with each other, using the file system to share work (this is the default value, you can also use the backis backend if you want to use a cluster of machines that do not use the file system),
You can also use the following to check progress:
jug status script.py
luispedro
source share