Matlab allows you to save the workspace very easy by saving all the variables, objects, arrays, etc, For details read save in workspace MATLAB.
Is it not possible to do that in python without having to resort to something annoying like a JSON file, or a CVS or any other annoying format that need to serialize myself or parse?
I just want something like:
save('file_name', ... variable names ...)
or
save('file_name') # save everything.
for example it should work with any objects, numpy libraries etc, just save my workspace and then let me load it back.