Pickle Module
TL;DR
The pickle
module serializes Python objects to bytes and deserializes them back - enabling object persistence and inter-process communication.
Interesting!
Pickle can serialize almost any Python object, including functions, classes, and nested objects - but never unpickle untrusted data as it can execute arbitrary code!