Skip to content
forked from patx/pickledb

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

Notifications You must be signed in to change notification settings

acimnotes/pickledb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 

Repository files navigation

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

Links

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%