Python helpers for using SQLAlchemy with Tornado.
$ pip install tornado-sqlalchemy
>>> from tornado.gen import coroutine
>>> from tornado.web import Application, RequestHandler
>>> from tornado_sqlalchemy import as_future, make_session_factory, SessionMixin
>>>
>>> factory = make_session_factory('postgres://user:password@host/database')
>>>
>>> class MyRequestHandler(RequestHandler, SessionMixin):
... @coroutine
... def get(self):
... with self.make_session() as session:
... count = yield as_future(session.query(UserModel).count)
...
... self.write('{} users so far!'.format(count)
...
>>> app = Application(((r'/', MyRequestHandler),), session_factory=factory)
Documentation is available at Read The Docs.
To work on this package, please make sure you have a working Python installation on your system.
- Create a virtualenv -
python -m venv venv && source venv/bin/activate
. - Git clone the repository -
git clone https://github.com/siddhantgoel/tornado-sqlalchemy
- Install the packages required for development -
pip install -r requirements/3.txt
(or 2.txt if you're on Python 2) - Install this package -
pip install .
. - You should now be able to run the test suite -
py.test tests/
.