blob: c813b58c1d980be1777cd146cece644bd3ba7aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import json
from os import path
import __main__
from sqlalchemy import create_engine, event
from sqlalchemy.orm import sessionmaker
config = json.load(
open(path.join(path.dirname(__main__.__file__), 'config', 'db.json')))
engine = create_engine(
"mysql://{0[user]}:{0[pass]}@{0[host]}/{0[db]}".format(config))
Session = sessionmaker(bind=engine)
|