The one true Pickler, it takes the pickle and encodes the bits and a space and a pickle emoji.
From PyPi:
$ pip install piickle
Use the library directly:
import piickle
piickle.dump(object, file) # Same as the python pickle.dump()
piickle.dumps(object) # Same as the python pickle.dumps()
piickle.load(file) # Same as the python pickle.load()
piickle.loads(string) # Same as the python pickle.loads()or use the monkey patch feature:
import pickle
import piickle
pickle.dump(object, file)
pickle.dumps(object)
pickle.load(file)
pickle.loads(string)- A truly horrible pun