Welcome
pickleDB is a lightweight and simple key-value store. It is built upon Python's
json module and was inspired by
redis. It is licensed with the BSD three-caluse license.
pickleDB is Fun
>>> import pickledb
>>> db = pickledb.load('example.db', False)
>>> db.set('key', 'value')
True
>>> db.get('key')
'value'
>>> db.dump()
True
And Easy to Install
$ pip install pickledb
More Information
You can view all of pickleDB's commands and what they do
here.
pickleDB was written by Harrison Erd. If you have any questions or suggestions you can email him at
patx44@gmail.com.
Other contributors:
Pedro Rodrigues.
pickleDB got its name from Python's "pickle" module, which it used to use. However, now pickleDB uses the "json" module. It is faster and cleaner. But the name stuck!