bettadb

Simple-to-use embedded database, modelled on MongoDB


License
Other
Install
pip install bettadb==0.1.3

Documentation

bettaDB

A better embedded Database, modelled on MongoDB

The database is event-driven, and based on top of eventedpy

Usage

Currently supported methods are insert, delete, find and find_one

from bettadb.client import Client

c = Client()

c.insert(
    'test', #Collection
    {'hello': 'world'}, #Document
    lambda err, doc: print(doc) #Callback
)
#Prints {'hello': 'world'}

print(c.datastore.namespace)
#prints {'test': [{'hello': 'world'}]}