Kevin
Kevin

Reputation: 1085

Where are %stored Jupyter files located?

The %store magic feature can save large python objects for you to use in between different sessions, but I'd like to find out where the files are actually located so I can also transfer them between different computers. I am using Windows 7.

Upvotes: 5

Views: 3214

Answers (1)

Ivan
Ivan

Reputation: 3836

IPython does that, see github for storemagic.py

Stored value will be kept under %IPYTHONDIR/<profile_name>/db/autorestore/<variable_name>

Or by default ~/.ipython/profile_default/db/autorestore/<variable_name>

Upvotes: 7

Related Questions