/lotusdb_python

A database written in python with json data types that can be used on a large scale.

Primary LanguagePython

pip install lotusdb

from lotusdb import Database
db = Database('myfile.db')
db.put({ 'a': 'b' })
print(db.find(lambda x: x['a'] == 'b'))
db.remove(lambda x: x['a'] == 'b')