kenobiDB
kenobiDB is a lightweight and high performance document-based data store that
supports simple operations like insertion, update, removal, and search. Check out the source code on
GitHub or view the project on the
Python Package Index.
Use it
You can install kenobiDB using the pip command
pip install kenobi
You can see a walk through of
all of kenobiDB's features to get started.
See it in action
>>> from kenobi import KenobiDB
>>> db = KenobiDB('example.db')
>>> db.insert({'name': 'Obi-Wan', 'color': 'blue'})
True
>>> db.search('color', 'blue')
[{'name': 'Obi-Wan', 'color': 'blue'}]
Written by Harrison Erd
Art by Jessica Finson Roth