kenobiDB

kenobiDB is a small document based database supporting very simple usage including insertion, update, removal and search. It useses YAML. 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

View API documentation here.

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.yaml')

>>> db.insert({'key': 'value'})
True

>>> db.search('key', 'value')
[{'key': 'value'}]



Written by Harrison Erd
Art by Jessica Finson Roth