Skip to content

jkvc/pickle-jar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pickle-jar

A container of pickle slices.

Use this to serialize/read objects to/from disk, but instead of a single pickle file, split into multiple slices of smaller, separate files. This is useful to get around github single-file size restriction.

install

jar is on PyPI, use pip:

python -m pip install pickle-jar

usage

Use jar.dump and jar.load as you would with with python's pickle, see examples in test.py.