Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am learning about object serialization for the first time. I tried reading and 'googling' for differences in the modules pickle and shelve but I am not sure I understand it. When to use which one? Pickle can turn every python object into stream of bytes which can be persisted into a file. Then why do we need the module shelve? Isn't pickle faster?

share|improve this question
Is it like the case that pickle is like a very low-level stuff and shelve gives us more ways to store complex objects? – zubinmehta Nov 5 '10 at 3:46

1 Answer

up vote 14 down vote accepted

pickle is for serializing some object (or objects) as a single bytestream in a file.

shelve builds on top of pickle implements a serialization dictionary where objects are pickled as well, but are also associated with a key (some string), so you can load your shelved data file and access your pickled objects via keys. This could be more convenient were you to be serializing many objects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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