Looks like each console has access to only two CPUs:
from multiprocessing import cpu_count
cpu_count()
>> 2
Is there a way to access more than 2 CPUs for CPU intensive tasks? ..outside a webapp.
Alternatively, is there a way to launch multiple consoles via API or bash/python script.