Metadata-Version: 1.1
Name: Pantry
Version: 0.1.2
Summary: A simple file data store
Home-page: https://github.com/kryptn/Pantry
Author: David Bibb
Author-email: david@dbibb.com
License: MIT
Download-URL: https://github.com/kryptn/Pantry/tarball/0.1.1
Description: # Pantry
        
        A simple context manager based file store that uses the pickle module
        
        Use:
        ```python
        from Pantry import pantry
        
        shelves = {'first': ['cereal', 'rice', 'beans'],
                   'second': ['spam', 'spam', 'baked beans', 'spam']}
        
        with pantry('pantry.txt') as db:
            db['shelves'] = shelves
        
        
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
