Pickling in Python

Raj Dhakal
4 min readSep 30, 2020

You may have seen many codes where the keyword pickle have been used. What is the term actually meant for. And do we need pickling in Python. I also get struck at the term. So, I have tried in this article to learn as well as teach to you.

Photo by Anuja Mary Tilj on Unsplash

It is a module that implements binary protocols for serializing and de-serializing a Python object structure.

--

--