I understood that Python pickling is a way to 'store' a Python Object in a way that does respect Object programming - different from an output written in txt file or DB.

Do you have more details or references on the following points:

  • where are pickled objects 'stored'?
  • why is pickling preserving object representation more than, say, storing in DB?
  • can I retrieve pickled objects from one Python shell session to another?
  • do you have significant examples when serialization is useful?
  • does serialization with pickle imply data 'compression'?

In other words, I am looking for a doc on pickling - Python.doc explains how to implement pickle but seems not dive into details about use and necessity of serialization.

link|improve this question

To save state for later restoration or to share/copy an object to a different python runtime would be my guess. – synthesizerpatel Jan 23 at 8:38
3  
Many of your questions are answered by Wikipedia's article on serialization: en.wikipedia.org/wiki/Serialization – aix Jan 23 at 8:43
1  
are you asking for why would I need Pickle for serialization in Python? or rather what is (the purpose of) serialization after all?. – moooeeeep Jan 23 at 8:54
feedback

1 Answer

up vote 3 down vote accepted

Pickling is a way to convert a python object (list, dict, etc.) into a character stream. The idea is that this character stream contains all the information necessary to reconstruct the object in another python script.

As for where the pickled information is stored, usually one would do:

with open('filename', 'w') as f:
    var = {1 : 'a' , 2 : 'b'}
    pickle.dump(var, f)

That would store the pickled version of our var dict in the 'filename' file. Then, in another script, you could load from this file into a variable and the dictionary would be recreated.

Another use for pickling is if you need to transmit this dictionary over a network (perhaps with sockets or something.) You first need to convert it into a character stream, then you can send it over a socket connection.

Also, there is no "compression" to speak of here...it's just a way to convert from one representation (in RAM) to another (in "text").

About.com has a nice introduction of pickling here.

link|improve this answer
usually one would do with open('filename') as f: ... – moooeeeep Jan 23 at 8:50
ah yes...that's more error resistant. Thanks. – Magnesium Jan 23 at 8:53
2  
Also, you would need to do with open(filename, 'wb') as f: ... or you wouldn't be able to write to the file. – Tim Pietzcker Jan 23 at 9:07
Thanks!! This one on Python persistence management is nice, here – dlib Jan 23 at 9:25
In general it is not a very good idea to use pickle to transmit a dictionary over a network (json could be better here). Though in rare cases it might be useful e.g., multiprocessing module. – J.F. Sebastian Jan 23 at 9:42
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.