Last updated:
0 purchases
picklachu 0.0.3
Picklachu
Pickle data and store it somewhere
2 built-in storage types
S3
local filesystem
More can be derived from BaseStorage
Usage
Persisting data:
from picklachu import Picklachu
with Picklachu(LocalStorage('/tmp/')) as picklachu:
picklachu.i_pickle_you({'foo':'bar'}, 'foobar')
Retrieving data:
from picklachu import Picklachu
with Picklachu(LocalStorage('/tmp/')) as picklachu:
picklachu.evolve('foobar') # will return {'foo', 'bar'}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.