/pickledb

pickleDB is an open source key-value store using Python's simplejson module.

Primary LanguagePython

pickleDB

pickleDB is lightweight, fast, and simple database based on the simplejson 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

Easy to Install

$ pip install pickledb