-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
29 lines (22 loc) · 893 Bytes
/
database.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
""" Database connection and session management. """
import os
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, scoped_session
from sqlalchemy.ext.declarative import declarative_base
from config import conf
DB_PASSWORD = conf['dbpassword']
# Database connection string
DB_CONN= f'mysql+pymysql://root:{DB_PASSWORD}@localhost:3307/chatbot'
class SQLAlchemy():
def __init__(self):
self.engine = create_engine(DB_CONN, pool_pre_ping=True, pool_size=20, max_overflow=0, pool_recycle=3600, connect_args={'connect_timeout': 10})
self.Session = scoped_session(sessionmaker(bind=self.engine, autoflush=False, autocommit=False))
def get_session(self):
db = self.Session()
try:
yield db
finally:
db.close()
db = SQLAlchemy()
# declarative
Base = declarative_base() # pylint: disable=invalid-name