Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ipython %store magic not working

I'm trying to get an IPython alias to persist, and according to docs the %store magic offers this feature. But it's not working:

$ echo 'print("hello world!")' > test.py
$ ipython
In [1]: alias potato python /tmp/test.py

In [2]: potato
hello world!

In [3]: %store potato
Alias stored: potato (python /tmp/test.py)

In [4]: 
Do you really want to exit ([y]/n)? 
$ ipython
In [1]: potato
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-1-e561f9248d75> in <module>()
----> 1 potato

NameError: name 'potato' is not defined

What's missing?

like image 320
wim Avatar asked Dec 19 '22 19:12

wim


2 Answers

You need to run %store -r to retrieve stored variables (and aliases).

Of course, you can add this to your ipython startup script.

like image 68
ecatmur Avatar answered Dec 26 '22 20:12

ecatmur


You can also restore in a regular script, for instance if your IDE (Spyder) doesn't support the ipython_config.py file:

from IPython import get_ipython
ipython = get_ipython()
ipython.magic("store -r")

(Put this in a file that's called in the Startup tab of Spyder's IPython configuration. This took me way too long to figure out.)

like image 44
endolith Avatar answered Dec 26 '22 20:12

endolith