Metadata-Version: 1.1
Name: pickleDB
Version: 0.7.5
Summary: A lightweight and simple database using simplejson.
Home-page: http://github.com/patx/pickledb
Author: Harrison Erd
Author-email: erdh@mail.broward.edu
License: three-clause BSD
Description: 
        pickleDB
        --------
        
        pickleDB is lightweight, fast, and simple database based on Python's own
        json module. And it's BSD licensed!
        
        pickleDB is Fun
        ```````````````
        
        ::
        
            >>> import pickledb
        
            >>> db = pickledb.load('test.db', False)
        
            >>> db.set('key', 'value')
        
            >>> db.get('key')
            'value'
        
            >>> db.dump()
            True
        
        
        And Easy to Install
        ```````````````````
        
        ::
        
            $ pip install pickledb
        
        Links
        `````
        
        * `website <https://patx.github.io/pickledb>`_
        * `documentation <http://patx.github.io/pickledb/commands.html>`_
        * `pypi <http://pypi.python.org/pypi/pickleDB>`_
        * `github repo <https://github.com/patx/pickledb>`_
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
