Metadata-Version: 2.1
Name: Pantry
Version: 0.3
Summary: A simple file data store
Home-page: https://github.com/kryptn/Pantry
Author: David Bibb
Author-email: david@dbibb.com
License: MIT
Keywords: simple database datastore data store
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

======
Pantry
======

.. image:: https://travis-ci.org/kryptn/Pantry.svg?branch=master
    :target: https://travis-ci.org/kryptn/Pantry

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



