Differences between revisions 4 and 5
Revision 4 as of 2004-04-22 20:06:00
Size: 1431
Editor: dsl254-010-130
Comment: Simple example. Pickle a dictionary, and retrieve it.
Revision 5 as of 2004-04-22 21:17:26
Size: 2987
Editor: kansas
Comment: noted trustedpickle, noteson pickle as a long-term storage, what you can pickle
Deletions are marked like this. Additions are marked like this.
Line 38: Line 38:
You might also check out http://trustedpickle.sourceforge.net/ if you want to generate pickles, and later verify that you were the one that generated the pickle (e.g., if you are putting a pickle in a hidden field).

== What can you Pickle? ==

Generally you can pickle any object if you can pickle every attribute of that object. Classes, functions, and methods cannot be pickled -- if you pickle an object, the object's class is not pickled, just a string that identifies what class it belongs to. This works fine for most pickles (but note the discussion about long-term storage of pickles).

You ''cannot'' pickle open file objects, network connections, or database connections. When you think about it, it makes sense -- pickle cannot will the connection for file object to exist when you unpickle your object, and the process of creating that connection goes beyond what pickle can automatically do for you. If you really want to pickle something that has an attribute that is causing problems, look at the pickle documentation for __getstate__, __setstate__, and __getinitargs__ -- using these you can exclude problematic attributes.
Line 40: Line 48:
LionKimbro LionKimbro, IanBicking
Line 44: Line 52:
  (none yet) Pickles can cause problems if you save a pickle, then update your code and read the pickle in. Attribute added to your __init__ may not be present in the unpickled object; also, if pickle can't find your class and module (e.g., if you renamed the module) you will get errors.

For this reason, you should be wary of using pickles for long-term storage where the underlying code is not highly stable.

Using Pickle

Pickle Example

   1 # Save a dictionary into a pickle file.
   2 import pickle
   3 
   4 favorite_color = { "lion": "yellow", "kitty": "red" }
   5 
   6 pickle.dump( favorite_color, open( "save.p", "w" ) )

   1 # Load the dictionary back from the pickle file.
   2 import pickle
   3 
   4 favorite_color = pickle.load( open( "save.p" ) )
   5 # favorite_color is now { "lion": "yellow", "kitty": "red" }

For a more complex example, see [http://www.python.org/doc/current/lib/pickle-example.html the official Pickle example,] and for API details, see the [http://www.python.org/doc/current/lib/node64.html official Pickle use documentation.]

Flying Pickle Alert!

Pickle files can be hacked. If you receive a raw pickle file over the network, don't trust it! It could have malicious code in it, that would run arbitrary python when you try to de-pickle it.

However, if you are doing your own pickle writing and reading, you're safe. (Provided no one else has access to the pickle file, of course.)

You might also check out http://trustedpickle.sourceforge.net/ if you want to generate pickles, and later verify that you were the one that generated the pickle (e.g., if you are putting a pickle in a hidden field).

What can you Pickle?

Generally you can pickle any object if you can pickle every attribute of that object. Classes, functions, and methods cannot be pickled -- if you pickle an object, the object's class is not pickled, just a string that identifies what class it belongs to. This works fine for most pickles (but note the discussion about long-term storage of pickles).

You cannot pickle open file objects, network connections, or database connections. When you think about it, it makes sense -- pickle cannot will the connection for file object to exist when you unpickle your object, and the process of creating that connection goes beyond what pickle can automatically do for you. If you really want to pickle something that has an attribute that is causing problems, look at the pickle documentation for getstate, setstate, and getinitargs -- using these you can exclude problematic attributes.

Contributors

LionKimbro, IanBicking

Discussion

Pickles can cause problems if you save a pickle, then update your code and read the pickle in. Attribute added to your init may not be present in the unpickled object; also, if pickle can't find your class and module (e.g., if you renamed the module) you will get errors.

For this reason, you should be wary of using pickles for long-term storage where the underlying code is not highly stable.

UsingPickle (last edited 2019-12-15 07:34:41 by FrancesHocutt)

Unable to edit the page? See the FrontPage for instructions.