A nimble squirrel swiftly gathers a golden forest’s worth of acorns!
Welcome to omni-json-db!
omni-json-db is a zero-config, powerful JSON database with compression. No schema, no setup, just data.
>>> from omni_json_db import JDb
>>> jdb = JDb('db.jdb')
>>> jdb += [{'name': 'John', 'age': 22}]
>>> jdb.find(ANY='John')
{'1': {'name': 'John', 'age': 22}}
