##// END OF EJS Templates
Add docstring explaining how to enable the `storemagic` extension....
Fernando Perez -
Show More
@@ -3,6 +3,15 b''
3 %store magic for lightweight persistence.
3 %store magic for lightweight persistence.
4
4
5 Stores variables, aliases etc. in PickleShare database.
5 Stores variables, aliases etc. in PickleShare database.
6
7 To enable this functionality, run::
8
9 %load_ext storemagic
10
11 in your IPython session. If you always want it enabled, you can list it in
12 your default profile `ipython_config.py` file::
13
14 c.InteractiveShellApp.extensions = ['storemagic']
6 """
15 """
7
16
8 from IPython.core.error import TryNext, UsageError
17 from IPython.core.error import TryNext, UsageError
General Comments 0
You need to be logged in to leave comments. Login now