kenobiDB is a lightweight and high performance document-based data store built over SQLite. It supports simple operations like document insertion, update, removal, and search. Inspired by MongoDB and licensed under the BSD three-clause license.
>>> from kenobi import KenobiDB
>>> db = KenobiDB('example.db')
>>> db.insert({'name': 'Yoda', 'lightsaber': 'green'})
True
>>> db.search('lightsaber', 'green')
[{'name': 'Yoda', 'lightsaber': 'green'}]
$ pip install kenobi