##// END OF EJS Templates
Delete all references to old IPython.external.guid...
Delete all references to old IPython.external.guid This reverts commit a36c8d5b0e660e57d2a3051d06670780c1e75c97, where uuid was replaced with guid. Signed-off-by: Thomas Spura <thomas.spura@gmail.com>

File last commit:

r4910:0dc49390
r5807:3ba61c59
Show More
helloworld.py
34 lines | 556 B | text/x-python | PythonLexer
# <nbformat>2</nbformat>
# <markdowncell>
# # Distributed hello world
#
# Originally by Ken Kinder (ken at kenkinder dom com)
# <codecell>
from IPython.parallel import Client
# <codecell>
rc = Client()
view = rc.load_balanced_view()
# <codecell>
def sleep_and_echo(t, msg):
import time
time.sleep(t)
return msg
# <codecell>
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
# <codecell>
print "Submitted tasks:", hello.msg_ids, world.msg_ids
print hello.get(), world.get()