-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
33 lines (25 loc) · 868 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
30
31
32
33
import sqlalchemy
from dataclasses import dataclass
@dataclass
class Database:
DB_HOST: str = None
DB_PORT: str = None
DB_USERNAME: str = None
DB_PASSWORD: str = None
DB_TYPE: str = None
def get_engine(self):
from sqlalchemy import create_engine
if not self.DB_TYPE:
self.DB_TYPE = "postgres"
if self.DB_TYPE == "postgres":
conn_str: str = f'postgresql+psycopg2://{self.DB_HOST}:{self.DB_PASSWORD}@{self.DB_HOST}/{self.DB_PORT}'
engine = create_engine(conn_str)
return engine
# TODO: Upsertion logic
def upsert(self):
pass
def get_connection(self):
# TODO: Check if connection exists
# TODO: Create connection
# TODO: Close connection
# TODO: Execute SQL: create connection, execute sql, close connection