jupyter_spaces
                                
                                 jupyter_spaces copied to clipboard
                                
                                    jupyter_spaces copied to clipboard
                            
                            
                            
                        Create parallel namespaces in Jupyter Notebooks
 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...