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.
>>> from pickledb import PickleDB
>>> db = PickleDB('example.json')
>>> db.set('key', 'value')
True
>>> db.get('key')
'value'
$ pip install pickledb
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.