##// END OF EJS Templates
Doc tweaks and updates
Doc tweaks and updates

File last commit:

r3609:8d078bcc
r3663:11592a75
Show More
views.py
14 lines | 217 B | text/x-python | PythonLexer
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564 from IPython.zmq.parallel.client import *
MinRK
updated newparallel examples, moved into docs
r3609 client = Client()
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
for id in client.ids:
client.push(dict(ids=id*id), targets=id)
rns = client[0]
rns['a'] = 5
print rns['a']
remotes = client[:]
print remotes['ids']