mbdb

Simple Database Management System


License
MIT
Install
pip install mbdb==0.6

Documentation

Build Status

mbdb

Simple Database Management System.

Installation

$ python setup.py install

Usage

from mbdb.mbdb import mbdb

db = mbdb('table-name', 'table-path')
db.exec('create table users (id number, name string)')
db.exec('insert into users values (1, John)')
db.exec('select * from users')

Testing

$ python -m unittest discover
$ tox