Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 483 Bytes

write.rst

File metadata and controls

21 lines (13 loc) · 483 Bytes

Writing BinPickle Files

The easy, single-function entry point for saving data is :pybinpickle.dump:

from binpickle import dump
dump(obj, 'file.bpk')

The dump Function

binpickle.dump

The BinPickler Class

For full control over the serialization process, you can directly use the :pybinpickle.BinPickler backend class.

binpickle.BinPickler