Module: sage.misc.persist
Object persistence
You can load and save most Sage object to disk using the load and save member functions and commands.
Note:
It is impossible to save certain Sage objects to disk.
For example, if
is a MAGMA object, i.e., a wrapper
around an object that is defined in MAGMA, there is no way
to save
it to disk, since MAGMA doesn't support saving
of individual objects to disk.
Module-level Functions
name) |
Load object with given name from the Sage database. Use x.db(name) or db_save(x, name) to save objects to the database.
The database directory is $HOME/.sage/db
.
x, [name=None]) |
Save x to the Sage database.
The database directory is $HOME/.sage/db
.
cls, parent, dic_pic) |
cls, dic) |
See About this document... for information on suggesting changes.