Primary
pickle.dump() ⚬|Documentation|1st|20251021181956-00-⌔
pickle — Python object serialization — Python 3 documentation#pickle.dump
pickle.dump(obj, file, protocol=None, ﹡, fix_imports=True, buffer_callback=None)Write the pickled representation of the object obj to the open file object file. This is equivalent to
Pickler(file, protocol).dump(obj).Arguments file, protocol, fix_imports and buffer_callback have the same meaning as in the
Picklerconstructor.Changed in version 3.8: The buffer_callback argument was added.
Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •