RcGcDb/src/database.py

7 lines
199 B
Python
Raw Normal View History

2020-07-09 22:24:23 +00:00
import sqlite3
2020-07-25 13:27:15 +00:00
from src.config import settings
2020-07-09 22:24:23 +00:00
2020-07-25 13:27:15 +00:00
db_connection = sqlite3.connect(settings.get("database_path", 'rcgcdb.db'))
db_connection.row_factory = sqlite3.Row
2020-07-11 15:54:08 +00:00
db_cursor = db_connection.cursor()