jupyter_spaces icon indicating copy to clipboard operation
jupyter_spaces copied to clipboard

Create parallel namespaces in Jupyter Notebooks

Results 5 jupyter_spaces issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/34914144/80975834-3d624180-8de8-11ea-9720-96884d9bc9cd.png) There is no great solution for working in isolated namespaces in Jupyter. `jupyter-spaces` could solve this very elegantly. Is there any workaround for magics to work?

At the moment get_spaces returns a proxy map of space names and `Space` instances, which offer two attributes, `name` and `namespace`. As part of a rewrite to make the magics...

Something I would often like to do with jupyter_spaces is to do a bunch of computation with temporary variables, and assign the final result to a persistent/global variable. Right not,...

I just came across this repository after looking for a solution to this exact problem, very excited! However when I was trying it out every line now goes through `get_ipython().run_cell_magic('space',...

Using `%%space` with no name runs the cell in an anonymous namespace (creates a new space, runs the cell in it, and forgets it). So instead of having to come...