Maximilian Keßler
967daf1914
Introduces a proper config file for db connection information Also, connection now has to be explicitly initialized instead of this being done on import: This is now done by the CLI function automatically
6 lines
187 B
Python
6 lines
187 B
Python
from .database import DBConnectionManager
|
|
|
|
global_db_connection_manager = DBConnectionManager()
|
|
|
|
conn = global_db_connection_manager.lazy_conn
|
|
cur = global_db_connection_manager.lazy_cur
|