##// END OF EJS Templates
run_cell(exec_lines) now called with 'store_history=False'...
run_cell(exec_lines) now called with 'store_history=False' This prevents config file defined exec_lines from showing up in the history, and results in input counter always starting at 1 closes gh-125 closes gh-363

File last commit:

r3666:a6a0636a
r3746:74721c4d
Show More
helloworld.py
19 lines | 424 B | text/x-python | PythonLexer
"""
A Distributed Hello world
Ken Kinder <ken@kenkinder.com>
"""
from IPython.parallel import Client
rc = Client()
def sleep_and_echo(t, msg):
import time
time.sleep(t)
return msg
view = rc.load_balanced_view()
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
print "Submitted tasks:", hello.msg_ids, world.msg_ids
print hello.get(), world.get()