Primary
pickle.load() ⚬|Documentation|1st|20251021182052-00-⌔
pickle — Python object serialization — Python 3 documentation#pickle.load
pickle.load(file, ﹡, fix_imports=True, encoding='ASCII', errors='strict', buffers=None)Read the pickled representation of an object from the open file object file and return the reconstituted object hierarchy specified therein. This is equivalent to
Unpickler(file).load().The protocol version of the pickle is detected automatically, so no protocol argument is needed. Bytes past the pickled representation of the object are ignored.
Arguments file, fix_imports, encoding, errors, strict and buffers have the same meaning as in the
Unpicklerconstructor.Changed in version 3.8: The buffers argument was added.
Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •