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.

kenobiDB is Fun


>>> from kenobi import KenobiDB

>>> db = KenobiDB('example.db')

>>> db.insert({'name': 'Yoda', 'lightsaber': 'green'})
True

>>> db.search('lightsaber', 'green')
[{'name': 'Yoda', 'lightsaber': 'green'}]
        

And Easy to Install

$ pip install kenobi



View source code, examples and documentation on GitHub

Fork me on GitHub