TODO: This page is highly incomplete and needs a lot of work.

Reference: SQLAlchemy documentation

Database Abstration Layer

from sqlalchemy import create_engine
logging.basicConfig()
logging.getLogger('sqlalchemy.engine').setLevel(logging.INFO)
engine = create_engine('sqlite:///basics.sqlite')

Object Relational Mapper

Miscellaneous