Saving an Object (Data persistence)

Go To StackoverFlow.com

177

I've created an object like this:

company1.name = 'banana' 
company1.value = 40

I would like to save this object. How can I do that?

2010-12-25 09:02
by Peterstone
See example for people who come here for a simple example how to use pickle - Martin Thoma 2018-04-16 11:53
@MartinThoma: Why do you (seemingly) prefer that answer to the accepted one (of the linked question) - martineau 2018-07-05 03:41
At the time I linked, the accepted answer did not have protocol=pickle.HIGHEST_PROTOCOL. My answer also gives alternatives to pickle - Martin Thoma 2018-07-05 04:49


354

You could use the pickle module in the standard library. Here's an elementary application of it to your example:

import pickle

class Company(object):
    def __init__(self, name, value):
        self.name = name
        self.value = value

with open('company_data.pkl', 'wb') as output:
    company1 = Company('banana', 40)
    pickle.dump(company1, output, pickle.HIGHEST_PROTOCOL)

    company2 = Company('spam', 42)
    pickle.dump(company2, output, pickle.HIGHEST_PROTOCOL)

del company1
del company2

with open('company_data.pkl', 'rb') as input:
    company1 = pickle.load(input)
    print(company1.name)  # -> banana
    print(company1.value)  # -> 40

    company2 = pickle.load(input)
    print(company2.name) # -> spam
    print(company2.value)  # -> 42

You could also write a simple utility like the following which opens a file and writes a single object to it:

def save_object(obj, filename):
    with open(filename, 'wb') as output:  # Overwrites any existing file.
        pickle.dump(obj, output, pickle.HIGHEST_PROTOCOL)

# sample usage
save_object(company1, 'company1.pkl')

Update:

Since this is such a popular answer, I'd like touch on a few slightly advanced usage topics.

cPickle (or _pickle) vs pickle

It's almost always preferable to actually use the cPickle module rather than pickle because the former is written in C and is much faster. There are some subtle differences between them, but in most situations they're equivalent and the C version will provide greatly superior performance. Switching to it couldn't be easier, just change the import statement to this:

import cPickle as pickle

In Python 3, cPickle was renamed _pickle, but doing this is no longer necessary since the pickle module now does it automatically—see What difference between pickle and _pickle in python 3?.

The rundown is you could use something like the following to ensure that your code will always use the C version when it's available in both Python 2 and 3:

try:
    import cPickle as pickle
except ModuleNotFoundError:
    import pickle

Data stream formats (protocols)

pickle can read and write files in several different, Python-specific, formats, called protocols. "Protocol version 0" is ASCII and therefore "human-readable". Versions > 1 are binary and the highest one available depends on what version of Python is being used. The default also depends on Python version. In Python 2 the default was Protocol version 0, but in Python 3.6, it's Protocol version 3. In Python 3.x the module had a pickle.DEFAULT_PROTOCOL added to it, but that doesn't exist in Python 2.

Fortunately there's shorthand for writing pickle.HIGHEST_PROTOCOL in every call (assuming that's what you want, and you usually do)—just use the literal number -1. So, instead of writing:

pickle.dump(obj, output, pickle.HIGHEST_PROTOCOL)

You can just write:

pickle.dump(obj, output, -1)

Either way, you'd only have specify the protocol once if you created a Pickler object for use in multiple pickle operations:

pickler = pickle.Pickler(output, -1)
pickler.dump(obj1)
pickler.dump(obj2)
   etc...

Multiple Objects

While a pickle file can contain any number of pickled objects, as shown in the above samples, when there's an unknown number of them, it's often easier to store them all in some sort of variably-sized container, like a list, tuple, or dict and write them all to the file in a single call:

tech_companies = [
    Company('Apple', 114.18), Company('Google', 908.60), Company('Microsoft', 69.18)
]
save_object(tech_companies, 'tech_companies.pkl')

and restore the list and everything in it later with:

with open('tech_companies.pkl', 'rb') as input:
    tech_companies = pickle.load(input)

The major advantage is you don't need to know how many object instances are saved in order to load them back later (although doing so without that information is possible, it requires some slightly specialized code). See the answers to the related question Saving and loading multiple objects in pickle file? for details on different ways to do this. Personally I like @Lutz Prechelt's answer the best. Here's it adapted to the examples here:

class Company:
    def __init__(self, name, value):
        self.name = name
        self.value = value

def pickled_items(filename):
    """ Unpickle a file of pickled data. """
    with open(filename, "rb") as f:
        while True:
            try:
                yield pickle.load(f)
            except EOFError:
                break

print('Companies in pickle file:')
for company in pickled_items('company_data.pkl'):
    print('  name: {}, value: {}'.format(company.name, company.value))
2010-12-25 09:35
by martineau
This is rare to me because I imagined there would be a easier way to do save a object... Something like 'saveobject(company1,c:\mypythonobjects - Peterstone 2010-12-25 09:45
@Peterstone: If you only wanted to store one object you would only need about half as much code as in my example -- I purposefully wrote it the way I did to show how more than one object could be saved into (and later read back from) the same file - martineau 2010-12-25 09:57
@Peterstone, there is a very good reason for the separation of responsibilities. This way there is no limitation on how the data from the pickling process is being used. You can store it to disc or you could also send it accross a network connection - Harald Scheirich 2010-12-25 16:20
@Harald Scheirich: Could you please elaborate on what you mean about a "separation of responsibilities" -- I'm not exactly sure to what you are referring - martineau 2011-01-01 20:14
@martinaeau, this was in response to perstones remark about one should have just one function to save an object to disk. The pickles responsibility is only to turn an object into data that can be handled as a chunk. Writing things to file is the file objects responsibility. By keeping things separate one enables higher reuse e.g. being able to send the pickled data accross a network connection or storing it in a database, all responsibilities separate from the actual data<->object conversio - Harald Scheirich 2011-01-01 22:38
@Harald Scheirich: Ah, I see...and agree ;-) but doubt Peterstone is concerned nor able appreciate the finer points of the high level design of the various Python modules and how they fit together at this stage - martineau 2011-01-02 00:07
You delete company1 and company2. Why don't you also delete Company and show what happens - Mike McKerns 2015-09-16 00:41
@Mike: Primarily because doing so has little bearing on the question at hand, nor is it something most folks reading the thread are likely to ever want to do. But also because I strongly suspect the primary motivation for asking it is nothing more than a veiled attempt to publicize the dill module you wrote — which certainly sounds like it might come in handy in some situations - martineau 2016-03-13 03:35
@martineau: it's not a veiled attempt... when you have a hammer, you find you see that there are nails everywhere. Anyway... it's a valid point for me to raise… and it has been asked several times on SO - Mike McKerns 2016-03-13 20:27
@Mike: Sorry, I don't think this question is the right kind of nail. FWIW, I think an effective way to promote dill would be to more clearly state what it can do that pickle can't on its download page, rather than proposing its use to solve issues unrelated to the problem at hand in various SO posts. If there's a consensus that it adequately addresses serious deficiencies folks are commonly encountering while trying to use pickle, perhaps it should be made part of the standard library - martineau 2016-03-13 21:17
@martineau: I disagree. Look at the question. It's a pretty strong assumption to assume that the object the OP is asking about is a class. If it's not a class, then pickle will fail you in most cases. My answer is a more general one, thus the right type of nail. I was picking at a scab a bit in the comments of your answer, but it's still in my opinion a valid point. You have every right to disagree. …and I'm not really trying to promote dill, I'm just answering the question with all the tools I have in my toolbox - Mike McKerns 2016-03-13 21:32
What is if i create my objects in a for loop (because of different parameter combinations). The have to be named in a different way to get later acess to it, isnt it. And if yes, then how could i create different names for my objects in a for loop - Varlor 2017-06-29 16:27
@Varlor: You could create different names by defining a counter that is initialized just before entering the for loop, and then inside it to generate each filename. i.e. filename = 'myname{}.pkl'.format(count), followed by count += 1. However it would probably be better to put all the objects in a list and pickle.dump() it, which will save all of them at once in a single file and preserve the order they appear in the list. You can also put them in a dictionary and dump() that - martineau 2017-06-29 17:22


42

I think it's a pretty strong assumption to assume that the object is a class. What if it's not a class? There's also the assumption that the object was not defined in the interpreter. What if it was defined in the interpreter? Also, what if the attributes were added dynamically? When some python objects have attributes added to their __dict__ after creation, pickle doesn't respect the addition of those attributes (i.e. it 'forgets' they were added -- because pickle serializes by reference to the object definition).

In all these cases, pickle and cPickle can fail you horribly.

If you are looking to save an object (arbitrarily created), where you have attributes (either added in the object definition, or afterward)… your best bet is to use dill, which can serialize almost anything in python.

We start with a class…

Python 2.7.8 (default, Jul 13 2014, 02:29:54) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pickle
>>> class Company:
...     pass
... 
>>> company1 = Company()
>>> company1.name = 'banana'
>>> company1.value = 40
>>> with open('company.pkl', 'wb') as f:
...     pickle.dump(company1, f, pickle.HIGHEST_PROTOCOL)
... 
>>> 

Now shut down, and restart...

Python 2.7.8 (default, Jul 13 2014, 02:29:54) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pickle
>>> with open('company.pkl', 'rb') as f:
...     company1 = pickle.load(f)
... 
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py", line 1378, in load
    return Unpickler(file).load()
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py", line 858, in load
dispatch[key](self)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py", line 1090, in load_global
    klass = self.find_class(module, name)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py", line 1126, in find_class
    klass = getattr(mod, name)
AttributeError: 'module' object has no attribute 'Company'
>>> 

Oops… pickle can't handle it. Let's try dill. We'll throw in another object type (a lambda) for good measure.

Python 2.7.8 (default, Jul 13 2014, 02:29:54) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dill       
>>> class Company:
...     pass
... 
>>> company1 = Company()
>>> company1.name = 'banana'
>>> company1.value = 40
>>> 
>>> company2 = lambda x:x
>>> company2.name = 'rhubarb'
>>> company2.value = 42
>>> 
>>> with open('company_dill.pkl', 'wb') as f:
...     dill.dump(company1, f)
...     dill.dump(company2, f)
... 
>>> 

And now read the file.

Python 2.7.8 (default, Jul 13 2014, 02:29:54) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dill
>>> with open('company_dill.pkl', 'rb') as f:
...     company1 = dill.load(f)
...     company2 = dill.load(f)
... 
>>> company1 
<__main__.Company instance at 0x107909128>
>>> company1.name
'banana'
>>> company1.value
40
>>> company2.name
'rhubarb'
>>> company2.value
42
>>>    

It works. The reason pickle fails, and dill doesn't, is that dill treats __main__ like a module (for the most part), and also can pickle class definitions instead of pickling by reference (like pickle does). The reason dill can pickle a lambda is that it gives it a name… then pickling magic can happen.

Actually, there's an easier way to save all these objects, especially if you have a lot of objects you've created. Just dump the whole python session, and come back to it later.

Python 2.7.8 (default, Jul 13 2014, 02:29:54) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dill
>>> class Company:
...     pass
... 
>>> company1 = Company()
>>> company1.name = 'banana'
>>> company1.value = 40
>>> 
>>> company2 = lambda x:x
>>> company2.name = 'rhubarb'
>>> company2.value = 42
>>> 
>>> dill.dump_session('dill.pkl')
>>> 

Now shut down your computer, go enjoy an espresso or whatever, and come back later...

Python 2.7.8 (default, Jul 13 2014, 02:29:54) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dill
>>> dill.load_session('dill.pkl')
>>> company1.name
'banana'
>>> company1.value
40
>>> company2.name
'rhubarb'
>>> company2.value
42
>>> company2
<function <lambda> at 0x1065f2938>

The only major drawback is that dill is not part of the python standard library. So if you can't install a python package on your server, then you can't use it.

However, if you are able to install python packages on your system, you can get the latest dill with git+https://github.com/uqfoundation/dill.git@master#egg=dill. And you can get the latest released version with pip install dill.

2014-08-04 12:49
by Mike McKerns
I'm getting a TypeError: __new__() takes at least 2 arguments (1 given) when trying to use dill (which looks promising) with a rather complex object that includes an audio file - MikeiLL 2014-08-27 18:24
@MikeiLL: You are getting a TypeError when you do what, exactly? That's usually a sign of having the wrong number of arguments when instantiating a class instance. If this is not part of the workflow of the above question, could you post it as another question, submit it to me over email, or add it as an issue on the dill github page - Mike McKerns 2014-08-27 20:01
For anyone following along, here's the related question @MikeLL posted -- from the answer, it apparently wasn't a dill issue - martineau 2015-02-02 17:12


2

You can use anycache to do the job for you. It considers all the details:

  • It uses dill as backend, which extends the python pickle module to handle lambda and all the nice python features.
  • It stores different objects to different files and reloads them properly.
  • Limits cache size
  • Allows cache clearing
  • Allows sharing of objects between multiple runs
  • Allows respect of input files which influence the result

Assuming you have a function myfunc which creates the instance:

from anycache import anycache

class Company(object):
    def __init__(self, name, value):
        self.name = name
        self.value = value

@anycache(cachedir='/path/to/your/cache')    
def myfunc(name, value)
    return Company(name, value)

Anycache calls myfunc at the first time and pickles the result to a file in cachedir using an unique identifier (depending on the the function name and its arguments) as filename. On any consecutive run, the pickled object is loaded. If the cachedir is preserved between python runs, the pickled object is taken from the previous python run.

For any further details see the documentation

2017-11-19 20:27
by c0fec0de
How would one use anycache to save more than one instance of, say, a class or container such as a list (that wasn't the result of calling a function) - martineau 2018-06-04 13:59
Ads