##// END OF EJS Templates
Merge pull request #2179 from dopplershift/pylab-switch...
Merge pull request #2179 from dopplershift/pylab-switch Enable switching %pylab mode between inline and a single gui mode in a single notebook. With this merge, `%pylab` can be called interactively to toggle inline/GUI (matplotlib floating windows) mode. After initializing `%pylab inline`, now one can call `%pylab` without arguments to activate the default GUI or ask for a specific one as usual. IPython will detect if a different GUI is requested if one was already activated and will refuse to do so (to prevent multiple event loops from running concurrently, which often leads to problems).

File last commit:

r6455:15863dc1
r8027:6dac6929 merge
Show More
helloworld.py
35 lines | 596 B | text/x-python | PythonLexer
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <nbformat>2</nbformat>
# <markdowncell>
# # Distributed hello world
#
# Originally by Ken Kinder (ken at kenkinder dom com)
# <codecell>
Thomas Kluyver
Update print syntax in parallel examples.
r6455 from __future__ import print_function
Brian E. Granger
Reworking parallel examples as notebooks.
r4581
MinRK
move IPython.zmq.parallel to IPython.parallel
r3666 from IPython.parallel import Client
MinRK
update API after sagedays29...
r3664
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <codecell>
MinRK
move IPython.zmq.parallel to IPython.parallel
r3666 rc = Client()
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 view = rc.load_balanced_view()
# <codecell>
MinRK
update API after sagedays29...
r3664
def sleep_and_echo(t, msg):
import time
time.sleep(t)
return msg
Brian E. Granger
Reworking parallel examples as notebooks.
r4581
# <codecell>
MinRK
update API after sagedays29...
r3664
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
Brian E. Granger
Reworking parallel examples as notebooks.
r4581
# <codecell>
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print("Submitted tasks:", hello.msg_ids, world.msg_ids)
print(hello.get(), world.get())
Brian E. Granger
Reworking parallel examples as notebooks.
r4581