예제 #1
0
파일: base.py 프로젝트: ac001/nemo-rl
 def __call__(self, environ, start_response):
     """Invoke the Controller"""
     # WSGIController.__call__ dispatches to the Controller method
     # the request is routed to. This routing information is
     # available in environ['pylons.routes_dict']
     try:
         return WSGIController.__call__(self, environ, start_response)
     finally:
         Session.remove()
예제 #2
0
파일: __init__.py 프로젝트: ac001/nemo-rl
def init_model(engine):
    """Call me before using any of the tables or classes in the model"""
    Session.configure(bind=engine)