Skip to content

Instantly share code, notes, and snippets.

View andriykohut's full-sized avatar

Andrii Kohut andriykohut

  • https://p.ota.to/
  • Lviv, Ukraine
View GitHub Profile
@andriykohut
andriykohut / connection.py
Last active July 14, 2016 14:57
torm - something orm-ish for tornado_mysql
from tornado_mysql.cursors import DictCursor
from tornado_mysql.pools import Pool
pool = Pool(dict(host='127.0.0.1',
port=3306,
user='root',
passwd='password',
db='ia_manager_api',
cursorclass=DictCursor),
max_idle_connections=5,