Metadata-Version: 2.1
Name: lotusdb
Version: 0.0.7
Summary: Python database
Home-page: UNKNOWN
Author: d3tu
Author-email: jpafly@gmail.com
License: UNKNOWN
Keywords: database
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows

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

