Is it possible to save an IPython workspace (defined functions, different kinds of variables, etc) so that it can be loaded later?
This would be a similar function
You can use the dill python package:
import dill filepath = 'session.pkl' dill.dump_session(filepath) # Save the session dill.load_session(filepath) # Load the session
To install it:
pip install dill