Python 101: An Intro to Object Serialization with Pickle

Python’s “batteries included” philosophy even includes a module for object serialization. They call it the pickle module. Some people call serialization by other names, such as marshalling or flattening. In Python, it’s known as “pickling”. The pickle module also has an optimized C-based version known as cPickle that can run up to 1000 times faster […]

Python 101: An Intro to Object Serialization with Pickle Read More »