This repository has been archived on 2024-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-20 20:30:31 -06:00
|
|
|
import pymysql
|
|
|
|
|
|
|
|
|
|
|
|
class DatabaseConnection:
|
2023-09-26 23:59:22 -06:00
|
|
|
host: str = None
|
|
|
|
username: str = None
|
|
|
|
password: str = None
|
|
|
|
database: str = None
|
2023-09-20 20:30:31 -06:00
|
|
|
|
|
|
|
def init_db(self, host, username, password, database):
|
2023-09-26 23:59:22 -06:00
|
|
|
self.host = host
|
|
|
|
self.username = username
|
|
|
|
self.password = password
|
|
|
|
self.database = database
|
|
|
|
|
|
|
|
def cursor(self):
|
|
|
|
db = pymysql.connect(
|
|
|
|
host=self.host,
|
|
|
|
user=self.username,
|
|
|
|
password=self.password,
|
|
|
|
database=self.database,
|
2023-09-23 19:08:30 -06:00
|
|
|
charset='utf8mb4',
|
2023-09-24 13:02:30 -06:00
|
|
|
autocommit=True,
|
2023-09-20 20:30:31 -06:00
|
|
|
)
|
2023-09-26 23:59:22 -06:00
|
|
|
return db.cursor()
|
2023-09-20 20:30:31 -06:00
|
|
|
|
|
|
|
|
2023-09-26 23:59:22 -06:00
|
|
|
database = DatabaseConnection()
|