Praxis_Bot/db.py
Alex Orid 0d6e26a2a5 Revert "logging"
This reverts commit b106eaa9dd.
2021-04-27 18:55:23 -04:00

78 lines
2.1 KiB
Python

import credentials
import config as config
import pandas as pd
from sqlalchemy import create_engine
class db_module():
def __init__(self):
super().__init__()
self.dbCredential: credentials.DB_Credential
self.currentWorkingDB: str
self.engine = None
def setup_engine(self, credential: credentials.DB_Credential = None):
createEngine = True
if credential is None:
if self.dbCredential is None:
createEngine = False
else:
credential = self.dbCredential
if createEngine:
self.engine = create_engine(credential.engine_url)
self.currentWorkingDB = credential.databaseName
print("SQL Engine Created")
def create_table(self, tableName: str = ""):
pass
def does_table_exist(self, tableName: str = ""):
pass
def delete_table(self, tableName: str = ""):
pass
# This was a old function used prior to the creation of this class. I need to remake it.
# def get_data_old(self, tableName: str = "", key: str = ""):
# table = '_channel_commands'
# table = tableName
#
# df = pd.read_sql_query('SELECT * FROM ' + table, engine)
# stmt = "trigger == '" + key + "'"
# temp = df.query(stmt)
# result = temp.get("response")
#
# # print(result)
# i = len(temp.index.values)
#
# if i == 1:
# output = result[temp.index.values[0]]
# pass
# else:
# output = "$$None$$"
# return output
def get_data(self, tableName: str = "", key: str = ""):
pass
def insert_data(self, tableName: str = "", param: str = ""):
pass
def edit_data(self, tableName: str = "", key: str = "", param: str = ""):
pass
def delete_data(self, tableName: str = "", key: str = ""):
pass
if __name__ == "__main__":
testModule = db_module()
credentials_manager = credentials.Credentials_Module()
credentials_manager.load_credentials()
testModule.dbCredential = credentials_manager.find_DB_Credential(config.credentialsNickname)
testModule.setup_engine()