##// END OF EJS Templates
Create decorators for standalone magic functions, as per review.x
Create decorators for standalone magic functions, as per review.x

File last commit:

r6958:302f198c
r6972:b7491ba6
Show More
storemagic.py
218 lines | 7.1 KiB | text/x-python | PythonLexer
vivainio
aliases can be %store'd
r166 # -*- coding: utf-8 -*-
"""
%store magic for lightweight persistence.
Thomas Kluyver
Update docs on %store magic.
r5543 Stores variables, aliases and macros in IPython's database.
Fernando Perez
Add docstring explaining how to enable the `storemagic` extension....
r5379
Thomas Kluyver
Update docs on %store magic.
r5543 To automatically restore stored variables at startup, add this to your
:file:`ipython_config.py` file::
Fernando Perez
Add docstring explaining how to enable the `storemagic` extension....
r5379
Thomas Kluyver
Update docs on %store magic.
r5543 c.StoreMagic.autorestore = True
vivainio
aliases can be %store'd
r166 """
Fernando Perez
Cleanup of storemagic with pyflakes.
r6958 import inspect, os, sys, textwrap
from IPython.core.error import UsageError
from IPython.core.fakemodule import FakeModule
Fernando Perez
Update storemagic extension to new API
r6935 from IPython.core.magic import Magics, register_magics, line_magic
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541 from IPython.core.plugin import Plugin
Thomas Kluyver
Skip useless doctest for %store magic.
r5544 from IPython.testing.skipdoctest import skip_doctest
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541 from IPython.utils.traitlets import Bool, Instance
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541
Thomas Kluyver
Restore pspersistence, including %store magic, as an extension.
r5378 def restore_aliases(ip):
fperez
Defaults rename, clean up api to use properties or direct access rather than...
r284 staliases = ip.db.get('stored_aliases', {})
vivainio
aliases can be %store'd
r166 for k,v in staliases.items():
#print "restore alias",k,v # dbg
vivainio
callable alias fixes
r783 #self.alias_table[k] = v
Thomas Kluyver
Restore pspersistence, including %store magic, as an extension.
r5378 ip.alias_manager.define_alias(k,v)
vivainio
aliases can be %store'd
r166
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165 def refresh_variables(ip):
fperez
Defaults rename, clean up api to use properties or direct access rather than...
r284 db = ip.db
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165 for key in db.keys('autorestore/*'):
# strip autorestore
justkey = os.path.basename(key)
try:
obj = db[key]
except KeyError:
print "Unable to restore variable '%s', ignoring (use %%store -d to forget!)" % justkey
Fernando Perez
Update storemagic extension to new API
r6935 print "The error was:", sys.exc_info()[0]
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165 else:
#print "restored",justkey,"=",obj #dbg
fperez
Defaults rename, clean up api to use properties or direct access rather than...
r284 ip.user_ns[justkey] = obj
Bernardo B. Marques
remove all trailling spaces
r4872
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165
vivainio
store dhist persistently in db
r713 def restore_dhist(ip):
Thomas Kluyver
Restore pspersistence, including %store magic, as an extension.
r5378 ip.user_ns['_dh'] = ip.db.get('dhist',[])
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935
Thomas Kluyver
Restore pspersistence, including %store magic, as an extension.
r5378 def restore_data(ip):
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165 refresh_variables(ip)
Thomas Kluyver
Restore pspersistence, including %store magic, as an extension.
r5378 restore_aliases(ip)
restore_dhist(ip)
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165
Fernando Perez
Update storemagic extension to new API
r6935
@register_magics
class StoreMagics(Magics):
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165 """Lightweight persistence for python variables.
Fernando Perez
Update storemagic extension to new API
r6935 Provides the %store magic."""
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 @skip_doctest
@line_magic
def store(self, parameter_s=''):
"""Lightweight persistence for python variables.
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 Example::
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 In [1]: l = ['hello',10,'world']
In [2]: %store l
In [3]: exit
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 (IPython session is closed and started again...)
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 ville@badger:~$ ipython
In [1]: l
Out[1]: ['hello', 10, 'world']
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 Usage:
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 * ``%store`` - Show list of all variables and their current
values
* ``%store spam`` - Store the *current* value of the variable spam
to disk
* ``%store -d spam`` - Remove the variable and its value from storage
* ``%store -z`` - Remove all variables from storage
* ``%store -r`` - Refresh all variables from store (delete
current vals)
* ``%store foo >a.txt`` - Store value of foo to new file a.txt
* ``%store foo >>a.txt`` - Append value of foo to file a.txt
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 It should be noted that if you change the value of a variable, you
need to %store it again if you want to persist the new value.
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 Note also that the variables will need to be pickleable; most basic
python types can be safely %store'd.
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165
Fernando Perez
Update storemagic extension to new API
r6935 Also aliases can be %store'd across sessions.
"""
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 opts,argsl = self.parse_options(parameter_s,'drz',mode='string')
args = argsl.split(None,1)
ip = self.shell
db = ip.db
# delete
if opts.has_key('d'):
try:
todel = args[0]
except IndexError:
raise UsageError('You must provide the variable to forget')
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165 else:
Fernando Perez
Update storemagic extension to new API
r6935 try:
del db['autorestore/' + todel]
except:
raise UsageError("Can't delete variable '%s'" % todel)
# reset
elif opts.has_key('z'):
for k in db.keys('autorestore/*'):
del db[k]
elif opts.has_key('r'):
refresh_variables(ip)
# run without arguments -> list variables & values
elif not args:
vars = self.db.keys('autorestore/*')
vars.sort()
if vars:
size = max(map(len,vars))
vivainio
Fix %store to avoid "%store obj.attr" half-success (and fail explicitly).
r243 else:
Fernando Perez
Update storemagic extension to new API
r6935 size = 0
print 'Stored variables and their in-db values:'
fmt = '%-'+str(size)+'s -> %s'
get = db.get
for var in vars:
justkey = os.path.basename(var)
# print 30 first characters from every var
print fmt % (justkey,repr(get(var,'<unavailable>'))[:50])
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Update storemagic extension to new API
r6935 # default action - store the variable
vivainio
aliases can be %store'd
r166 else:
Fernando Perez
Update storemagic extension to new API
r6935 # %store foo >file.txt or >>file.txt
if len(args) > 1 and args[1].startswith('>'):
fnam = os.path.expanduser(args[1].lstrip('>').lstrip())
if args[1].startswith('>>'):
fil = open(fnam,'a')
else:
fil = open(fnam,'w')
obj = ip.ev(args[0])
print "Writing '%s' (%s) to file '%s'." % (args[0],
obj.__class__.__name__, fnam)
if not isinstance (obj,basestring):
from pprint import pprint
pprint(obj,fil)
else:
fil.write(obj)
if not obj.endswith('\n'):
fil.write('\n')
fil.close()
vivainio
aliases can be %store'd
r166 return
Fernando Perez
Update storemagic extension to new API
r6935
# %store foo
try:
obj = ip.user_ns[args[0]]
except KeyError:
# it might be an alias
# This needs to be refactored to use the new AliasManager stuff.
if args[0] in self.alias_manager:
name = args[0]
nargs, cmd = self.alias_manager.alias_table[ name ]
staliases = db.get('stored_aliases',{})
staliases[ name ] = cmd
db['stored_aliases'] = staliases
print "Alias stored: %s (%s)" % (name, cmd)
return
else:
raise UsageError("Unknown variable '%s'" % args[0])
else:
if isinstance(inspect.getmodule(obj), FakeModule):
print textwrap.dedent("""\
Warning:%s is %s
Proper storage of interactively declared classes (or instances
of those classes) is not possible! Only instances
of classes in real modules on file system can be %%store'd.
""" % (args[0], obj) )
return
#pickled = pickle.dumps(obj)
self.db[ 'autorestore/' + args[0] ] = obj
print "Stored '%s' (%s)" % (args[0], obj.__class__.__name__)
vivainio
Grand Persistence Overhaul, featuring PickleShare. startup...
r165
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541
class StoreMagic(Plugin):
shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
autorestore = Bool(False, config=True)
def __init__(self, shell, config):
super(StoreMagic, self).__init__(shell=shell, config=config)
Fernando Perez
Update storemagic extension to new API
r6935 shell.register_magics(StoreMagics)
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541
if self.autorestore:
restore_data(shell)
Fernando Perez
Update storemagic extension to new API
r6935
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541 _loaded = False
Thomas Kluyver
Restore pspersistence, including %store magic, as an extension.
r5378 def load_ipython_extension(ip):
Thomas Kluyver
Use plugin API for storemagic, so autorestore is configurable.
r5541 """Load the extension in IPython."""
global _loaded
if not _loaded:
plugin = StoreMagic(shell=ip, config=ip.config)
ip.plugin_manager.register_plugin('storemagic', plugin)
_loaded = True