Welcome to TinyDB!

Welcome to TinyDB, your tiny, document oriented database optimized for yourhappiness :)

>>>fromtinydbimportTinyDB,Query>>>db=TinyDB('path/to/db.json')>>>User=Query()>>>db.insert({'name':'John','age':22})>>>db.search(User.name=='John')[{'name': 'John', 'age': 22}]

Additional Notes