In [2]:
from ipyparallel import Client
c = Client('/home/ipcontroller-client.json')
c.ids


Out[2]:
[0, 1, 2, 3, 4, 5, 6, 7]

In [3]:
c.ids


Out[3]:
[0, 1, 2, 3, 4, 5, 6, 7]

In [4]:
dv = c[:]

In [6]:
dv.push({'arr':[1,2,3,4]})


Out[6]:
<AsyncResult: _push>

In [7]:
dv['arr']


Out[7]:
[[1, 2, 3, 4],
 [1, 2, 3, 4],
 [1, 2, 3, 4],
 [1, 2, 3, 4],
 [1, 2, 3, 4],
 [1, 2, 3, 4],
 [1, 2, 3, 4],
 [1, 2, 3, 4]]

In [ ]: