Metadata-Version: 1.0
Name: pickleDB
Version: 0.2.2
Summary: A lightweight and simple database using json.
Home-page: http://github.com/patx/pickledb
Author: Harrison Erd
Author-email: patx44@gmail.com
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 as db
        
            >>> db.load('test.db')
        
            >>> db.set('key', 'value')
        
            >>> db.get('key')
            'value'
        
        
        And Easy to Install
        ```````````````````
        
        ::
        
            $ pip install pickledb
        
        Links
        `````
        
        * `website <http://packages.python.org/pickleDB/>`_
        * `documentation <http://packages.python.org/pickleDB/commands.html>`_
        * `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
