Welcome

pickleDB is a lightweight, simple and fast key-value store. It is built upon the orjson module for extremely high performance and was inspired by redis. It is licensed under the BSD three-clause license.

pickleDB is Fun


>>> from pickledb import PickleDB

>>> db = PickleDB('example.json')

>>> db.set('key', 'value')
True

>>> db.get('key')
'value'
        

And Easy to Install


$ pip install pickledb
        

More Information

pickleDB was written by Harrison Erd. If you would like to file an issue report or fork the project, check out the Github project page. You can view examples and documentation here. You can also take a look at pickleDB on PyPI.

Fork me on GitHub