Skip to content

kryptn/Pantry

Repository files navigation

Pantry

image

A simple context manager based file store that uses the pickle module

Use:

from pantry import pantry

shelves = {'first': ['cereal', 'rice', 'beans'],
           'second': ['spam', 'spam', 'baked beans', 'spam']}

with pantry('pantry.txt') as db:
    db['shelves'] = shelves