ipython / ipython/ipyparallel

Feature request: pull and push with %%px cell magic

Open
#225 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
Jupyter Notebook
Stars
2.6k
Forks
1k
PR merge metrics
No merged PRs in 30d

Description

I propose allowing one to pull and push in a px cell. The feature allows better encapsulation of cells.

example:
```
%%px push(a, b) pull(c)
c = a + b
```
translates to something like
```
client.push(['a', 'b'], block=False)
%px c = a + b
client.pull('c', block=False)
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.