meta.py
15 lines
| 392 B
| text/x-python
|
PythonLexer
Marcin Kuzminski
|
r0 | """SQLAlchemy Metadata and Session object""" | ||
from sqlalchemy.ext.declarative import declarative_base | ||||
from sqlalchemy.orm import scoped_session, sessionmaker | ||||
__all__ = ['Base', 'Session'] | ||||
# | ||||
# SQLAlchemy session manager. Updated by model.init_model() | ||||
# | ||||
Session = scoped_session(sessionmaker()) | ||||
# | ||||
# The declarative Base | ||||
Base = declarative_base() | ||||
#For another db... | ||||
#Base2 = declarative_base() | ||||