Initial commit

This commit is contained in:
Eric S. Bullington
2012-03-06 12:57:28 -05:00
commit 14f006ee5e
58 changed files with 12985 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
from sqlalchemy.ext.declarative import declarative_base
engine = create_engine('postgresql://username:password@127.0.0.1/app', convert_unicode=True)
db_session = scoped_session(sessionmaker(autocommit=False,
autoflush=False,
bind=engine))
Base = declarative_base()
Base.query = db_session.query_property()
def init_db():
# import all modules here that might define models so that
# they will be registered properly on the metadata. Otherwise
# you will have to import them first before calling init_db()
import appmodels
Base.metadata.create_all(bind=engine)