examples#

Here you will find example notebooks and scripts for working with IPython Parallel.

Tutorials#

Examples#

Integrating IPython Parallel with other tools#

There are lots of cool tools for working with asynchronous and parallel execution. IPython Parallel aims to be fairly compatible with these, both by implementing explicit support via methods such as Client.become_dask, and by using standards such as the concurrent.futures.Future API.

Non-notebook examples#

This directory also contains some examples that are scripts instead of notebooks.

[1]:
import glob
import os

from IPython.display import FileLink, FileLinks, display

FileLinks(".", included_suffixes=[".py"], recursive=False)

More substantial examples can be found in subdirectories:

[2]:
for path in os.listdir("."):
    if os.path.isdir(path) and not path.startswith("."):
        display(FileLinks(path, included_suffixes=['.py', '.ipynb']))
daVinci Word Count/
  wordfreq.py
  pwordfreq.py
rmt/
  rmt.ipynb
  rmtkernel.py