valiantone / pickledb

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

Home Page:https://pythonhosted.org/pickleDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

https://pythonhosted.org/pickleDB


Languages

Language:Python 100.0%